Compare commits

..

2 commits

3 changed files with 50 additions and 10 deletions

View file

@ -0,0 +1,24 @@
[
{
"op": "add",
"path": "/spawners/monster/-",
"value": {
"type": "minecraft:bogged",
"maxCount": 4,
"minCount": 4,
"weight": 100
}
},
{
"op": "find",
"path": "/spawners/monster",
"test": [{
"path": "/type",
"value": "minecraft:skeleton"
}],
"then": [{
"op": "remove",
"path": ""
}]
}
]

View file

@ -64,7 +64,9 @@
"worldgen/biome/jagged_peaks.json", "worldgen/biome/jagged_peaks.json",
"worldgen/biome/snowy_slopes.json", "worldgen/biome/snowy_slopes.json",
"worldgen/biome/grove.json", "worldgen/biome/grove.json",
"worldgen/biome/snowy_taiga.json" "worldgen/biome/snowy_taiga.json",
"worldgen/biome/snowy_plains.json",
"worldgen/biome/ice_spikes.json"
] ]
}] }]
} }

View file

@ -1,3 +1,4 @@
[
{ {
"op": "add", "op": "add",
"path": "/spawners/monster/-", "path": "/spawners/monster/-",
@ -5,6 +6,19 @@
"type": "minecraft:stray", "type": "minecraft:stray",
"maxCount": 4, "maxCount": 4,
"minCount": 4, "minCount": 4,
"weight": 80 "weight": 100
} }
},
{
"op": "find",
"path": "/spawners/monster",
"test": [{
"path": "/type",
"value": "minecraft:skeleton"
}],
"then": [{
"op": "remove",
"path": ""
}]
} }
]