9
0
mirror of https://github.com/IrisDimensions/overworld.git synced 2025-12-29 11:49:22 +00:00

More biomes

This commit is contained in:
Daniel Mills
2020-01-12 17:49:42 -05:00
parent 6d42dcc7b3
commit 460663f984
6 changed files with 62 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "Beach",
"derivative": "BEACHES",
"height": -0.078,
"height": -0.178,
"surface": [
"SAND"
],
@@ -13,7 +13,7 @@
"GRAVEL"
],
"objects": [
"tree/palm/medium=0.45",
"tree/palm/small=4.95"
"tree/palm/medium=0.75",
"tree/palm/small=2.68"
]
}

19
biomes/ice_forest.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "Ice Forest",
"region": "Cold",
"height": 0.18,
"derivative": "MUTATED_ICE_FLATS",
"surface": [
"SNOW_BLOCK"
],
"dirt": [
"PACKED_ICE"
],
"objects": [
"tree/spruce/medium=0.87",
"tree/spruce/small=3.7",
"tree/spruce/dead/medium=0.01",
"tree/evergreen/large=0.17",
"tree/evergreen/medium=0.22"
]
}

View File

@@ -1,11 +1,19 @@
{
"name": "Ice Mountains",
"derivative": "ICE_MOUNTAINS",
"height": 0.412,
"height": 0.382,
"region": "Cold",
"surface": [
"SNOW_BLOCK"
],
"dirt": [
"PACKED_ICE"
],
"objects": [
"tree/spruce/medium=0.07",
"tree/spruce/small=0.25",
"tree/spruce/dead/medium=0.035"
"tree/spruce/medium=0.57",
"tree/spruce/small=1.7",
"tree/spruce/dead/medium=0.01",
"tree/evergreen/large=0.07",
"tree/evergreen/medium=0.37"
]
}

View File

@@ -1,5 +1,12 @@
{
"name": "Ice Plains",
"region": "Cold",
"derivative": "ICE_FLATS"
"height": 0.1,
"derivative": "ICE_FLATS",
"surface": [
"SNOW_BLOCK"
],
"dirt": [
"PACKED_ICE"
]
}

18
biomes/mesa_green.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "Mesa Green",
"derivative": "Mesa",
"height": 0.073,
"region": "HotDry",
"surface": [
"STAINED_CLAY:4",
"STAINED_CLAY:5",
"STAINED_CLAY:13",
"STAINED_CLAY:12"
],
"dirt": [
"CLAY",
"SAND:1",
"SAND"
],
"surfaceType": "simplex"
}

View File

@@ -8,8 +8,10 @@
"mesa",
"mesa_mountains",
"mesa_blue",
"mesa_green",
"savanna",
"savanna_hills",
"ice_forest",
"jungle",
"jungle_hills",
"swamp",