summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2018-05-16 13:02:23 +0100
committerTenPlus1 <kinsellaja@yahoo.com>2018-05-16 13:02:23 +0100
commita60ca411488bb98aec3437c99e742ffe5197b3cc (patch)
tree54dd0fae98d74f9dd21b632b5e28f74b3733598f
parentf42a8ba97e4fa9beef2e46f02ffe9e5af248a195 (diff)
changed spawn intervals to 60
-rw-r--r--bee.lua3
-rw-r--r--bunny.lua1
-rw-r--r--chicken.lua1
-rw-r--r--cow.lua1
-rw-r--r--kitten.lua1
-rw-r--r--penguin.lua1
-rw-r--r--rat.lua1
-rw-r--r--sheep.lua1
-rw-r--r--warthog.lua1
9 files changed, 10 insertions, 1 deletions
diff --git a/bee.lua b/bee.lua
index 80fe0db..d1d2de4 100644
--- a/bee.lua
+++ b/bee.lua
@@ -48,7 +48,8 @@ mobs:spawn({
name = "mobs_animal:bee",
nodes = {"group:flower"},
min_light = 10,
- chance = 5000,
+ interval = 60,
+ chance = 6000,
min_height = 3,
max_height = 200,
day_toggle = true,
diff --git a/bunny.lua b/bunny.lua
index 24947b6..c1cd42b 100644
--- a/bunny.lua
+++ b/bunny.lua
@@ -117,6 +117,7 @@ mobs:spawn({
nodes = {spawn_on},
neighbors = {"group:grass"},
min_light = 10,
+ interval = 60,
chance = 5000, -- 15000
min_height = 5,
max_height = 200,
diff --git a/chicken.lua b/chicken.lua
index 32bd12c..27f8307 100644
--- a/chicken.lua
+++ b/chicken.lua
@@ -97,6 +97,7 @@ mobs:spawn({
nodes = {spawn_on},
neighbors = {"group:grass"},
min_light = 10,
+ interval = 60,
chance = 5000, -- 15000
active_object_count = 2,
min_height = 5,
diff --git a/cow.lua b/cow.lua
index fef0703..aa41ef7 100644
--- a/cow.lua
+++ b/cow.lua
@@ -106,6 +106,7 @@ mobs:spawn({
nodes = {"default:dirt_with_grass", "ethereal:green_dirt"},
neighbors = {"group:grass"},
min_light = 10,
+ interval = 60,
chance = 5000, -- 15000
min_height = 5,
max_height = 200,
diff --git a/kitten.lua b/kitten.lua
index d739271..8faef54 100644
--- a/kitten.lua
+++ b/kitten.lua
@@ -64,6 +64,7 @@ mobs:spawn({
nodes = {spawn_on},
neighbors = {"group:grass"},
min_light = 12,
+ interval = 60,
chance = 10000, -- 22000
min_height = 5,
max_height = 200,
diff --git a/penguin.lua b/penguin.lua
index caf4d43..1f3e813 100644
--- a/penguin.lua
+++ b/penguin.lua
@@ -62,6 +62,7 @@ mobs:spawn({
name = "mobs_animal:penguin",
nodes = {"default:snowblock"},
min_light = 10,
+ interval = 60,
chance = 20000,
min_height = 0,
max_height = 200,
diff --git a/rat.lua b/rat.lua
index 2668475..57bb892 100644
--- a/rat.lua
+++ b/rat.lua
@@ -71,6 +71,7 @@ mobs:spawn({
name = "mobs_animal:rat",
nodes = {"default:stone"},
min_light = 3,
+ interval = 60,
active_object_count = 2,
max_height = 0,
-- on_spawn = rat_spawn,
diff --git a/sheep.lua b/sheep.lua
index 14eb6d1..26c92ce 100644
--- a/sheep.lua
+++ b/sheep.lua
@@ -194,6 +194,7 @@ mobs:spawn({
nodes = {"default:dirt_with_grass", "ethereal:green_dirt"},
neighbors = {"group:grass"},
min_light = 10,
+ interval = 60,
chance = 5000, -- 15000
min_height = 0,
max_height = 200,
diff --git a/warthog.lua b/warthog.lua
index bea4d1a..ce45675 100644
--- a/warthog.lua
+++ b/warthog.lua
@@ -75,6 +75,7 @@ mobs:spawn({
nodes = spawn_on,
neighbors = spawn_by,
min_light = 10,
+ interval = 60,
chance = 6000, -- 15000
min_height = 0,
max_height = 200,