Commit 0349bd5a authored by Milan's avatar Milan
Browse files

(stronger) spawn height limits

parent 9f6228ed
Loading
Loading
Loading
Loading
Loading
+1 −10
Original line number Diff line number Diff line
@@ -85,16 +85,7 @@ mobs:register_mob("mobs_animal:bee_angry", {
    end,
})

mobs:register_spawn("mobs_animal:bee", {"group:flower"}, 20, 10, 9000, 2, 31000, true)

mobs:spawn({
	name = "mobs_animal:bee",
	nodes = {"group:flower"},
	min_light = 10,
	chance = 9000,
	min_height = 0,
	day_toggle = true,
})
mobs:register_spawn("mobs_animal:bee", {"group:flower"}, 20, 10, 9000, 2, 310, true)

mobs:register_egg("mobs_animal:bee", S("Bee"), "mobs_bee_inv.png", 0)
mobs:register_egg("mobs_animal:bee_angry", S("Angry Bee"), "mobs_bee_inv.png", 0)
+1 −0
Original line number Diff line number Diff line
@@ -93,6 +93,7 @@ mobs:spawn({
	min_light = 10,
	chance = 15000,
	min_height = 0,
	max_height = 310,
	day_toggle = true,
})

+1 −0
Original line number Diff line number Diff line
@@ -98,6 +98,7 @@ mobs:spawn({
	chance = 15000,
	active_object_count = 2,
	min_height = 0,
	max_height = 120,
	day_toggle = true,
})

+1 −1
Original line number Diff line number Diff line
@@ -113,7 +113,7 @@ mobs:spawn({
	min_light = 10,
	chance = 15000,
	min_height = 0,
	max_height = 31000,
	max_height = 210,
	day_toggle = true,
})

+1 −1
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@ mobs:spawn({
	min_light = 12,
	chance = 22000,
	min_height = 0,
	max_height = 31000,
	max_height = 310,
	day_toggle = true,
})

Loading