Fixed phases

This commit is contained in:
2025-07-24 16:31:42 +02:00
parent 369d361b7c
commit f65d75b768
2 changed files with 118 additions and 5 deletions

View File

@ -5,6 +5,18 @@
"mindaycount": 1
}
},
{
"name": "after_day3",
"conditions": {
"mindaycount": 3
}
},
{
"name": "after_day8",
"conditions": {
"mindaycount": 8
}
},
{
"name": "nighttime",
"conditions": {

View File

@ -1,5 +1,4 @@
[
{
"phase": "after_day1",
@ -26,11 +25,10 @@
"maxthis": 150
}
},
{
"phase": "after_day2",
"phase": "after_day3",
"mob": "minecraft:zombie",
@ -52,9 +50,112 @@
"minheight": 1,
"maxheight": 256,
"maxthis": 150
"maxthis": 300
}
},
{
"phase": "after_day3",
"mob": "mutantmonsters:mutant_zombie",
"persecond": 1,
"attempts": 5,
"amount": {
"minimum": 0,
"maximum": 1
},
"conditions": {
"dimension": "minecraft:overworld",
"norestrictions": true,
"mindist": 30,
"maxdist": 80,
"minheight": 1,
"maxheight": 256,
"maxthis": 3
}
},
{
"phase": "after_day8",
"mob": "minecraft:zombie",
"persecond": 1,
"attempts": 20,
"amount": {
"minimum": 250,
"maximum": 1000
},
"conditions": {
"dimension": "minecraft:overworld",
"norestrictions": true,
"mindist": 30,
"maxdist": 80,
"minheight": 1,
"maxheight": 256,
"maxthis": 1000
}
},
{
"phase": "after_day8",
"mob": "mutantmonsters:mutant_zombie",
"persecond": 1,
"attempts": 5,
"amount": {
"minimum": 1,
"maximum": 3
},
"conditions": {
"dimension": "minecraft:overworld",
"norestrictions": true,
"mindist": 30,
"maxdist": 80,
"minheight": 1,
"maxheight": 256,
"maxthis": 5
}
},
{
"mob": "minecraft:wither_skeleton",
"persecond": 1,
"attempts": 20,
"amount": {
"minimum": 60,
"maximum": 270
},
"conditions": {
"dimension": "minecraft:nether",
"norestrictions": true,
"mindist": 30,
"maxdist": 80,
"minheight": 1,
"maxheight": 256,
"maxthis": 500
}
}
]