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

Birch Ponderosa

This commit is contained in:
NextdoorPsycho
2020-05-16 21:42:43 -07:00
parent 0cc43a0899
commit 5066f66eff
56 changed files with 153 additions and 6 deletions

View File

@@ -0,0 +1,23 @@
{
"name": "Beach",
"layers": [
{
"minHeight": 3,
"maxHeight": 6,
"palette": [
"SAND"
]
},
{
"minHeight": 1,
"maxHeight": 3,
"palette": [
"DIRT"
]
}
],
"derivative": "BEACH",
"heightExponent": 1,
"highHeight": 2,
"lowHeight": -1
}

View File

@@ -0,0 +1,30 @@
{
"name": "Ocean",
"layers": [
{
"minHeight": 3,
"maxHeight": 6,
"palette": [
"SAND"
]
},
{
"palette": [
"DIRT"
]
},
{
"minHeight": 1,
"maxHeight": 3,
"palette": [
"DIRT",
"DIRT",
"COARSE_DIRT"
]
}
],
"derivative": "OCEAN",
"heightExponent": 1,
"highHeight": 0,
"lowHeight": -32
}

View File

@@ -0,0 +1,39 @@
{
"name": "Plains",
"auxiliaryGenerators":[
{
"zoom": 3,
"offsetX": 0,
"offsetZ": 0,
"seed": 1337,
"min": 0,
"max": 3
}
],
"layers": [
{
"palette": [
"GRASS_BLOCK"
]
},
{
"palette": [
"DIRT"
]
},
{
"minHeight": 1,
"maxHeight": 3,
"palette": [
"DIRT",
"DIRT",
"COARSE_DIRT"
]
}
],
"derivative": "PLAINS",
"heightFrequency": 0.2,
"heightExponent": 1,
"highHeight": 6,
"lowHeight": 3
}

View File

@@ -0,0 +1,39 @@
{
"name": "Test",
"auxiliaryGenerators":[
{
"zoom": 3,
"offsetX": 0,
"offsetZ": 0,
"seed": 1337,
"min": 0,
"max": 3
}
],
"layers": [
{
"palette": [
"STONE"
]
},
{
"palette": [
"DIRT"
]
},
{
"minHeight": 1,
"maxHeight": 3,
"palette": [
"DIRT",
"DIRT",
"COARSE_DIRT"
]
}
],
"derivative": "PLAINS",
"heightFrequency": 0.2,
"heightExponent": 1,
"highHeight": 6,
"lowHeight": 3
}

View File

@@ -0,0 +1,15 @@
{
"name": "Temperate",
"shoreRatio": 0.05,
"biomeImplosionRatio": 0.25,
"landBiomes": [
"plains-dan",
"test-dan"
],
"seaBiomes": [
"ocean-dan"
],
"shoreBiomes": [
"beach-dan"
]
}