From aa3e3dd9be61cad0071abd2f73d560d278ddbc87 Mon Sep 17 00:00:00 2001 From: Milan Date: Tue, 7 Nov 2017 08:18:44 +0100 Subject: [PATCH] add bone drops to bunny,chicken,kitten,penguin,sheep --- bunny.lua | 1 + chicken.lua | 1 + kitten.lua | 1 + penguin.lua | 1 + sheep.lua | 1 + 5 files changed, 5 insertions(+) diff --git a/bunny.lua b/bunny.lua index 32b31f3..3daae7e 100644 --- a/bunny.lua +++ b/bunny.lua @@ -28,6 +28,7 @@ mobs:register_mob("mobs_animal:bunny", { jump = true, drops = { {name = "mobs:meat_raw", chance = 1, min = 1, max = 1}, + {name = "ethereal:bone", chance = 2, min = 1, max = 1} }, water_damage = 1, lava_damage = 4, diff --git a/chicken.lua b/chicken.lua index ea5710a..f4ed778 100644 --- a/chicken.lua +++ b/chicken.lua @@ -33,6 +33,7 @@ mobs:register_mob("mobs_animal:chicken", { runaway = true, drops = { {name = "mobs:chicken_raw", chance = 1, min = 2, max = 2}, + {name = "ethereal:bone", chance = 2, min = 1, max = 1}, {name = "mobs:chicken_feather", chance = 3, min = 1, max = 2}, }, water_damage = 1, diff --git a/kitten.lua b/kitten.lua index adea21b..358da69 100644 --- a/kitten.lua +++ b/kitten.lua @@ -30,6 +30,7 @@ mobs:register_mob("mobs_animal:kitten", { jump = false, drops = { {name = "farming:string", chance = 1, min = 1, max = 1}, + {name = "ethereal:bone", chance = 2, min = 1, max = 1} }, water_damage = 1, lava_damage = 5, diff --git a/penguin.lua b/penguin.lua index d5e9a5b..e8591a2 100644 --- a/penguin.lua +++ b/penguin.lua @@ -27,6 +27,7 @@ mobs:register_mob("mobs_animal:penguin", { stepheight = 1.1, drops = { {name = "mobs:meat_raw", chance = 1, min = 1, max = 1}, + {name = "ethereal:bone", chance = 2, min = 1, max = 1} }, water_damage = 0, lava_damage = 4, diff --git a/sheep.lua b/sheep.lua index 1dde501..ee791a9 100644 --- a/sheep.lua +++ b/sheep.lua @@ -49,6 +49,7 @@ for _, col in ipairs(all_colours) do jump = true, drops = { {name = "mobs:meat_raw", chance = 1, min = 1, max = 2}, + {name = "ethereal:bone", chance = 2, min = 1, max = 2} --{name = "wool:"..col[1], chance = 1, min = 1, max = 1}, }, water_damage = 1,