Make evokers spawn in roofed forests at night

This commit is contained in:
cora 2022-02-26 18:12:44 +01:00
parent 8e1a9e1785
commit d35e3f78c7
1 changed files with 14 additions and 0 deletions

View File

@ -85,3 +85,17 @@ mobs:register_mob("mobs_mc:evoker", {
-- spawn eggs
mobs:register_egg("mobs_mc:evoker", S("Evoker"), "mobs_mc_spawn_icon_evoker.png", 0)
mobs:spawn_specific(
"mobs_mc:evoker",
"overworld",
"ground",
{
"RoofedForest",
},
0,
7,
30,
65000,
8,
mobs_mc.spawn_height.overworld_min,
mobs_mc.spawn_height.overworld_max)