9
0
mirror of https://github.com/IrisDimensions/earthworld.git synced 2025-12-29 11:49:07 +00:00
This commit is contained in:
Daniel Mills
2020-07-26 20:44:11 -04:00
parent dd4dbcfeab
commit 52416aaefc
6 changed files with 224 additions and 1 deletions

View File

@@ -25,6 +25,7 @@
"generator": "default"
}],
"childShrinkFactor": 1.5,
"lockLayers": false,
"biomeScatter": [],
"rarity": 1
}
@@ -39,6 +40,9 @@
## biomeZoom
> This zooms in the biome colors if multiple derivatives are chosen
## lockLayers
> Layers no longer descend from the surface block, they descend from the max possible height the biome can produce (constant) creating mesa like layers.
## rarity
> The rarity of this biome (integer)

View File

@@ -9,7 +9,25 @@
"composite": [],
"interpolationScale": 7,
"zoom": 1,
"opacity": 1
"cliffHeightMin": 0,
"opacity": 1,
"cliffHeightMax": 0,
"cliffHeightGenerator": {
"sinCentered": false,
"seed": 0,
"parametric": false,
"zoom": 1,
"enabled": true,
"fracture": [],
"offsetX": 0,
"octaves": 1,
"offsetZ": 0,
"offsetY": 0,
"irisBased": true,
"opacity": 1,
"bezier": false,
"exponent": 1
}
}
```
@@ -34,6 +52,15 @@
## interpolationScale
> The interpolation distance scale (blocks) when two biomes use different heights but this same generator
## cliffHeightMax
> Cliff Height Max. Disable with 0 for min and max
## cliffHeightMin
> Cliff Height Min. Disable with 0 for min and max
## composite
> The list of noise gens this gen contains.
## cliffHeightGenerator
> The noise gen for cliff height.

View File

@@ -0,0 +1,41 @@
{
"offsetX": 0,
"offsetZ": 0,
"interpolationFunction": "HERMITE",
"interpolationScale": 198,
"seed": 7246661,
"cliffHeightMax": 80,
"cliffHeightMin": 45,
"cliffHeightGenerator": {
"sinCentered": false,
"seed": 50056,
"parametric": false,
"zoom": 4.2,
"enabled": true,
"offsetX": 0,
"octaves": 3,
"offsetZ": 0,
"offsetY": 0,
"irisBased": true,
"opacity": 1,
"bezier": false,
"exponent": 1.125
},
"composite": [{
"sinCentered": false,
"seed": 10056,
"parametric": false,
"zoom": 0.95,
"enabled": true,
"offsetX": 0,
"octaves": 3,
"offsetZ": 0,
"offsetY": 0,
"irisBased": true,
"opacity": 1,
"bezier": false,
"exponent": 1.125
}],
"zoom": 1,
"opacity": 1
}

View File

@@ -0,0 +1,75 @@
{
"name": "Mesa Cliffs",
"lockLayers": true,
"layers": [
{
"minHeight": 2,
"maxHeight": 3,
"dispersion": "SCATTER",
"palette": [
"TERRACOTTA"
]
},
{
"minHeight": 1,
"maxHeight": 2,
"dispersion": "SCATTER",
"palette": [
"BROWN_TERRACOTTA"
]
},
{
"minHeight": 1,
"maxHeight": 2,
"dispersion": "SCATTER",
"palette": [
"GRAY_TERRACOTTA"
]
},
{
"minHeight": 1,
"maxHeight": 2,
"dispersion": "SCATTER",
"palette": [
"BLACK_TERRACOTTA"
]
},
{
"minHeight": 2,
"maxHeight": 2,
"dispersion": "SCATTER",
"palette": [
"GRAY_TERRACOTTA"
]
},
{
"minHeight": 1,
"maxHeight": 2,
"dispersion": "SCATTER",
"palette": [
"BROWN_TERRACOTTA"
]
},
{
"minHeight": 2,
"maxHeight": 3,
"dispersion": "SCATTER",
"palette": [
"TERRACOTTA"
]
}
],
"generators":[
{
"generator": "plain-cliffs",
"min": 10,
"max": 35
},
{
"generator": "wavy",
"min": 2,
"max": 5
}
],
"derivative": "SHATTERED_SAVANNA_PLATEAU"
}

View File

@@ -0,0 +1,75 @@
{
"name": "Mesa",
"lockLayers": true,
"layers": [
{
"minHeight": 2,
"maxHeight": 3,
"dispersion": "SCATTER",
"palette": [
"TERRACOTTA"
]
},
{
"minHeight": 1,
"maxHeight": 2,
"dispersion": "SCATTER",
"palette": [
"BROWN_TERRACOTTA"
]
},
{
"minHeight": 1,
"maxHeight": 2,
"dispersion": "SCATTER",
"palette": [
"GRAY_TERRACOTTA"
]
},
{
"minHeight": 1,
"maxHeight": 2,
"dispersion": "SCATTER",
"palette": [
"BLACK_TERRACOTTA"
]
},
{
"minHeight": 2,
"maxHeight": 2,
"dispersion": "SCATTER",
"palette": [
"GRAY_TERRACOTTA"
]
},
{
"minHeight": 1,
"maxHeight": 2,
"dispersion": "SCATTER",
"palette": [
"BROWN_TERRACOTTA"
]
},
{
"minHeight": 2,
"maxHeight": 3,
"dispersion": "SCATTER",
"palette": [
"TERRACOTTA"
]
}
],
"generators":[
{
"generator": "plain",
"min": 10,
"max": 12
},
{
"generator": "wavy",
"min": 2,
"max": 5
}
],
"derivative": "SHATTERED_SAVANNA"
}

View File

@@ -6,6 +6,7 @@
"shoreHeightZoom": 1.14,
"landBiomes": [
"hot-desert",
"hot-mesa",
"hot-dry-forest",
"hot-desert-red",
"hot-savanna"