9
0
mirror of https://github.com/IrisDimensions/overworld.git synced 2025-12-29 19:59:20 +00:00
This commit is contained in:
NextdoorPsycho
2020-05-15 23:06:18 -07:00
parent cae90b6135
commit a4b174b4d6
9 changed files with 150 additions and 0 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,58 @@
{
"name": "Plains",
"layers": [
{
"palette": [
"GRASS_BLOCK"
]
},
{
"palette": [
"DIRT"
]
},
{
"minHeight": 1,
"maxHeight": 3,
"palette": [
"DIRT",
"DIRT",
"COARSE_DIRT"
]
}
],
"objects": [
{
"place": ["LargeBoi"],
"chance": 0.03,
"translate": {
"y": -2
},
"rotation": {
"enabled": true,
"xAxis": {
"enabled": true,
"min": -23,
"max": 23,
"interval": 1
},
"yAxis": {
"enabled": true,
"min": 0,
"max": 0,
"interval": 90
},
"zAxis": {
"enabled": true,
"min": -23,
"max": 23,
"interval": 1
}
}
}
],
"derivative": "PLAINS",
"heightExponent": 1,
"highHeight": 7,
"lowHeight": 1
}

View File

@@ -0,0 +1,25 @@
{
"environment": "NORMAL",
"fluidHeight": 63,
"biomeZoom": 4,
"dimensionAngleDeg": 12,
"terrainZoom": 1,
"interpolationFunction": "BILINEAR",
"interpolationScale": 80,
"interpolationSurfaceFunction": "BILINEAR",
"interpolationSurfaceScale": 40,
"roughnessHeight": 1,
"coordFractureZoom": 2,
"coordFractureDistance": 222,
"hermiteTension": 1,
"landZoom": 4,
"debugFastPregen": true,
"seaZoom": 0.3,
"continentZoom": 0.2,
"hermiteBias": 0.5,
"placeObjects": true,
"roughnessZoom": 1,
"regions": [
"brian"
]
}

View File

@@ -0,0 +1,14 @@
{
"name": "Brian",
"shoreRatio": 0.05,
"biomeImplosionRatio": 0.25,
"landBiomes": [
"plains-brian"
],
"seaBiomes": [
"ocean-brian"
],
"shoreBiomes": [
"beach-brian"
]
}