forked from VoxeLibre/VoxeLibre
Add wither functions from MC
This commit is contained in:
parent
68d49a43b2
commit
5a7d128861
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
|
@ -16,7 +16,7 @@ mobs:register_mob("mobs_mc:wither", {
|
||||||
hp_min = 300,
|
hp_min = 300,
|
||||||
xp_min = 50,
|
xp_min = 50,
|
||||||
xp_max = 50,
|
xp_max = 50,
|
||||||
armor = {undead = 80, fleshy = 80},
|
armor = {undead = 80, fleshy = 100},
|
||||||
-- This deviates from MC Wiki's size, which makes no sense
|
-- This deviates from MC Wiki's size, which makes no sense
|
||||||
collisionbox = {-0.9, 0.4, -0.9, 0.9, 2.45, 0.9},
|
collisionbox = {-0.9, 0.4, -0.9, 0.9, 2.45, 0.9},
|
||||||
visual = "mesh",
|
visual = "mesh",
|
||||||
|
@ -66,6 +66,14 @@ mobs:register_mob("mobs_mc:wither", {
|
||||||
run_start = 0, run_end = 20,
|
run_start = 0, run_end = 20,
|
||||||
},
|
},
|
||||||
harmed_by_heal = true,
|
harmed_by_heal = true,
|
||||||
|
do_custom = function(self)
|
||||||
|
if self.health < (self.hp_max / 2) then
|
||||||
|
self.base_texture = "mobs_mc_wither_half_health.png"
|
||||||
|
self.fly = false
|
||||||
|
self.object:set_properties({textures={self.base_texture}})
|
||||||
|
self.armor = {undead = 80, fleshy = 80}
|
||||||
|
end
|
||||||
|
end,
|
||||||
on_spawn = function(self)
|
on_spawn = function(self)
|
||||||
minetest.sound_play("mobs_mc_wither_spawn", {object=self.object, gain=1.0, max_hear_distance=64})
|
minetest.sound_play("mobs_mc_wither_spawn", {object=self.object, gain=1.0, max_hear_distance=64})
|
||||||
end,
|
end,
|
||||||
|
|
Loading…
Reference in New Issue