diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2018-05-23 08:56:10 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2018-05-23 08:56:10 +0100 |
commit | ae9a93e95d3443789f8b6dd4f6fe29d96ed856b2 (patch) | |
tree | 49acfeffe0107b88915a020b8667272a88a0c87a | |
parent | a60ca411488bb98aec3437c99e742ffe5197b3cc (diff) |
tweak spawn values
-rw-r--r-- | bee.lua | 4 | ||||
-rw-r--r-- | bunny.lua | 4 | ||||
-rw-r--r-- | chicken.lua | 5 | ||||
-rw-r--r-- | cow.lua | 4 | ||||
-rw-r--r-- | kitten.lua | 2 | ||||
-rw-r--r-- | penguin.lua | 2 | ||||
-rw-r--r-- | rat.lua | 3 | ||||
-rw-r--r-- | sheep.lua | 4 | ||||
-rw-r--r-- | warthog.lua | 4 |
9 files changed, 16 insertions, 16 deletions
@@ -47,9 +47,9 @@ mobs:register_mob("mobs_animal:bee", { mobs:spawn({ name = "mobs_animal:bee", nodes = {"group:flower"}, - min_light = 10, + min_light = 14, interval = 60, - chance = 6000, + chance = 7000, min_height = 3, max_height = 200, day_toggle = true, @@ -116,9 +116,9 @@ mobs:spawn({ name = "mobs_animal:bunny", nodes = {spawn_on}, neighbors = {"group:grass"}, - min_light = 10, + min_light = 14, interval = 60, - chance = 5000, -- 15000 + chance = 8000, -- 15000 min_height = 5, max_height = 200, day_toggle = true, diff --git a/chicken.lua b/chicken.lua index 27f8307..1ffa436 100644 --- a/chicken.lua +++ b/chicken.lua @@ -96,10 +96,9 @@ mobs:spawn({ name = "mobs_animal:chicken", nodes = {spawn_on}, neighbors = {"group:grass"}, - min_light = 10, + min_light = 14, interval = 60, - chance = 5000, -- 15000 - active_object_count = 2, + chance = 8000, -- 15000 min_height = 5, max_height = 200, day_toggle = true, @@ -105,9 +105,9 @@ mobs:spawn({ name = "mobs_animal:cow", nodes = {"default:dirt_with_grass", "ethereal:green_dirt"}, neighbors = {"group:grass"}, - min_light = 10, + min_light = 14, interval = 60, - chance = 5000, -- 15000 + chance = 8000, -- 15000 min_height = 5, max_height = 200, day_toggle = true, @@ -63,7 +63,7 @@ mobs:spawn({ name = "mobs_animal:kitten", nodes = {spawn_on}, neighbors = {"group:grass"}, - min_light = 12, + min_light = 14, interval = 60, chance = 10000, -- 22000 min_height = 5, diff --git a/penguin.lua b/penguin.lua index 1f3e813..2ee14b9 100644 --- a/penguin.lua +++ b/penguin.lua @@ -61,7 +61,7 @@ stepheight = 0.6, mobs:spawn({ name = "mobs_animal:penguin", nodes = {"default:snowblock"}, - min_light = 10, + min_light = 14, interval = 60, chance = 20000, min_height = 0, @@ -71,8 +71,9 @@ mobs:spawn({ name = "mobs_animal:rat", nodes = {"default:stone"}, min_light = 3, + max_light = 9, interval = 60, - active_object_count = 2, + chance = 8000, max_height = 0, -- on_spawn = rat_spawn, }) @@ -193,9 +193,9 @@ mobs:spawn({ name = "mobs_animal:sheep_white", nodes = {"default:dirt_with_grass", "ethereal:green_dirt"}, neighbors = {"group:grass"}, - min_light = 10, + min_light = 14, interval = 60, - chance = 5000, -- 15000 + chance = 8000, -- 15000 min_height = 0, max_height = 200, day_toggle = true, diff --git a/warthog.lua b/warthog.lua index ce45675..d1f028d 100644 --- a/warthog.lua +++ b/warthog.lua @@ -74,9 +74,9 @@ mobs:spawn({ name = "mobs_animal:pumba", nodes = spawn_on, neighbors = spawn_by, - min_light = 10, + min_light = 14, interval = 60, - chance = 6000, -- 15000 + chance = 8000, -- 15000 min_height = 0, max_height = 200, day_toggle = true, |