mckaygerhard
011bcf1f64
* provides aliasing cos spawn and eggs and entities
was not working due the naming conventions, this
backported commit b719fa7af13a713b022ff4b848be4650b48b7e7c
from b719fa7af1
81 lines
1.6 KiB
Lua
81 lines
1.6 KiB
Lua
|
|
local S = mobs.intllib_animal
|
|
|
|
-- Oerkki by PilzAdam
|
|
|
|
mobs:register_mob("mobs_jam:oerkki", {
|
|
type = "monster",
|
|
passive = false,
|
|
attack_type = "dogfight",
|
|
pathfinding = true,
|
|
reach = 2,
|
|
damage = 4,
|
|
hp_min = 8,
|
|
hp_max = 34,
|
|
armor = 100,
|
|
collisionbox = {-0.4, -1, -0.4, 0.4, 0.9, 0.4},
|
|
visual = "mesh",
|
|
mesh = "mobs_oerkki.b3d",
|
|
textures = {
|
|
{"mobs_oerkki.png"},
|
|
{"mobs_oerkki2.png"},
|
|
{"mobs_oerkki3.png"}
|
|
},
|
|
makes_footstep_sound = false,
|
|
sounds = {
|
|
random = "mobs_oerkki"
|
|
},
|
|
walk_velocity = 1,
|
|
run_velocity = 3,
|
|
view_range = 10,
|
|
jump = true,
|
|
drops = {
|
|
{name = "default:obsidian", chance = 3, min = 0, max = 2},
|
|
{name = "default:gold_lump", chance = 2, min = 0, max = 2}
|
|
},
|
|
water_damage = 2,
|
|
lava_damage = 4,
|
|
light_damage = 1,
|
|
fear_height = 4,
|
|
animation = {
|
|
stand_start = 0,
|
|
stand_end = 23,
|
|
walk_start = 24,
|
|
walk_end = 36,
|
|
run_start = 37,
|
|
run_end = 49,
|
|
punch_start = 37,
|
|
punch_end = 49,
|
|
speed_normal = 15,
|
|
speed_run = 15
|
|
},
|
|
replace_rate = 5,
|
|
replace_what = {"default:torch"},
|
|
replace_with = "air",
|
|
replace_offset = -1,
|
|
immune_to = {
|
|
{"default:sword_wood", 0}, -- no damage
|
|
{"default:gold_lump", -10} -- heals by 10 points
|
|
},
|
|
})
|
|
|
|
|
|
if not mobs.custom_spawn_monster then
|
|
|
|
mobs:spawn({
|
|
name = "mobs_jam:oerkki",
|
|
nodes = {"default:stone"},
|
|
max_light = 7,
|
|
chance = 5000,
|
|
max_height = -60
|
|
})
|
|
end
|
|
|
|
|
|
mobs:register_egg("mobs_jam:oerkki", S("Oerkki"), "default_obsidian.png", 1)
|
|
|
|
|
|
mobs:alias_mob("mobs:oerkki", "mobs_jam:oerkki") -- compatiblity
|
|
mobs:alias_mob("mobs_monster:oerkki", "mobs_jam:oerkki") -- compatiblity only if changes/moved to/from mobs_monster
|
|
|