From 48847cc7e0e755e4183f3b61b639cb7885c09252 Mon Sep 17 00:00:00 2001 From: Duane Date: Wed, 22 Jun 2016 08:06:08 -0500 Subject: [PATCH] Add eternal ice crystal drops. --- demon.lua | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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,