diff --git a/dev.brian/biomes/beach-brian.json b/dev.brian/biomes/beach.json similarity index 67% rename from dev.brian/biomes/beach-brian.json rename to dev.brian/biomes/beach.json index 5510a4d2..4ee13e79 100644 --- a/dev.brian/biomes/beach-brian.json +++ b/dev.brian/biomes/beach.json @@ -16,8 +16,12 @@ ] } ], - "derivative": "BEACH", - "heightExponent": 1, - "highHeight": 2, - "lowHeight": -1 + "generators":[ + { + "generator": "plain", + "min": -1, + "max": 1 + } + ], + "derivative": "JUNGLE_EDGE" } \ No newline at end of file diff --git a/dev.brian/biomes/birch-ponderosa-brian.txt b/dev.brian/biomes/birch-ponderosa-brian.txt deleted file mode 100644 index dca97ce7..00000000 --- a/dev.brian/biomes/birch-ponderosa-brian.txt +++ /dev/null @@ -1,63 +0,0 @@ -{ - "children": ["another_biome"], - "decorators": [{ - "zoom": 1, - "palette": ["GRASS"], - "dispersion": "SCATTER", - "iterations": 5 - }], - "objects": [{ - "chance": 1, - "density": 1, - "rotation": { - "yAxis": { - "min": 0, - "max": 0, - "interval": 90, - "enabled": true - }, - "xAxis": { - "min": 0, - "max": 0, - "interval": 0, - "enabled": false - }, - "zAxis": { - "min": 0, - "max": 0, - "interval": 0, - "enabled": false - }, - "enabled": true - }, - "place": [ - "schematic1", - "schematic2" - ], - "translate": { - "x": 0, - "y": 0, - "z": 0 - } - }], - "name": "A Biome", - "layers": [{ - "minHeight": 1, - "terrainZoom": 5, - "maxHeight": 1, - "palette": ["GRASS_BLOCK"], - "dispersion": "SCATTER" - }], - "childShrinkFactor": 1.5, - "derivative": "THE_VOID", - "auxiliaryGenerators": [{ - "offsetX": 0, - "offsetZ": 0, - "min": 0, - "seed": 0, - "max": 10, - "zoom": 1 - }], - "highHeight": 3, - "lowHeight": 1 -} \ No newline at end of file diff --git a/dev.brian/biomes/land.json b/dev.brian/biomes/land.json new file mode 100644 index 00000000..7d070fb4 --- /dev/null +++ b/dev.brian/biomes/land.json @@ -0,0 +1,27 @@ +{ + "name": "Land", + "layers": [ + { + "minHeight": 3, + "maxHeight": 6, + "palette": [ + "GRASS" + ] + }, + { + "minHeight": 1, + "maxHeight": 3, + "palette": [ + "DIRT" + ] + } + ], + "generators":[ + { + "generator": "plain", + "min": 2, + "max": 5 + } + ], + "derivative": "JUNGLE_EDGE" +} \ No newline at end of file diff --git a/dev.brian/biomes/ocean-brian.json b/dev.brian/biomes/ocean.json similarity index 56% rename from dev.brian/biomes/ocean-brian.json rename to dev.brian/biomes/ocean.json index 650795ed..aa54de10 100644 --- a/dev.brian/biomes/ocean-brian.json +++ b/dev.brian/biomes/ocean.json @@ -1,5 +1,5 @@ { - "name": "Ocean", + "name": "Sea", "layers": [ { "minHeight": 3, @@ -8,23 +8,20 @@ "SAND" ] }, - { - "palette": [ - "DIRT" - ] - }, { "minHeight": 1, "maxHeight": 3, "palette": [ - "DIRT", - "DIRT", - "COARSE_DIRT" + "DIRT" ] } ], - "derivative": "OCEAN", - "heightExponent": 1, - "highHeight": 0, - "lowHeight": -32 + "generators":[ + { + "generator": "plain", + "min": -8, + "max": -5 + } + ], + "derivative": "OCEAN" } \ No newline at end of file diff --git a/dev.brian/biomes/plains-brian.json b/dev.brian/biomes/plains-brian.json deleted file mode 100644 index 96f38afa..00000000 --- a/dev.brian/biomes/plains-brian.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "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 -} \ No newline at end of file diff --git a/dev.brian/biomes/ridge.json b/dev.brian/biomes/ridge.json new file mode 100644 index 00000000..933218c3 --- /dev/null +++ b/dev.brian/biomes/ridge.json @@ -0,0 +1,27 @@ +{ + "name": "Ridge", + "layers": [ + { + "minHeight": 3, + "maxHeight": 6, + "palette": [ + "DIAMOND_BLOCK" + ] + }, + { + "minHeight": 1, + "maxHeight": 3, + "palette": [ + "DIRT" + ] + } + ], + "generators":[ + { + "generator": "plain", + "min": 2, + "max": 5 + } + ], + "derivative": "JUNGLE_EDGE" +} \ No newline at end of file diff --git a/dev.brian/biomes/spot.json b/dev.brian/biomes/spot.json new file mode 100644 index 00000000..c359c9a5 --- /dev/null +++ b/dev.brian/biomes/spot.json @@ -0,0 +1,27 @@ +{ + "name": "Spot", + "layers": [ + { + "minHeight": 3, + "maxHeight": 6, + "palette": [ + "GOLD_BLOCK" + ] + }, + { + "minHeight": 1, + "maxHeight": 3, + "palette": [ + "DIRT" + ] + } + ], + "generators":[ + { + "generator": "plain", + "min": 2, + "max": 5 + } + ], + "derivative": "JUNGLE_EDGE" +} \ No newline at end of file diff --git a/dev.brian/regions/brian.json b/dev.brian/regions/brian.json index a81ad317..154588bb 100644 --- a/dev.brian/regions/brian.json +++ b/dev.brian/regions/brian.json @@ -3,13 +3,28 @@ "shoreRatio": 0.05, "biomeImplosionRatio": 0.25, "landBiomes": [ - "plains-brian" - "birch-ponderosa-brian" + "land" ], "seaBiomes": [ - "ocean-brian" + "ocean" ], "shoreBiomes": [ - "beach-brian" + "beach" + ], + "ridgeBiomes": [ + { + "biome": "ridge", + "type": "land", + "width": 7, + "scale": 1, + "chance": 0.75 + } + ], + "spotBiomes": [ + { + "biome": "spot", + "type": "land", + "scale": 15 + } ] } \ No newline at end of file diff --git a/iris.overworld.hot/biomes/hot-dry-forest.json b/iris.overworld.hot/biomes/hot-dry-forest.json index 53475692..3cb6ef89 100644 --- a/iris.overworld.hot/biomes/hot-dry-forest.json +++ b/iris.overworld.hot/biomes/hot-dry-forest.json @@ -5,19 +5,23 @@ "dispersion": "WISPY", "terrainZoom": 1.25, "palette": [ - "SAND", - "GRASS", - "RED_SAND", - "GRASS" + "GRASS_BLOCK", + "GRASS_BLOCK", + "GRASS_BLOCK", + "GRASS_BLOCK", + "GRASS_BLOCK", + "GRASS_PATH", + "GRASS_BLOCK", + "GRASS_BLOCK", + "GRASS_BLOCK", + "GRASS_BLOCK" ] }, { "minHeight": 2, "maxHeight": 4, "palette": [ - "SANDSTONE", - "RED_SANDSTONE", - "STONE" + "DIRT" ] }, { @@ -44,7 +48,7 @@ }, { "zoom": 0.3, - "chance": 0.162, + "chance": 0.092, "palette": [ "DEAD_BUSH" ], @@ -66,16 +70,10 @@ ], "objects": [ { - "chance": 0.225, + "chance": 0.335, "density": 1, "rotation": { - "yAxis": { - "min": 0, - "max": 0, - "interval": 90, - "enabled": true - }, - "enabled": true + "enabled": false }, "place": [ "deadwood/deadwood1", @@ -94,7 +92,7 @@ ], "derivative": "SAVANNA", "biomeDispersion": "WISPY", - "biomeZoom": 60, + "biomeZoom": 20, "biomeScatter": [ "SAVANNA", "DESERT"