From 7819f1f2ec1e42182764f79f9b2146f693e763a5 Mon Sep 17 00:00:00 2001 From: Juraj Vajda Date: Sun, 13 Nov 2016 12:36:50 +0100 Subject: [PATCH] spawning intervals adjustments --- chicken.lua | 4 ++-- cow.lua | 2 +- sheep.lua | 2 +- warthog.lua | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/chicken.lua b/chicken.lua index c971e47..895c650 100644 --- a/chicken.lua +++ b/chicken.lua @@ -84,8 +84,8 @@ mobs:register_mob("mobs_animal:chicken", { mobs:spawn({ name = "mobs_animal:chicken", nodes = {"default:dirt_with_grass", "ethereal:bamboo_dirt"}, - interval = 1, - chance = 30000, + interval = 30, + chance = 60000, active_object_count = 1, day_toggle = true, }) diff --git a/cow.lua b/cow.lua index 65c44a7..c5e7dff 100644 --- a/cow.lua +++ b/cow.lua @@ -96,7 +96,7 @@ mobs:register_mob("mobs_animal:cow", { }) mobs:register_spawn("mobs_animal:cow", - {"default:dirt_with_grass", "ethereal:green_dirt"}, 20, 10, 30000, 1, 31000, true) + {"default:dirt_with_grass", "ethereal:green_dirt"}, 20, 10, 60000, 1, 31000, true) mobs:register_egg("mobs_animal:cow", S("Cow"), "default_grass.png", 1) diff --git a/sheep.lua b/sheep.lua index 4f71b3c..0a86607 100644 --- a/sheep.lua +++ b/sheep.lua @@ -178,7 +178,7 @@ for _, col in pairs(all_colours) do end mobs:register_spawn("mobs_animal:sheep_white", - {"default:dirt_with_grass", "ethereal:green_dirt"}, 20, 10, 30000, 1, 31000, true) + {"default:dirt_with_grass", "ethereal:green_dirt"}, 20, 10, 60000, 1, 31000, true) -- compatibility diff --git a/warthog.lua b/warthog.lua index 2e5bf42..508bb5a 100644 --- a/warthog.lua +++ b/warthog.lua @@ -56,7 +56,7 @@ mobs:register_mob("mobs_animal:pumba", { }) mobs:register_spawn("mobs_animal:pumba", - {"ethereal:mushroom_dirt", "default:dirt_with_dry_grass"}, 20, 10, 30000, 1, 31000, true) + {"ethereal:mushroom_dirt", "default:dirt_with_dry_grass"}, 20, 10, 60000, 1, 31000, true) mobs:register_egg("mobs_animal:pumba", S("Warthog"), "wool_pink.png", 1)