Add eternal ice crystal drops.

This commit is contained in:
Duane 2016-06-22 08:06:08 -05:00
parent 72efe71560
commit 48847cc7e0

View file

@ -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,