Mobs: Separate fire damage from lava damage

This commit is contained in:
Wuzzy 2019-10-02 18:43:48 +02:00
parent b71c9204ec
commit f9e46b914d
11 changed files with 28 additions and 13 deletions

View file

@ -28,7 +28,7 @@ mobs:register_mob("mobs_mc:snowman", {
view_range = 10,
fall_damage = 0,
water_damage = 4,
lava_damage = 20,
rain_damage = 4,
attacks_monsters = true,
collisionbox = {-0.35, -0.01, -0.35, 0.35, 1.89, 0.35},
visual = "mesh",
@ -119,8 +119,6 @@ mobs:register_mob("mobs_mc:snowman", {
end
end
end,
rain_damage = 4,
})
-- This is to be called when a pumpkin or jack'o lantern has been placed. Recommended: In the on_construct function