86 lines
2.3 KiB
Lua
86 lines
2.3 KiB
Lua
local depends = (...)
|
|
if not depends.mobs_redo then return end
|
|
|
|
for name, tag in pairs({santa = "Santa Claus", mrs_claus = "Mrs. Claus"}) do
|
|
mobs:register_mob("christmas_decor:" .. name, {
|
|
type = "npc",
|
|
passive = true,
|
|
pathfinding = false,
|
|
nametag = tag,
|
|
hp_min = 20,
|
|
hp_max = 20,
|
|
armor = 0,
|
|
collisionbox = {-0.35, 0.0, -0.35, 0.35, 1.8, 0.35},
|
|
visual = "mesh",
|
|
mesh = "character.b3d",
|
|
textures = {"christmas_decor_" .. name .. ".png"},
|
|
makes_footstep_sound = false,
|
|
sounds = {},
|
|
walk_velocity = 0,
|
|
run_velocity = 0,
|
|
jump = false,
|
|
water_damage = 0,
|
|
lava_damage = 0,
|
|
light_damage = 0,
|
|
view_range = 15,
|
|
owner = "",
|
|
fear_height = 3,
|
|
animation = {
|
|
speed_normal = 30,
|
|
speed_run = 30,
|
|
stand_start = 0,
|
|
stand_end = 79,
|
|
},
|
|
follow = {"christmas_decor:candycane", "christmas_decor:gingerbread_man"},
|
|
on_rightclick = function(self, clicker)
|
|
if mobs:capture_mob(self, clicker, 100, 100, 100, false, nil) then return end
|
|
end
|
|
})
|
|
|
|
mobs:register_egg("christmas_decor:" .. name, tag, "christmas_decor_gumdrop.png^[multiply:red", 1)
|
|
mobs:alias_mob("mobs:" .. name, "christmas_decor:" .. name)
|
|
end
|
|
|
|
for name, tag in pairs({reindeer = "Reindeer", rudolf = "Rudolf"}) do
|
|
mobs:register_mob("christmas_decor:" .. name, {
|
|
type = "animal",
|
|
passive = true,
|
|
pathfinding = false,
|
|
hp_min = 20,
|
|
hp_max = 20,
|
|
armor = 0,
|
|
collisionbox = {-0.2, -0.01, -0.2, 0.2, 1.2, 0.2},
|
|
visual = "mesh",
|
|
mesh = "christmas_decor_reindeer.b3d",
|
|
textures = {"christmas_decor_" .. name .. ".png"},
|
|
makes_footstep_sound = false,
|
|
walk_velocity = 0,
|
|
run_velocity = 0,
|
|
jump = false,
|
|
water_damage = 0,
|
|
lava_damage = 0,
|
|
light_damage = 0,
|
|
animation = {
|
|
speed_normal = 25,
|
|
speed_normal = 25,
|
|
speed_run = 25,
|
|
stand_start = 0,
|
|
stand_end = 200,
|
|
walk_start = 149,
|
|
walk_end = 150,
|
|
run_start = 150,
|
|
run_end = 170,
|
|
},
|
|
follow = {"christmas_decor:candycane", "christmas_decor:gingerbread_man"},
|
|
view_range = 15,
|
|
fear_height = 3,
|
|
on_rightclick = function(self, clicker)
|
|
if mobs:feed_tame(self, clicker, 0, false, true) then return end
|
|
if mobs:capture_mob(self, clicker, 100, 100, 100, false, nil) then return end
|
|
end
|
|
})
|
|
|
|
mobs:register_egg("christmas_decor:" .. name, tag, "christmas_decor_gumdrop.png^[multiply:saddlebrown", 1)
|
|
mobs:alias_mob("mobs:" .. name, "christmas_decor:" .. name)
|
|
end
|