diff --git a/demon.lua b/demon.lua index 8b492c5..e893aaa 100644 --- a/demon.lua +++ b/demon.lua @@ -59,7 +59,10 @@ mobs:register_mob("fun_caves:ice_demon", { walk_velocity = 2, run_velocity = 3, jump = true, - drops = nil, + drops = { + {name = "default:ice", chance = 3, min = 1, max = 3}, + {name = "fun_caves:eternal_ice_crystal", chance = 10, min = 1, max = 1}, + }, water_damage = 0, lava_damage = 4, light_damage = 2, @@ -133,7 +136,10 @@ mobs:register_mob("fun_caves:snow_demon", { walk_velocity = 2, run_velocity = 3, jump = true, - drops = nil, + drops = { + {name = "default:snow", chance = 3, min = 1, max = 3}, + {name = "fun_caves:eternal_ice_crystal", chance = 10, min = 1, max = 1}, + }, water_damage = 0, lava_damage = 4, light_damage = 2,