diff --git a/bunny.lua b/bunny.lua index aaf6914..8be4bbb 100644 --- a/bunny.lua +++ b/bunny.lua @@ -24,7 +24,7 @@ mobs:register_mob("mobs:bunny", { jump = true, drops = { {name = "mobs:meat_raw", - chance = 1, min = 1, max = 2}, + chance = 1, min = 1, max = 1}, }, water_damage = 1, lava_damage = 4, diff --git a/chicken.lua b/chicken.lua index 15fa252..3177556 100644 --- a/chicken.lua +++ b/chicken.lua @@ -29,7 +29,7 @@ mobs:register_mob("mobs:chicken", { jump = true, drops = { {name = "mobs:chicken_raw", - chance = 1, min = 2, max = 2}, + chance = 1, min = 1, max = 1}, }, water_damage = 1, lava_damage = 5, diff --git a/cow.lua b/cow.lua index bf386ca..4977088 100644 --- a/cow.lua +++ b/cow.lua @@ -25,9 +25,9 @@ mobs:register_mob("mobs:cow", { jump = true, drops = { {name = "mobs:meat_raw", - chance = 1, min = 5, max = 10}, + chance = 1, min = 1, max = 3}, {name = "mobs:leather", - chance = 1, min = 0, max = 3}, + chance = 1, min = 1, max = 2}, }, water_damage = 1, lava_damage = 5, diff --git a/sheep.lua b/sheep.lua index 802b4cf..de4cf6d 100644 --- a/sheep.lua +++ b/sheep.lua @@ -30,7 +30,7 @@ for _, col in ipairs(all_colours) do jump = true, drops = { {name = "mobs:meat_raw", - chance = 1, min = 2, max = 3}, + chance = 1, min = 1, max = 2}, {name = "wool:"..col, chance = 1, min = 1, max = 1}, }, @@ -79,7 +79,7 @@ for _, col in ipairs(all_colours) do if minetest.get_modpath("wool") then local pos = self.object:getpos() pos.y = pos.y + 0.5 - local obj = minetest.add_item(pos, ItemStack("wool:"..shpcolor.." "..math.random(2,3))) + local obj = minetest.add_item(pos, ItemStack("wool:"..shpcolor.." "..math.random(1,3))) if obj then obj:setvelocity({ x = math.random(-1,1), diff --git a/spider.lua b/spider.lua index 093dccf..c6a1283 100644 --- a/spider.lua +++ b/spider.lua @@ -30,7 +30,7 @@ mobs:register_mob("mobs:spider", { floats = 0, drops = { {name = "farming:string", - chance = 1, min = 1, max = 5}, + chance = 1, min = 1, max = 2}, {name = "ethereal:crystal_spike", chance = 15, min = 1, max = 2}, }, diff --git a/warthog.lua b/warthog.lua index eee1e02..71954f9 100644 --- a/warthog.lua +++ b/warthog.lua @@ -29,7 +29,7 @@ mobs:register_mob("mobs:pumba", { view_range = 10, drops = { {name = "mobs:pork_raw", - chance = 1, min = 2, max = 3}, + chance = 1, min = 1, max = 3}, }, water_damage = 1, lava_damage = 5,