9
0
mirror of https://github.com/IrisDimensions/overworld.git synced 2026-01-06 15:41:43 +00:00

Spawn Overhaul

This commit is contained in:
Brian Fopiano
2021-07-31 20:08:10 -07:00
parent ecf23f503b
commit af4c2b0c82
16 changed files with 283 additions and 4 deletions

View File

@@ -297,6 +297,9 @@
}
}
],
"entitySpawners": [
"frozen"
],
"caveBiomeStyle": {"style": "CELLULAR_IRIS_DOUBLE"},
"CAVERNS//CARVING": "Carving layers that cut off certain parts of the world",
"carving": true,

View File

@@ -1,6 +1,8 @@
{
"type": "EVOKER",
"customName": "&dMagic Psychopath",
"glowing": true,
"silent": true,
"attributes": [
{
"attribute": "GENERIC_ARMOR",
@@ -23,10 +25,14 @@
},
"mainHand": {
"type": "blaze_rod",
"displayName": "&dStrange Wand"
"unbreakable": true,
"lore": ["The wand of the world builder"],
"displayName": "&dBuilders Wand"
},
"offHand": {
"type": "blaze_rod",
"displayName": "&dStrange Wand"
"unbreakable": true,
"lore": ["The wand of the world builder"],
"displayName": "&dBuilders Wand"
}
}

View File

@@ -38,6 +38,9 @@
"zoom": 5
}
},
"entitySpawners": [
"frozen"
],
"deposits": [
{
"minHeight": 8,

View File

@@ -31,6 +31,9 @@
"zoom": 5
}
},
"entitySpawners": [
"hot"
],
"spotBiomes": [{
"biome": "hot/oasis",
"scale": 5,

View File

@@ -259,6 +259,9 @@
"soundDistance": 3
}
],
"entitySpawners": [
"mushroom"
],
"shoreHeightMin": 3.2,
"shoreHeightMax": 6.2,
"loot": {

View File

@@ -31,6 +31,9 @@
"zoom": 5
}
},
"entitySpawners": [
"swamp"
],
"biomeImplosionRatio": 0.26,
"deposits": [
{

View File

@@ -31,7 +31,10 @@
"structure": "murky_stronghold",
"rarity": 750
}],
"ENTITY_SPAWNS": "Sheep is purposely missing from this list so it doesn't spawn in estranged plains",
"ENTITY_SPAWNS": "ALL ENTITY SPAWNS FOR THE REGION",
"entitySpawners": [
"temperate"
],
"shoreRatio": 0.1,
"shoreBiomeZoom": 0.15,
"biomeImplosionRatio": 0.7,

View File

@@ -53,6 +53,9 @@
"palette": [{"block": "emerald_ore"}],
"varience": 2
}],
"entitySpawners": [
"tropical"
],
"landBiomeZoom": 1.85,
"shoreHeightMin": 3.2,
"shoreHeightMax": 9.2,

View File

@@ -32,7 +32,9 @@
"cave/tundra-cavern",
"cave/spiked-cavern"
],
"entitySpawners": [
"tundra"
],
"riverBiomes": [
"tundra/sea/river",
"tundra/sea/river-rocky",

29
spawners/frozen.json Normal file
View File

@@ -0,0 +1,29 @@
{
"selection": {},
"spawns": [
{
"entity": "chicken",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 1
},
{
"entity": "sheep",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 1
},
{
"entity": "polar-bear",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 15
},
{
"entity": "fox",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 15
}
]
}

35
spawners/hot.json Normal file
View File

@@ -0,0 +1,35 @@
{
"selection": {},
"spawns": [
{
"entity": "chicken",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 1
},
{
"entity": "donkey",
"maxSpawns": 3,
"minSpawns": 1,
"rarity": 100
},
{
"entity": "mule",
"maxSpawns": 3,
"minSpawns": 1,
"rarity": 100
},
{
"entity": "rabbit",
"maxSpawns": 1,
"minSpawns": 1,
"rarity": 1
},
{
"entity": "wanderingtrader",
"maxSpawns": 1,
"minSpawns": 1,
"rarity": 250
}
]
}

16
spawners/mushroom.json Normal file
View File

@@ -0,0 +1,16 @@
{
"selection": {},
"spawns": [
{
"entity": "mooshroom",
"maxSpawns": 4,
"minSpawns": 1,
"rarity": 1
},
{
"entity": "cow",
"maxSpawns": 2,
"rarity": 3
}
]
}

35
spawners/swamp.json Normal file
View File

@@ -0,0 +1,35 @@
{
"selection": {},
"spawns": [
{
"entity": "chicken",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 3
},
{
"entity": "cow",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 2
},
{
"entity": "pig",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 1
},
{
"entity": "sheep",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 4
},
{
"entity": "wolf",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 15
}
]
}

29
spawners/temperate.json Normal file
View File

@@ -0,0 +1,29 @@
{
"selection": {},
"spawns": [
{
"entity": "chicken",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 1
},
{
"entity": "cow",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 1
},
{
"entity": "pig",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 1
},
{
"entity": "bee",
"maxSpawns": 3,
"minSpawns": 2,
"rarity": 15
}
]
}

71
spawners/tropical.json Normal file
View File

@@ -0,0 +1,71 @@
{
"selection": {},
"spawns": [
{
"entity": "chicken",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 2
},
{
"entity": "cow",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 2
},
{
"entity": "pig",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 2
},
{
"entity": "sheep",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 2
},
{
"entity": "wolf",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 10
},
{
"entity": "ocelot",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 1
},
{
"entity": "parrot",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 3
},
{
"entity": "turtle",
"maxSpawns": 1,
"minSpawns": 1,
"rarity": 6
},
{
"entity": "panda",
"maxSpawns": 3,
"minSpawns": 1,
"rarity": 4
},
{
"entity": "pandaUwU",
"maxSpawns": 1,
"minSpawns": 1,
"rarity": 15
},
{
"entity": "aeternum",
"maxSpawns": 1,
"minSpawns": 1,
"rarity": 15
}
]
}

35
spawners/tundra.json Normal file
View File

@@ -0,0 +1,35 @@
{
"selection": {},
"spawns": [
{
"entity": "chicken",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 1
},
{
"entity": "cow",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 1
},
{
"entity": "pig",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 1
},
{
"entity": "sheep",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 2
},
{
"entity": "wolf",
"maxSpawns": 2,
"minSpawns": 1,
"rarity": 15
}
]
}