9
0
mirror of https://github.com/IrisDimensions/overworld.git synced 2025-12-31 12:46:40 +00:00

Mountains

This commit is contained in:
Daniel Mills
2020-07-26 20:44:21 -04:00
parent 52416aaefc
commit 7b52f5cf1d
9 changed files with 248 additions and 17 deletions

View File

@@ -0,0 +1,41 @@
{
"offsetX": 0,
"offsetZ": 0,
"interpolationFunction": "BILINEAR",
"interpolationScale": 188,
"seed": 7246236,
"cliffHeightMax": 55,
"cliffHeightMin": 29,
"cliffHeightGenerator": {
"sinCentered": false,
"seed": 10056,
"parametric": false,
"zoom": 1.75,
"enabled": true,
"offsetX": 0,
"octaves": 3,
"offsetZ": 0,
"offsetY": 0,
"irisBased": true,
"opacity": 1,
"bezier": false,
"exponent": 1.125
},
"composite": [{
"sinCentered": false,
"seed": 10356,
"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

@@ -1,5 +1,5 @@
{
"name": "Mesa Cliffs",
"name": "Shattered Mesa",
"lockLayers": true,
"layers": [
{

View File

@@ -59,6 +59,9 @@
]
}
],
"children":[
"hot-mesa-cliffs"
],
"generators":[
{
"generator": "plain",

View File

@@ -6,8 +6,6 @@
"terrainZoom": 0.75,
"palette": [
"GRASS_BLOCK"
]
},
{
@@ -192,7 +190,6 @@
"SAVANNA",
"DESERT"
],
"biomeSkyScatter": [
"DESERT",
"SAVANNA"

View File

@@ -10,7 +10,6 @@
"hot-dry-forest",
"hot-desert-red",
"hot-savanna"
],
"seaBiomes": [
"hot-ocean"

View File

@@ -0,0 +1,195 @@
{
"name": "Shattered Mountains",
"layers": [
{
"palette": [
"GRASS_BLOCK"
]
},
{
"minHeight": 6,
"maxHeight": 18,
"dispersion": "SCATTER",
"palette": [
"STONE",
"ANDESITE",
"STONE"
]
}
],
"generators":[
{
"generator": "plain",
"min": 1,
"max": 42
},
{
"generator": "mountain-cliffs",
"min": 7,
"max": 62
},
{
"generator": "rough",
"min": 1,
"max": 3
}
],
"objects": [
{
"chance": 0.025,
"density": 1,
"rotation": {
"yAxis": {
"min": 0,
"max": 0,
"interval": 90,
"enabled": true
},
"enabled": true
},
"place": [
"evergreen/fantasy_evergreen_large1",
"evergreen/fantasy_evergreen_large1",
"evergreen/fantasy_evergreen_medium1",
"evergreen/fantasy_evergreen_medium2",
"evergreen/fantasy_evergreen_medium3"
],
"translate": {
"x": 0,
"y": 0,
"z": 0
}
},
{
"chance": 0.035,
"density": 1,
"rotation": {
"yAxis": {
"min": 0,
"max": 0,
"interval": 90,
"enabled": true
},
"enabled": true
},
"place": [
"boulder/boulder1",
"boulder/boulder2",
"boulder/boulder3",
"boulder/boulder4",
"boulder/boulder5",
"boulder/boulder6",
"boulder/boulder7",
"boulder/boulder8",
"boulder/boulder9",
"boulder/boulder10",
"boulder/boulder11",
"boulder/boulder12",
"boulder/boulder13",
"boulder/boulder14",
"boulder/boulder15"
],
"translate": {
"x": 0,
"y": -2,
"z": 0
}
},
{
"chance": 0.075,
"density": 1,
"rotation": {
"enabled": false
},
"place": [
"stump/stump1",
"stump/stump2",
"stump/stump3",
"stump/stump4",
"stump/stump5",
"stump/stump6"
],
"translate": {
"x": 0,
"y": 0,
"z": 0
}
},
{
"chance": 0.625,
"density": 1,
"rotation": {
"yAxis": {
"min": 0,
"max": 0,
"interval": 90,
"enabled": true
},
"xAxis": {
"min": -12,
"max": 12,
"interval": 1,
"enabled": true
},
"zAxis": {
"min": -12,
"max": 12,
"interval": 90,
"enabled": true
},
"enabled": true
},
"place": [
"pine/pine1",
"pine/pine2",
"pine/pine3",
"pine/pine4",
"pine/pine5",
"pine/pine6",
"pine/pine7",
"pine/pine8",
"pine/pine9",
"pine/pine10",
"pine/pine11",
"pine/pine12"
],
"translate": {
"x": 0,
"y": 0,
"z": 0
}
}
],
"decorators": [
{
"zoom": 0.1,
"chance": 0.01,
"palette": ["WHITE_TULIP", "BLUE_ORCHID", "POPPY"],
"dispersion": "SCATTER",
"variance": "SCATTER"
},
{
"zoom": 0.3,
"chance": 0.2,
"palette": ["GRASS"],
"dispersion": "SCATTER",
"variance": "SCATTER"
}
],
"derivative": "MOUNTAINS",
"biomeDispersion": "WISPY",
"biomeZoom": 30,
"biomeScatter": [
"PLAINS",
"TAIGA_HILLS",
"MOUNTAINS",
"SWAMP"
],
"biomeSkyScatter": [
"SNOWY_TAIGA",
"SNOWY_MOUNTAINS"
]
}

View File

@@ -21,12 +21,7 @@
{
"generator": "plain",
"min": 1,
"max": 12
},
{
"generator": "mountain",
"min": 13,
"max": 32
"max": 43
},
{
"generator": "rough",
@@ -34,9 +29,12 @@
"max": 3
}
],
"objects": [
"children":[
"tundra-mountains-cliffs"
],
"objects": [
{
"chance": 0.25,
"chance": 0.085,
"density": 1,
"rotation": {
"yAxis": {

View File

@@ -29,9 +29,6 @@
]
}
],
"children": [
"tundra-mountains"
],
"objects": [
{
"chance": 0.9,

View File

@@ -5,7 +5,8 @@
"shoreHeightMax": 5.2,
"shoreHeightZoom": 1.14,
"landBiomes": [
"tundra-redwoods"
"tundra-redwoods",
"tundra-mountains"
],
"seaBiomes": [
"tundra-ocean"