Add eternal ice crystal drops.
This commit is contained in:
parent
72efe71560
commit
48847cc7e0
1 changed files with 8 additions and 2 deletions
10
demon.lua
10
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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue