9
0
mirror of https://github.com/IrisDimensions/overworld.git synced 2026-01-04 15:31:40 +00:00

Tune up biome heights

This commit is contained in:
Daniel Mills
2020-01-22 18:56:07 -05:00
parent 3ccc523da9
commit a0f1499204
30 changed files with 291 additions and 19 deletions

View File

@@ -5,8 +5,11 @@
"parent": "Desert",
"region": "hot",
"genHeight": 0,
"genAmplifier": 0.26,
"genScale": 1.25,
"rarity": 1.1,
"genAmplifier": 0.5,
"genScale": 1.05,
"genSwirl": 3000,
"genSwirlScale": 10,
"surface": [
"SAND"
],

View File

@@ -5,6 +5,11 @@
"region": "temperate",
"parent": "Birch Forest",
"genHeight": 0,
"rarity": 1.1,
"genAmplifier": 0.5,
"genScale": 1.05,
"genSwirl": 3000,
"genSwirlScale": 10,
"scatter":[
"LONG_GRASS:1=0.23",
"LONG_GRASS:2=0.13"

View File

@@ -5,6 +5,11 @@
"parent": "Forest",
"region": "temperate",
"genHeight": 0,
"rarity": 1.1,
"genAmplifier": 0.5,
"genScale": 1.05,
"genSwirl": 3000,
"genSwirlScale": 10,
"scatter":[
"LONG_GRASS:1=0.23",
"LONG_GRASS:2=0.13"

20
biomes/frozen_beach.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "Frozen Beach",
"derivative": "COLD_BEACH",
"type": "FRONT",
"genHeight": 0,
"snow": 0.21,
"surface": [
"SNOW_BLOCK"
],
"subSurface": [
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"objects":[
"spire/small=0.02"
]
}

View File

@@ -0,0 +1,32 @@
{
"name": "Frozen Channel",
"derivative": "FROZEN_OCEAN",
"type": "FLUID",
"fluid": "ICE",
"genHeight": -0.25,
"genAmp": 0,
"surface": [
"ICE",
"ICE",
"ICE",
"ICE",
"CLAY",
"GRAVEL"
],
"surfaceType": "simplex",
"subSurface": [
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"subSurfaceType": "simplex",
"rock": [
"SANDSTONE"
],
"objects":[
"spire/small=0.03",
"spire/medium=0.025"
]
}

19
biomes/frozen_lake.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "Frozen Lake",
"derivative": "FROZEN_OCEAN",
"type": "FLUID",
"fluid": "ICE",
"genHeight": -0.2,
"genAmp": 0,
"surface": [
"PACKED_ICE"
],
"subSurface": [
"STONE",
"GRAVEL"
],
"subSurfaceType": "simplex",
"objects":[
"spire/small=0.02"
]
}

32
biomes/frozen_ocean.json Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "Frozen Ocean",
"derivative": "FROZEN_OCEAN",
"type": "FLUID",
"fluid": "ICE",
"genHeight": -0.25,
"genAmp": 0,
"surface": [
"ICE",
"ICE",
"ICE",
"ICE",
"CLAY",
"GRAVEL"
],
"surfaceType": "simplex",
"subSurface": [
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"subSurfaceType": "simplex",
"rock": [
"SANDSTONE"
],
"objects":[
"spire/small=0.11",
"spire/medium=0.055"
]
}

20
biomes/frozen_shore.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "Frozen Shore",
"derivative": "COLD_BEACH",
"type": "FRONT",
"genHeight": 0,
"snow": 0.24,
"surface": [
"SNOW_BLOCK"
],
"subSurface": [
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"objects":[
"spire/small=0.02"
]
}

View File

@@ -5,6 +5,8 @@
"parent": "Mountains & Ice Forest",
"region": "snowy",
"genHeight": 0,
"genScale": 0.7,
"genAmplifier": 1.05,
"rarity": 1.5,
"cliffScale": 1.29,
"cliffChance": 0.52,

View File

@@ -5,6 +5,11 @@
"parent": "Jungle",
"region": "tropical",
"genHeight": 0,
"rarity": 1.1,
"genAmplifier": 0.5,
"genScale": 1.05,
"genSwirl": 3000,
"genSwirlScale": 10,
"scatter":[
"LONG_GRASS:1=0.33",
"LONG_GRASS:2=0.02"

13
biomes/magma_beach.json Normal file
View File

@@ -0,0 +1,13 @@
{
"name": "Magma Shore",
"derivative": "BEACHES",
"type": "FRONT",
"genHeight": 0,
"surface": [
"CONCRETE_POWDER:15",
"CONCRETE_POWDER:7"
],
"subSurface": [
"MAGMA"
]
}

16
biomes/magma_lake.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "Magma Lake",
"derivative": "HELL",
"type": "FLUID",
"fluid": "MAGMA",
"genHeight": -0.2,
"genAmp": 0,
"surface": [
"MAGMA"
],
"subSurface": [
"STONE",
"GRAVEL"
],
"subSurfaceType": "simplex"
}

13
biomes/magma_shore.json Normal file
View File

@@ -0,0 +1,13 @@
{
"name": "Magma Shore",
"derivative": "BEACHES",
"type": "FRONT",
"genHeight": 0,
"surface": [
"CONCRETE_POWDER:15",
"CONCRETE_POWDER:7"
],
"subSurface": [
"MAGMA"
]
}

View File

@@ -6,6 +6,9 @@
"region": "hot",
"cliffs": true,
"genHeight": 0,
"rarity": 1.33,
"genScale": 1.6,
"genAmplifier": 1.15,
"cliffScale": 0.89,
"cliffChance": 0.62,
"surface": [

View File

@@ -5,8 +5,11 @@
"region": "cold",
"parent": "Plains",
"genHeight": 0,
"rarity": 1.33,
"genScale": 0.7,
"genAmplifier": 1.25,
"cliffScale": 1.19,
"cliffChance": 0.37,
"cliffChance": 0.47,
"cliffs": true,
"scatter":[
"LONG_GRASS:2=0.04"

20
biomes/oily_lake.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "Oily Lake",
"derivative": "SWAMPLAND",
"type": "FLUID",
"genHeight": -0.2,
"genAmp": 0,
"surface": [
"CONCRETE:12",
"CONCRETE:12",
"CONCRETE:12",
"CONCRETE:12",
"CONCRETE:1"
],
"subSurface": [
"STONE",
"GRAVEL"
],
"subSurfaceType": "simplex",
"surfaceType": "simplex"
}

23
biomes/oily_shore.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "Oily Shore",
"derivative": "STONE_BEACH",
"type": "FRONT",
"genHeight": 0,
"surfaceType": "simplex",
"surface": [
"CONCRETE_POWDER:12",
"CONCRETE_POWDER:12",
"CONCRETE_POWDER:12",
"CONCRETE_POWDER:1"
],
"subSurface": [
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"objects":[
"spire/small=0.02"
]
}

View File

@@ -5,6 +5,11 @@
"parent": "Cold Taiga Hills",
"region": "cold",
"genHeight": 0,
"rarity": 1.1,
"genAmplifier": 0.5,
"genScale": 1.05,
"genSwirl": 3000,
"genSwirlScale": 10,
"surface": [
"DIRT",
"DIRT:1",

View File

@@ -4,6 +4,11 @@
"type": "LAND",
"region": "hot",
"parent": "Savanna",
"rarity": 1.1,
"genAmplifier": 0.55,
"genScale": 1.05,
"genSwirl": 3000,
"genSwirlScale": 10,
"genHeight": 0,
"scatter":[
"LONG_GRASS:1=0.18"

View File

@@ -1,5 +1,5 @@
{
"name": "Lake Shore",
"name": "Shore",
"derivative": "BEACHES",
"type": "FRONT",
"genHeight": 0,

View File

@@ -5,6 +5,11 @@
"parent": "Cold Taiga",
"region": "cold",
"genHeight": 0,
"rarity": 1.1,
"genAmplifier": 0.5,
"genScale": 1.05,
"genSwirl": 3000,
"genSwirlScale": 10,
"scatter":[
"LONG_GRASS:2=0.04"
],

View File

@@ -1,13 +1,15 @@
{
"name": "Volcanic",
"derivative": "MUTATED_JUNGLE",
"derivative": "HELL",
"type": "LAND",
"parent": "Jungle Hills",
"genHeight": 0,
"rarity": 3.5,
"region": "tropical",
"region": "superhot",
"cliffScale": 0.76,
"cliffChance": 0.752,
"genScale": 0.6,
"genAmplifier": 1.15,
"cliffChance": 0.352,
"cliffs": true,
"subSurface": [
"CONCRETE_POWDER:15"

View File

@@ -4,10 +4,23 @@
"biomes": [
"ocean",
"lake",
"lake_shore",
"shore",
"beach",
"channel",
"frozen_ocean",
"frozen_lake",
"frozen_shore",
"frozen_beach",
"frozen_channel",
"oily_shore",
"oily_lake",
"magma_shore",
"magma_lake",
"magma_beach",
"desert",
"desert_red",
"desert_hills",

View File

@@ -3,6 +3,6 @@
"beach": "beach",
"ocean": "ocean",
"lake": "lake",
"lakeBeach": "beach",
"shore": "shore",
"channel": "channel"
}

View File

@@ -3,6 +3,6 @@
"beach": "beach",
"ocean": "ocean",
"lake": "lake",
"lakeBeach": "beach",
"shore": "shore",
"channel": "channel"
}

View File

@@ -2,7 +2,7 @@
"name": "Hot",
"beach": "beach",
"ocean": "ocean",
"lake": "lake",
"lakeBeach": "beach",
"lake": "oily_lake",
"shore": "oily_shore",
"channel": "channel"
}

View File

@@ -1,8 +1,8 @@
{
"name": "Snowy",
"beach": "beach",
"ocean": "ocean",
"lake": "lake",
"lakeBeach": "beach",
"channel": "channel"
"beach": "frozen_beach",
"ocean": "frozen_ocean",
"lake": "frozen_lake",
"shore": "frozen_shore",
"channel": "frozen_channel"
}

8
regions/superhot.json Normal file
View File

@@ -0,0 +1,8 @@
{
"name": "Superhot",
"beach": "magma_beach",
"ocean": "ocean",
"lake": "magma_lake",
"shore": "magma_shore",
"channel": "channel"
}

View File

@@ -3,6 +3,6 @@
"beach": "beach",
"ocean": "ocean",
"lake": "lake",
"lakeBeach": "beach",
"shore": "shore",
"channel": "channel"
}

View File

@@ -3,6 +3,6 @@
"beach": "beach",
"ocean": "ocean",
"lake": "lake",
"lakeBeach": "beach",
"shore": "shore",
"channel": "channel"
}