9
0
mirror of https://github.com/IrisDimensions/overworld.git synced 2025-12-29 19:59:20 +00:00

Merge pull request #258 from IrisDimensions/master

Temp Fix for Villages and some mobs
This commit is contained in:
Brian Fopiano
2022-02-02 16:57:51 -08:00
committed by GitHub
9 changed files with 58 additions and 52 deletions

View File

@@ -63,6 +63,10 @@
"scaleStack": true,
"stackMin": 4,
"stackMax": 25,
"topPalette": [
{"block": "minecraft:cave_vines"},
{"block": "minecraft:cave_vines","data": {"berries": "true"}}
],
"palette": [
{ "block": "minecraft:cave_vines_plant", "data": { "berries": false } },
{ "block": "minecraft:cave_vines_plant", "data": { "berries": true } }

View File

@@ -1,8 +1,3 @@
{
"type": "CAT",
"silent": true,
"passengers": [{
"type": "PARROT",
"customNameVisible": true
}]
"type": "PARROT"
}

View File

@@ -1,8 +1,3 @@
{
"type": "VEX",
"passengers": [{
"type": "CREEPER",
"customNameVisible": true,
"invulnerable": true
}]
"type": "VEX"
}

View File

@@ -1,9 +1,7 @@
{
"type": "VEX",
"type": "PANDA",
"passengers": [{
"type": "PANDA",
"invulnerable": true,
"baby": true,
"pandaMainGene": "PLAYFUL",
"pandaHiddenGene": "AGGRESSIVE"
}]

View File

@@ -1,24 +1,21 @@
{
"spawns": [
{
"entity": "unique/dan",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 1
},
{
"entity": "unique/brian",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 1
},
{
"entity": "unique/aeternum",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 1
"maximumRate": {
"amount": 3,
"per": {
"minecraftDays": 3
}
],
"group": "NORMAL",
"weather": "DOWNFALL"
}
},
"maxEntitiesPerChunk": 2,
"initialSpawns": [{
"entity": "unique/brian",
"rarity": 15,
"maxSpawns": 2,
"minSpawns": 1
},{
"entity": "unique/skelepirate",
"rarity": 1,
"maxSpawns": 3,
"minSpawns": 1
}]
}

View File

@@ -14,6 +14,6 @@
"entity": "standard/hostile/pillager",
"maxSpawns": 5,
"minSpawns": 3,
"rarity": 1
"rarity": 4
}]
}

View File

@@ -1,6 +1,14 @@
{"initialSpawns": [{
{
"maximumRate": {
"amount": 3,
"per": {
"minecraftDays": 6
}
},
"maxEntitiesPerChunk": 2,
"initialSpawns": [{
"entity": "standard/hostile/pillager",
"rarity": 1,
"maxSpawns": 5,
"minSpawns": 4
"rarity": 2,
"maxSpawns": 2,
"minSpawns": 1
}]}

View File

@@ -2,6 +2,6 @@
"initialSpawns": [{
"entity": "unique/skelepirate",
"rarity": 1,
"maxSpawns": 2,
"maxSpawns": 3,
"minSpawns": 1
}]}

View File

@@ -1,12 +1,21 @@
{
"spawns": [
{
"entity": "standard/passive/villager",
"rarity": 1
},
{
"entity": "standard/passive/golem",
"rarity": 24
"maximumRate": {
"amount": 3,
"per": {
"minecraftDays": 3
}
]
},
"maxEntitiesPerChunk": 2,
"initialSpawns": [{
"entity": "unique/iron_golem",
"rarity": 15,
"maxSpawns": 2,
"minSpawns": 1
},{
"entity": "standard/passive/villager",
"rarity": 1,
"maxSpawns": 3,
"minSpawns": 1
}]
}