From 8ab5021ef0624574d36e69b0a1255b7787c8eb0a Mon Sep 17 00:00:00 2001 From: Brian Neumann-Fopiano <29320316+NextdoorPsycho@users.noreply.github.com> Date: Sat, 24 Jul 2021 04:00:24 -0700 Subject: [PATCH 01/25] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 47888dc3..a411abd6 100644 --- a/README.md +++ b/README.md @@ -16,14 +16,16 @@ If you want to contribute as well, feel free to make a fork and pull requests. We sporadically review these requests so please contact us on Discord if you've made any. -# Overworld V2 1.17 +# Overworld V2 1.17+ Roadmap +- [ ] Fill regions with more content, swamp, cold, etc... +- [ ] Fix straight lines... - [x] Ore implementation for copper - [X] New implementation for andesite, gravel, granite, and deepslate for the infinite height in 1.17+ (need to objectify them) - [X] Fix implementation of objects in the REGIONS folder. They are not working, Clamp, and Bottom, are not working. - [X] Amythests - [ ] Pretty caves (with whatever new blocks they added! -- [-] Biomes that show off the new blocks +- [ ] Biomes that show off the new blocks * - [X] Implement all the new blocks - [X] Fix Despawns and rework Spawns From a1cff25a39dba5c87e32c957acafa2a08dba31cd Mon Sep 17 00:00:00 2001 From: Daniel Mills Date: Sat, 24 Jul 2021 11:46:07 -0400 Subject: [PATCH 02/25] Flower oasis in plains --- biomes/temperate/plains.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/biomes/temperate/plains.json b/biomes/temperate/plains.json index 28a7a2c4..08cb150c 100644 --- a/biomes/temperate/plains.json +++ b/biomes/temperate/plains.json @@ -44,6 +44,26 @@ ] } ], + "features": [ + { + "rarity": 252, + "zone": { + "convergeToHeight": 64, + "interpolationRadius": 3, + "interpolator": "BILINEAR_STARCAST_6", + "blockRadius": 14, + "objectChance": 1, + "strength": 1, + "biomeStrengthThreshold": 0.18, + "customBiome": "temperate/flower-forest", + "fractureRadius": { + "style": "NOWHERE", + "zoom": 0.12, + "multiplier": 52 + } + } + } + ], "decorators": [ { "chance": 0.004, From c47f57171a5aa74318bf08b5207d29d18f210e09 Mon Sep 17 00:00:00 2001 From: Daniel Mills Date: Sat, 24 Jul 2021 11:46:20 -0400 Subject: [PATCH 03/25] V+ --- dimensions/overworld.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dimensions/overworld.json b/dimensions/overworld.json index 9b832771..3caceb0c 100644 --- a/dimensions/overworld.json +++ b/dimensions/overworld.json @@ -1,5 +1,5 @@ { - "version": 2001, + "version": 2002, "OVERWORLD-VERSION": 3.134, "name": "Overworld", "environment": "NORMAL", From 558d3811528c710f1f5368bd673b51cb1a99a962 Mon Sep 17 00:00:00 2001 From: Daniel Mills Date: Sat, 24 Jul 2021 12:01:56 -0400 Subject: [PATCH 04/25] Add back flower forest, just at a higher rarity --- biomes/temperate/flower-forest.json | 2 +- regions/temperate.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/biomes/temperate/flower-forest.json b/biomes/temperate/flower-forest.json index c3e71a72..4e04192d 100644 --- a/biomes/temperate/flower-forest.json +++ b/biomes/temperate/flower-forest.json @@ -1,7 +1,7 @@ { "name": "Temperate Flower Forest", "derivative": "FLOWER_FOREST", - "rarity": 1, + "rarity": 6, "color": "#C4CF30", "vanillaDerivative": "FLOWER_FOREST", "generators": [{ diff --git a/regions/temperate.json b/regions/temperate.json index 18b489b0..1493f718 100644 --- a/regions/temperate.json +++ b/regions/temperate.json @@ -10,7 +10,8 @@ "temperate/plains", "temperate/oak-forest", "temperate/birch-forest", - "temperate/lush-plains" + "temperate/lush-plains", + "temperate/flower-forest" ], "shoreBiomes": [ "temperate/shore/beach", From 332422d9da4346918ae25f165e2a43a0d6d8c7bf Mon Sep 17 00:00:00 2001 From: Daniel Mills Date: Sat, 24 Jul 2021 12:12:55 -0400 Subject: [PATCH 05/25] Fix Mesa Plateau issues --- biomes/mesa/plateau-dirt.json | 12 +----------- biomes/mesa/plateau-high.json | 14 ++------------ biomes/mesa/plateau.json | 14 ++------------ 3 files changed, 5 insertions(+), 35 deletions(-) diff --git a/biomes/mesa/plateau-dirt.json b/biomes/mesa/plateau-dirt.json index 5e6dc539..598ec4d4 100644 --- a/biomes/mesa/plateau-dirt.json +++ b/biomes/mesa/plateau-dirt.json @@ -8,17 +8,7 @@ "generators": [ { "min": 33, - "max": 35, - "generator": "canyon-steep" - }, - { - "min": 2, - "max": 3, - "generator": "smooth-dunes" - }, - { - "min": 2, - "max": 6, + "max": 41, "generator": "cracked-cliffs" } ], diff --git a/biomes/mesa/plateau-high.json b/biomes/mesa/plateau-high.json index cb90f812..430244f7 100644 --- a/biomes/mesa/plateau-high.json +++ b/biomes/mesa/plateau-high.json @@ -12,18 +12,8 @@ "children": ["mesa/plateau-dirt-high"], "generators": [ { - "min": 55, - "max": 45, - "generator": "canyon-steep" - }, - { - "min": 2, - "max": 3, - "generator": "smooth-dunes" - }, - { - "min": 2, - "max": 6, + "min": 45, + "max": 58, "generator": "cracked-cliffs" } ], diff --git a/biomes/mesa/plateau.json b/biomes/mesa/plateau.json index 84f73c28..8e219bfb 100644 --- a/biomes/mesa/plateau.json +++ b/biomes/mesa/plateau.json @@ -12,18 +12,8 @@ "children": ["mesa/plateau-dirt"], "generators": [ { - "min": 35, - "max": 35, - "generator": "canyon-steep" - }, - { - "min": 2, - "max": 3, - "generator": "smooth-dunes" - }, - { - "min": 2, - "max": 6, + "min": 34, + "max": 40, "generator": "cracked-cliffs" } ], From e12ffbb627a4c073b576f2435bd42a8276288d3c Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Sat, 24 Jul 2021 15:28:20 -0700 Subject: [PATCH 06/25] Region increment --- dimensions/overworld.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dimensions/overworld.json b/dimensions/overworld.json index 3caceb0c..94726fb7 100644 --- a/dimensions/overworld.json +++ b/dimensions/overworld.json @@ -14,12 +14,12 @@ "exponent": 10.1 }, "REGIONS": "Contains the list of regions and their placement style", - "regionZoom": 7.25, + "regionZoom": 7.35, "regions": [ "mushroom", "swamp", - "temperate", "hot", + "temperate", "tropical", "temperate", "frozen", @@ -40,7 +40,7 @@ }, "SEAS": "Sea settings (for the biomes that are oceans).", "seaZoom": 1.25, - "seaBiomeStyle": {"style": "NOWHERE_CELLULAR"}, + "seaBiomeStyle": {"style": "FRACTAL_FBM_IRIS"}, "LAND": "Land settings (for the biomes that are non-ocean).", "landZoom": 3.2, "landBiomeStyle": { From 548e05916736263dc5efe59c998dcc19236530f3 Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Sat, 24 Jul 2021 15:31:56 -0700 Subject: [PATCH 07/25] Replace ice with colored leaves (lightblue) If it can burn... --- biomes/frozen/redwood-forest.json | 38 ++++++++----------------------- 1 file changed, 9 insertions(+), 29 deletions(-) diff --git a/biomes/frozen/redwood-forest.json b/biomes/frozen/redwood-forest.json index 7612e922..d3ff12b4 100644 --- a/biomes/frozen/redwood-forest.json +++ b/biomes/frozen/redwood-forest.json @@ -23,7 +23,7 @@ "downfallType": "snow", "temperature": -3, "waterFogColor": "#216FC4", - "foliageColor": "#B8D0E1", + "foliageColor": "#6FA6CE", "grassColor": "#D0E1FF" }], "layers": [ @@ -107,34 +107,14 @@ { "chance": 0.4, "density": 2, - "edit": [ - { - "find": [{"block": "spruce_leaves"}], - "replace": { - "style": { - "style": "PERLIN", - "zoom": 0.2 - }, - "palette": [ - {"block": "oak_leaves"}, - {"block": "dark_oak_leaves"} - ] - } - }, - { - "find": [ - {"block": "birch_leaves"}, - {"block": "oak_leaves"} - ], - "replace": {"palette": [ - { - "weight": 4, - "block": "ice" - }, - {"block": "packed_ice"} - ]} - } - ], + "edit": [{ + "find": [{"block": "birch_leaves"}], + "replace": {"palette": [{"block": "oak_leaves", "data": {"persistent": true}}]} + }, + { + "find": [{"block": "spruce_leaves"}], + "replace": {"palette": [{"block": "dark_oak_leaves", "data": {"persistent": true}}]} + }], "snow": 1, "rotation": { "yAxis": { From 5b436d634de69456bf1d1b657fe1bdc93339c05a Mon Sep 17 00:00:00 2001 From: StrangeOne101 Date: Sun, 25 Jul 2021 23:25:13 +1200 Subject: [PATCH 08/25] Fruit of the Forest (and not the desert) - Added Pumpkins (Forests, Plains and Mountains) - Added Melons (Tropical and Lush) - Made snow pines snow zoom a little bit larger - Made tundra walls go from diorite + stone to stone + dirt + coarse dirt --- biomes/frozen/pine-plains.json | 2 +- biomes/temperate/birch-forest.json | 21 ++++ biomes/temperate/birch-thin.json | 21 ++++ biomes/temperate/combo-forest.json | 21 ++++ biomes/temperate/flower-forest.json | 35 +++--- biomes/temperate/longtree-forest.json | 21 ++++ biomes/temperate/lush-plains-red.json | 28 ++++- biomes/temperate/lush-plains-yellow.json | 28 ++++- biomes/temperate/lush-plains.json | 28 ++++- biomes/temperate/oak-denmyre.json | 21 ++++ biomes/temperate/oak-forest.json | 21 ++++ biomes/temperate/plains.json | 8 +- biomes/temperate/sakura-pink-child.json | 21 ++++ biomes/temperate/sakura-pink-forest.json | 21 ++++ biomes/temperate/wilds.json | 21 ++++ biomes/tropical/bamboo-forest.json | 21 ++++ biomes/tropical/mountain-extreme.json | 27 +++++ biomes/tropical/mountain-middle.json | 21 ++++ biomes/tropical/mountain-plains.json | 21 ++++ biomes/tropical/mountain.json | 21 ++++ biomes/tropical/plains-hills.json | 21 ++++ biomes/tropical/plains.json | 21 ++++ biomes/tropical/rainforest-hills.json | 21 ++++ biomes/tropical/rainforest-island.json | 21 ++++ biomes/tropical/rainforest-wicked-child.json | 21 ++++ biomes/tropical/rainforest-wicked.json | 21 ++++ biomes/tropical/rainforest.json | 21 ++++ biomes/tundra/autumn.json | 21 ++++ biomes/tundra/forest-cliffs.json | 21 ++++ biomes/tundra/forest.json | 109 +++++++++++-------- biomes/tundra/mountains.json | 21 ++++ biomes/tundra/redwood-cliffs.json | 7 +- biomes/tundra/redwood-forest.json | 7 +- biomes/tundra/sequia-redwoods.json | 21 ++++ biomes/tundra/spruce-denmyre.json | 21 ++++ biomes/tundra/taiga.json | 21 ++++ objects/clutter/melons1.iob | Bin 0 -> 117 bytes objects/clutter/melons2.iob | Bin 0 -> 101 bytes objects/clutter/melons3.iob | Bin 0 -> 125 bytes objects/clutter/melons4.iob | Bin 0 -> 101 bytes objects/clutter/melons5.iob | Bin 0 -> 93 bytes objects/clutter/melons6.iob | Bin 0 -> 93 bytes objects/clutter/pumpkins1.iob | Bin 0 -> 119 bytes objects/clutter/pumpkins2.iob | Bin 0 -> 103 bytes objects/clutter/pumpkins3.iob | Bin 0 -> 127 bytes objects/clutter/pumpkins4.iob | Bin 0 -> 103 bytes objects/clutter/pumpkins5.iob | Bin 0 -> 95 bytes objects/clutter/pumpkins6.iob | Bin 0 -> 95 bytes 48 files changed, 749 insertions(+), 76 deletions(-) create mode 100644 objects/clutter/melons1.iob create mode 100644 objects/clutter/melons2.iob create mode 100644 objects/clutter/melons3.iob create mode 100644 objects/clutter/melons4.iob create mode 100644 objects/clutter/melons5.iob create mode 100644 objects/clutter/melons6.iob create mode 100644 objects/clutter/pumpkins1.iob create mode 100644 objects/clutter/pumpkins2.iob create mode 100644 objects/clutter/pumpkins3.iob create mode 100644 objects/clutter/pumpkins4.iob create mode 100644 objects/clutter/pumpkins5.iob create mode 100644 objects/clutter/pumpkins6.iob diff --git a/biomes/frozen/pine-plains.json b/biomes/frozen/pine-plains.json index d0c3caa4..a153536d 100644 --- a/biomes/frozen/pine-plains.json +++ b/biomes/frozen/pine-plains.json @@ -72,7 +72,7 @@ "chance": 1, "variance": { "style": "IRIS", - "zoom": 0.23 + "zoom": 0.29 }, "palette": [ { diff --git a/biomes/temperate/birch-forest.json b/biomes/temperate/birch-forest.json index 5d15f060..bcc51a7a 100644 --- a/biomes/temperate/birch-forest.json +++ b/biomes/temperate/birch-forest.json @@ -159,6 +159,27 @@ "trees/birch/antioch5b", "trees/birch/antioch6b" ] + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "biomeStyle": {"style": "SIMPLEX"}, diff --git a/biomes/temperate/birch-thin.json b/biomes/temperate/birch-thin.json index a03fa277..75a442c2 100644 --- a/biomes/temperate/birch-thin.json +++ b/biomes/temperate/birch-thin.json @@ -130,6 +130,27 @@ "trees/birch/antioch5b", "trees/birch/antioch6b" ] + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "biomeZoom": 50, diff --git a/biomes/temperate/combo-forest.json b/biomes/temperate/combo-forest.json index 6661c525..052e4ef6 100644 --- a/biomes/temperate/combo-forest.json +++ b/biomes/temperate/combo-forest.json @@ -288,6 +288,27 @@ "clutter/literalgarbage3", "clutter/literalgarbage4" ] + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "wall": { diff --git a/biomes/temperate/flower-forest.json b/biomes/temperate/flower-forest.json index 4e04192d..588d18e0 100644 --- a/biomes/temperate/flower-forest.json +++ b/biomes/temperate/flower-forest.json @@ -371,27 +371,24 @@ }, { - "chance": 2.0E-7, - "mode": "MIN_HEIGHT", - "rotation": { - "yAxis": { - "min": 0, - "max": 0, - "interval": 90, - "enabled": true - }, - "enabled": true - }, + "chance": 0.008, + "mode": "PAINT", "place": [ - "void/void", - "void/void", - "void/void", - "trees/mixed/smoakog80" + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6" ], - "translate": { - "x": 0, - "y": -5, - "z": 0 + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } } } ], diff --git a/biomes/temperate/longtree-forest.json b/biomes/temperate/longtree-forest.json index 4512bf7b..7e20f385 100644 --- a/biomes/temperate/longtree-forest.json +++ b/biomes/temperate/longtree-forest.json @@ -362,6 +362,27 @@ "y": -2, "z": 0 } + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "generators": [{ diff --git a/biomes/temperate/lush-plains-red.json b/biomes/temperate/lush-plains-red.json index 2afe3801..01848a3b 100644 --- a/biomes/temperate/lush-plains-red.json +++ b/biomes/temperate/lush-plains-red.json @@ -190,7 +190,33 @@ "structures/landstone5", "clutter/statue-villager-plains" ] - + }, + { + "chance": 0.004, + "mode": "PAINT", + "place": [ + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6", + "clutter/melons1", + "clutter/melons2", + "clutter/melons3", + "clutter/melons4", + "clutter/melons5", + "clutter/melons6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "biomeStyle": {"style": "SIMPLEX"}, diff --git a/biomes/temperate/lush-plains-yellow.json b/biomes/temperate/lush-plains-yellow.json index 84445fa3..0fbbf6dc 100644 --- a/biomes/temperate/lush-plains-yellow.json +++ b/biomes/temperate/lush-plains-yellow.json @@ -190,7 +190,33 @@ "structures/landstone5", "clutter/statue-villager-plains" ] - + }, + { + "chance": 0.004, + "mode": "PAINT", + "place": [ + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6", + "clutter/melons1", + "clutter/melons2", + "clutter/melons3", + "clutter/melons4", + "clutter/melons5", + "clutter/melons6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "biomeStyle": {"style": "SIMPLEX"}, diff --git a/biomes/temperate/lush-plains.json b/biomes/temperate/lush-plains.json index dc7e4ecd..9b929a23 100644 --- a/biomes/temperate/lush-plains.json +++ b/biomes/temperate/lush-plains.json @@ -218,7 +218,33 @@ "structures/landstone5", "clutter/statue-villager-plains" ] - + }, + { + "chance": 0.004, + "mode": "PAINT", + "place": [ + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6", + "clutter/melons1", + "clutter/melons2", + "clutter/melons3", + "clutter/melons4", + "clutter/melons5", + "clutter/melons6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "biomeStyle": {"style": "SIMPLEX"}, diff --git a/biomes/temperate/oak-denmyre.json b/biomes/temperate/oak-denmyre.json index e1f91fd1..a3a6f0d6 100644 --- a/biomes/temperate/oak-denmyre.json +++ b/biomes/temperate/oak-denmyre.json @@ -190,6 +190,27 @@ "max": 360 } } + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "wall": { diff --git a/biomes/temperate/oak-forest.json b/biomes/temperate/oak-forest.json index 0f4c5d74..a2b4d66e 100644 --- a/biomes/temperate/oak-forest.json +++ b/biomes/temperate/oak-forest.json @@ -219,6 +219,27 @@ "y": -5, "z": 0 } + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "entityInitialSpawns": [ diff --git a/biomes/temperate/plains.json b/biomes/temperate/plains.json index 08cb150c..4fd1af6e 100644 --- a/biomes/temperate/plains.json +++ b/biomes/temperate/plains.json @@ -292,7 +292,13 @@ }, { "place": [ - "clutter/statue-villager-plains" + "clutter/statue-villager-plains", + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6" ], "chance": 0.008, "mode": "MIN_HEIGHT", diff --git a/biomes/temperate/sakura-pink-child.json b/biomes/temperate/sakura-pink-child.json index 55d34b0a..68f96fc3 100644 --- a/biomes/temperate/sakura-pink-child.json +++ b/biomes/temperate/sakura-pink-child.json @@ -164,6 +164,27 @@ "clutter/literalgarbage3", "clutter/literalgarbage4" ] + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "biomeZoom": 60, diff --git a/biomes/temperate/sakura-pink-forest.json b/biomes/temperate/sakura-pink-forest.json index 8fa52b2d..b33bc773 100644 --- a/biomes/temperate/sakura-pink-forest.json +++ b/biomes/temperate/sakura-pink-forest.json @@ -186,6 +186,27 @@ "clutter/literalgarbage3", "clutter/literalgarbage4" ] + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "biomeZoom": 60, diff --git a/biomes/temperate/wilds.json b/biomes/temperate/wilds.json index 25576dab..e74d2e2d 100644 --- a/biomes/temperate/wilds.json +++ b/biomes/temperate/wilds.json @@ -135,6 +135,27 @@ "clutter/camp1", "clutter/bincluster1" ] + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "layers": [ diff --git a/biomes/tropical/bamboo-forest.json b/biomes/tropical/bamboo-forest.json index c4cacb67..5b447b12 100644 --- a/biomes/tropical/bamboo-forest.json +++ b/biomes/tropical/bamboo-forest.json @@ -171,6 +171,27 @@ "y": -2, "z": 0 } + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/melons1", + "clutter/melons2", + "clutter/melons3", + "clutter/melons4", + "clutter/melons5", + "clutter/melons6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "biomeZoom": 10, diff --git a/biomes/tropical/mountain-extreme.json b/biomes/tropical/mountain-extreme.json index 8b9df0d0..ea63bb33 100644 --- a/biomes/tropical/mountain-extreme.json +++ b/biomes/tropical/mountain-extreme.json @@ -158,6 +158,33 @@ } }, "translate": {"y": -2} + }, + { + "chance": 0.004, + "mode": "PAINT", + "place": [ + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6", + "clutter/melons1", + "clutter/melons2", + "clutter/melons3", + "clutter/melons4", + "clutter/melons5", + "clutter/melons6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ] } diff --git a/biomes/tropical/mountain-middle.json b/biomes/tropical/mountain-middle.json index 83a1341c..eea59fca 100644 --- a/biomes/tropical/mountain-middle.json +++ b/biomes/tropical/mountain-middle.json @@ -141,6 +141,27 @@ } }, "translate": {"y": -2} + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/melons1", + "clutter/melons2", + "clutter/melons3", + "clutter/melons4", + "clutter/melons5", + "clutter/melons6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ] } diff --git a/biomes/tropical/mountain-plains.json b/biomes/tropical/mountain-plains.json index 813714d0..fa241bfb 100644 --- a/biomes/tropical/mountain-plains.json +++ b/biomes/tropical/mountain-plains.json @@ -171,6 +171,27 @@ } }, "translate": {"y": -2} + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/melons1", + "clutter/melons2", + "clutter/melons3", + "clutter/melons4", + "clutter/melons5", + "clutter/melons6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ] } diff --git a/biomes/tropical/mountain.json b/biomes/tropical/mountain.json index 9dd7eb3e..25b53c14 100644 --- a/biomes/tropical/mountain.json +++ b/biomes/tropical/mountain.json @@ -146,6 +146,27 @@ } }, "translate": {"y": -2} + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/melons1", + "clutter/melons2", + "clutter/melons3", + "clutter/melons4", + "clutter/melons5", + "clutter/melons6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "biomeZoom": 30, diff --git a/biomes/tropical/plains-hills.json b/biomes/tropical/plains-hills.json index 3265c2f7..0bd3a5bf 100644 --- a/biomes/tropical/plains-hills.json +++ b/biomes/tropical/plains-hills.json @@ -147,6 +147,27 @@ } }, "translate": {"y": -2} + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/melons1", + "clutter/melons2", + "clutter/melons3", + "clutter/melons4", + "clutter/melons5", + "clutter/melons6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ] } diff --git a/biomes/tropical/plains.json b/biomes/tropical/plains.json index 4a0b3c09..2152d7c3 100644 --- a/biomes/tropical/plains.json +++ b/biomes/tropical/plains.json @@ -145,6 +145,27 @@ } }, "translate": {"y": -2} + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/melons1", + "clutter/melons2", + "clutter/melons3", + "clutter/melons4", + "clutter/melons5", + "clutter/melons6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ] } diff --git a/biomes/tropical/rainforest-hills.json b/biomes/tropical/rainforest-hills.json index cedfba1a..a528330a 100644 --- a/biomes/tropical/rainforest-hills.json +++ b/biomes/tropical/rainforest-hills.json @@ -242,6 +242,27 @@ "y": -11, "z": 0 } + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/melons1", + "clutter/melons2", + "clutter/melons3", + "clutter/melons4", + "clutter/melons5", + "clutter/melons6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "wall": { diff --git a/biomes/tropical/rainforest-island.json b/biomes/tropical/rainforest-island.json index 0b625cf4..106026cf 100644 --- a/biomes/tropical/rainforest-island.json +++ b/biomes/tropical/rainforest-island.json @@ -237,6 +237,27 @@ "y": -12, "z": 0 } + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/melons1", + "clutter/melons2", + "clutter/melons3", + "clutter/melons4", + "clutter/melons5", + "clutter/melons6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "wall": { diff --git a/biomes/tropical/rainforest-wicked-child.json b/biomes/tropical/rainforest-wicked-child.json index 4b421eeb..bdd21146 100644 --- a/biomes/tropical/rainforest-wicked-child.json +++ b/biomes/tropical/rainforest-wicked-child.json @@ -246,6 +246,27 @@ "y": -12, "z": 0 } + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/melons1", + "clutter/melons2", + "clutter/melons3", + "clutter/melons4", + "clutter/melons5", + "clutter/melons6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "wall": { diff --git a/biomes/tropical/rainforest-wicked.json b/biomes/tropical/rainforest-wicked.json index 4a9e8f26..432d8d71 100644 --- a/biomes/tropical/rainforest-wicked.json +++ b/biomes/tropical/rainforest-wicked.json @@ -237,6 +237,27 @@ "y": -12, "z": 0 } + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/melons1", + "clutter/melons2", + "clutter/melons3", + "clutter/melons4", + "clutter/melons5", + "clutter/melons6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "wall": { diff --git a/biomes/tropical/rainforest.json b/biomes/tropical/rainforest.json index 7759efae..801bd7a7 100644 --- a/biomes/tropical/rainforest.json +++ b/biomes/tropical/rainforest.json @@ -248,6 +248,27 @@ "y": -12, "z": 0 } + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/melons1", + "clutter/melons2", + "clutter/melons3", + "clutter/melons4", + "clutter/melons5", + "clutter/melons6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "wall": { diff --git a/biomes/tundra/autumn.json b/biomes/tundra/autumn.json index 7a2231fa..c99368da 100644 --- a/biomes/tundra/autumn.json +++ b/biomes/tundra/autumn.json @@ -467,6 +467,27 @@ } ], "mode": "VACUUM" + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "entityInitialSpawns": [ diff --git a/biomes/tundra/forest-cliffs.json b/biomes/tundra/forest-cliffs.json index 6d4f0a92..0baa4701 100644 --- a/biomes/tundra/forest-cliffs.json +++ b/biomes/tundra/forest-cliffs.json @@ -246,6 +246,27 @@ "trees/spruce/pine11", "trees/spruce/pine12" ] + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "biomeZoom": 30, diff --git a/biomes/tundra/forest.json b/biomes/tundra/forest.json index 04f43a09..cbfd7fda 100644 --- a/biomes/tundra/forest.json +++ b/biomes/tundra/forest.json @@ -60,6 +60,50 @@ ] } ], + "decorators": [ + { + "chance": 0.01, + "variance": {"style": "STATIC"}, + "zoom": 0.1, + "palette": [ + {"block": "white_tulip"}, + {"block": "blue_orchid"}, + {"block": "poppy"} + ], + "style": {"style": "STATIC"} + }, + { + "chance": 0.001, + "variance": {"style": "STATIC"}, + "zoom": 0.3, + "palette": [ + { + "data": {"age": 0}, + "block": "sweet_berry_bush" + }, + { + "data": {"age": 1}, + "block": "sweet_berry_bush" + }, + { + "data": {"age": 2}, + "block": "sweet_berry_bush" + }, + { + "data": {"age": 3}, + "block": "sweet_berry_bush" + } + ], + "style": {"style": "STATIC"} + }, + { + "chance": 0.2, + "variance": {"style": "STATIC"}, + "zoom": 0.3, + "palette": [{"block": "grass"}], + "style": {"style": "STATIC"} + } + ], "objects": [ { "place": [ @@ -140,54 +184,31 @@ "trees/spruce/pine11", "trees/spruce/pine12" ] + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "biomeZoom": 30, "biomeStyle": {"style": "SIMPLEX"}, - "decorators": [ - { - "chance": 0.01, - "variance": {"style": "STATIC"}, - "zoom": 0.1, - "palette": [ - {"block": "white_tulip"}, - {"block": "blue_orchid"}, - {"block": "poppy"} - ], - "style": {"style": "STATIC"} - }, - { - "chance": 0.001, - "variance": {"style": "STATIC"}, - "zoom": 0.3, - "palette": [ - { - "data": {"age": 0}, - "block": "sweet_berry_bush" - }, - { - "data": {"age": 1}, - "block": "sweet_berry_bush" - }, - { - "data": {"age": 2}, - "block": "sweet_berry_bush" - }, - { - "data": {"age": 3}, - "block": "sweet_berry_bush" - } - ], - "style": {"style": "STATIC"} - }, - { - "chance": 0.2, - "variance": {"style": "STATIC"}, - "zoom": 0.3, - "palette": [{"block": "grass"}], - "style": {"style": "STATIC"} - } - ], "childShrinkFactor": 8, "wall": { "style": {"style": "STATIC"}, diff --git a/biomes/tundra/mountains.json b/biomes/tundra/mountains.json index 5e4b2426..68e5324f 100644 --- a/biomes/tundra/mountains.json +++ b/biomes/tundra/mountains.json @@ -144,6 +144,27 @@ "trees/spruce/pine11", "trees/spruce/pine12" ] + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "biomeZoom": 30, diff --git a/biomes/tundra/redwood-cliffs.json b/biomes/tundra/redwood-cliffs.json index b6562a82..94512bb2 100644 --- a/biomes/tundra/redwood-cliffs.json +++ b/biomes/tundra/redwood-cliffs.json @@ -59,12 +59,11 @@ } ], "wall": { - "style": {"style": "FRACTAL_WATER"}, "palette": [ - {"block": "diorite"}, - {"block": "diorite"}, + {"block": "coarse_dirt"}, + {"block": "dirt"}, {"block": "stone"}, - {"block": "stone"} + {"block": "dirt"} ] }, "decorators": [ diff --git a/biomes/tundra/redwood-forest.json b/biomes/tundra/redwood-forest.json index 5b119c26..635ff364 100644 --- a/biomes/tundra/redwood-forest.json +++ b/biomes/tundra/redwood-forest.json @@ -63,12 +63,11 @@ } ], "wall": { - "style": {"style": "FRACTAL_WATER"}, "palette": [ - {"block": "diorite"}, - {"block": "diorite"}, + {"block": "coarse_dirt"}, + {"block": "dirt"}, {"block": "stone"}, - {"block": "stone"} + {"block": "dirt"} ] }, "decorators": [ diff --git a/biomes/tundra/sequia-redwoods.json b/biomes/tundra/sequia-redwoods.json index 1c95628c..d0cd49ec 100644 --- a/biomes/tundra/sequia-redwoods.json +++ b/biomes/tundra/sequia-redwoods.json @@ -291,6 +291,27 @@ "clutter/stump6" ], "mode": "VACUUM" + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "wall": { diff --git a/biomes/tundra/spruce-denmyre.json b/biomes/tundra/spruce-denmyre.json index 04f5a397..ecd44353 100644 --- a/biomes/tundra/spruce-denmyre.json +++ b/biomes/tundra/spruce-denmyre.json @@ -236,6 +236,27 @@ "y": -1, "z": 0 } + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "wall": { diff --git a/biomes/tundra/taiga.json b/biomes/tundra/taiga.json index 587564b4..70cd085b 100644 --- a/biomes/tundra/taiga.json +++ b/biomes/tundra/taiga.json @@ -273,6 +273,27 @@ "y": -1, "z": 0 } + }, + { + "chance": 0.008, + "mode": "PAINT", + "place": [ + "clutter/pumpkins1", + "clutter/pumpkins2", + "clutter/pumpkins3", + "clutter/pumpkins4", + "clutter/pumpkins5", + "clutter/pumpkins6" + ], + "rotation": { + "enabled": true, + "yAxis": { + "enabled": true, + "max": 360, + "min": 0, + "interval": 90 + } + } } ], "wall": { diff --git a/objects/clutter/melons1.iob b/objects/clutter/melons1.iob new file mode 100644 index 0000000000000000000000000000000000000000..b5ff7dc5243dfd4933ff2021957c3ad889067861 GIT binary patch literal 117 zcmZQzVBlb2U|@~ literal 0 HcmV?d00001 diff --git a/objects/clutter/melons2.iob b/objects/clutter/melons2.iob new file mode 100644 index 0000000000000000000000000000000000000000..692e5ab912cd46af9cf9eb131592d96b25813680 GIT binary patch literal 101 zcmZQzU|?flU|Ky0`i6How#flL5Sg%zm) literal 0 HcmV?d00001 diff --git a/objects/clutter/melons3.iob b/objects/clutter/melons3.iob new file mode 100644 index 0000000000000000000000000000000000000000..5755f65cfce96cf3596e121f99832a5366d99409 GIT binary patch literal 125 zcmZQzU|?rpU|nROh7(R3=DwAfaL!Fge606Y^BssI20 literal 0 HcmV?d00001 diff --git a/objects/clutter/melons6.iob b/objects/clutter/melons6.iob new file mode 100644 index 0000000000000000000000000000000000000000..23d5fc4c8baa4c95c6a758e264c915ba211004ca GIT binary patch literal 93 zcmZQzU|?rpU|D#Fq;X;hhZQS089W8t^fc4 literal 0 HcmV?d00001 diff --git a/objects/clutter/pumpkins1.iob b/objects/clutter/pumpkins1.iob new file mode 100644 index 0000000000000000000000000000000000000000..b173bbe582c190eaea00c805eb472cd38a50e28d GIT binary patch literal 119 zcmZQzVBlb2U|8QcFq f3=IGO16e=-qT%d+K=xlC2GR^nKnyYzL<0c;-oO}< literal 0 HcmV?d00001 diff --git a/objects/clutter/pumpkins3.iob b/objects/clutter/pumpkins3.iob new file mode 100644 index 0000000000000000000000000000000000000000..a2b6b8b894d95f6461e01f225232e9d75cfa5125 GIT binary patch literal 127 zcmZQzVBlb2U|87B}k m{QnQZAT|RNm}L0>7bx}*$YzGpKyi>57=YMNIgmUU11SK9v>2fP literal 0 HcmV?d00001 diff --git a/objects/clutter/pumpkins4.iob b/objects/clutter/pumpkins4.iob new file mode 100644 index 0000000000000000000000000000000000000000..e85fa7f76da82cb8fa0d0e8619cf7ed191f44fdb GIT binary patch literal 103 zcmZQzU|?rpU|8QcGV e3=IGO16j;K3<69*K2Qt{fCho&{{Mwwm>K|BvKE#A literal 0 HcmV?d00001 diff --git a/objects/clutter/pumpkins5.iob b/objects/clutter/pumpkins5.iob new file mode 100644 index 0000000000000000000000000000000000000000..d12b6ee31c0aec048d4d8eca7d672c0548fa51de GIT binary patch literal 95 zcmZQzU|?flU|8SDRl aKoSI)Ak_cA3=Ci~pdtVNK*SiBAv6GeSQ3>0 literal 0 HcmV?d00001 diff --git a/objects/clutter/pumpkins6.iob b/objects/clutter/pumpkins6.iob new file mode 100644 index 0000000000000000000000000000000000000000..7b9996a585b10d21c955fdfd1f9ab8a02a305586 GIT binary patch literal 95 zcmZQzU|?rpU|8SDSQ aKoSI)85sWm1JXdvATcnT3CM?GAQJ$MLlT() literal 0 HcmV?d00001 From ade6438334d58d73e104806a860dc12061aaa6d9 Mon Sep 17 00:00:00 2001 From: CocoTheOwner Date: Sun, 25 Jul 2021 15:11:46 +0200 Subject: [PATCH 09/25] Wandering trader on trader llama instead of horse --- entities/wanderingtrader.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entities/wanderingtrader.json b/entities/wanderingtrader.json index a8d924ff..7b61ede5 100644 --- a/entities/wanderingtrader.json +++ b/entities/wanderingtrader.json @@ -1,5 +1,5 @@ { - "type": "HORSE", + "type": "TRADER_LLAMA", "customName": "THE WANDERING HORSE", "passengers": [{ "type": "WANDERING_TRADER", From bea67d7a114b47b1f77dd1558280b688e3255950 Mon Sep 17 00:00:00 2001 From: CocoTheOwner Date: Sun, 25 Jul 2021 15:39:30 +0200 Subject: [PATCH 10/25] Auto stash before checking out "IrisDimensions/master" --- loot/hot-treasure.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/loot/hot-treasure.json b/loot/hot-treasure.json index 156c42a8..c4cd3346 100644 --- a/loot/hot-treasure.json +++ b/loot/hot-treasure.json @@ -43,15 +43,15 @@ ], "enchantments": [{ "enchantment": "SOUL_SPEED", - "maxLevel": 5, - "minLevel": 3 + "maxLevel": 2, + "minLevel": 1 }], "attributes": [ { "attribute": "GENERIC_MOVEMENT_SPEED", "operation": "ADD_NUMBER", - "maxAmount": 0.35, - "minAmount": 0.2, + "maxAmount": 0.2, + "minAmount": 0.1, "name": "SPUDD" }, { @@ -64,8 +64,8 @@ { "attribute": "GENERIC_MAX_HEALTH", "operation": "ADD_NUMBER", - "maxAmount": -7, - "minAmount": -5, + "maxAmount": -12, + "minAmount": -8, "name": "ATTAKK" }, { From 09502f9eb627ac954e7dd5fbe63f869579626c90 Mon Sep 17 00:00:00 2001 From: CocoTheOwner Date: Sun, 25 Jul 2021 15:40:47 +0200 Subject: [PATCH 11/25] ok --- loot/hot-treasure.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loot/hot-treasure.json b/loot/hot-treasure.json index c4cd3346..988efd80 100644 --- a/loot/hot-treasure.json +++ b/loot/hot-treasure.json @@ -43,7 +43,7 @@ ], "enchantments": [{ "enchantment": "SOUL_SPEED", - "maxLevel": 2, + "maxLevel": 4, "minLevel": 1 }], "attributes": [ From 889743a007e7e96b680e3f938e3a45917652dc25 Mon Sep 17 00:00:00 2001 From: CocoTheOwner Date: Sun, 25 Jul 2021 21:27:09 +0200 Subject: [PATCH 12/25] As requested. --- loot/hot-treasure.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/loot/hot-treasure.json b/loot/hot-treasure.json index 988efd80..b3f85708 100644 --- a/loot/hot-treasure.json +++ b/loot/hot-treasure.json @@ -43,8 +43,8 @@ ], "enchantments": [{ "enchantment": "SOUL_SPEED", - "maxLevel": 4, - "minLevel": 1 + "maxLevel": 3, + "minLevel": 2 }], "attributes": [ { @@ -64,8 +64,8 @@ { "attribute": "GENERIC_MAX_HEALTH", "operation": "ADD_NUMBER", - "maxAmount": -12, - "minAmount": -8, + "maxAmount": -8, + "minAmount": -4, "name": "ATTAKK" }, { From bd15e14b56611927c1da191192a66c5574f22a22 Mon Sep 17 00:00:00 2001 From: CocoTheOwner Date: Sun, 25 Jul 2021 21:42:32 +0200 Subject: [PATCH 13/25] Spawn dolphins in deep oceans --- biomes/ocean/deep.json | 8 ++++++++ entities/dolphin.json | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 entities/dolphin.json diff --git a/biomes/ocean/deep.json b/biomes/ocean/deep.json index 5fa65e20..59a61262 100644 --- a/biomes/ocean/deep.json +++ b/biomes/ocean/deep.json @@ -134,5 +134,13 @@ "structures/shipupsidedownbackhalfdegraded" ] } + ], + "entityInitialSpawns": [ + { + "entity": "dolphin", + "maxSpawns": 7, + "minSpawns": 4, + "rarity": 100 + } ] } diff --git a/entities/dolphin.json b/entities/dolphin.json new file mode 100644 index 00000000..fa9e2066 --- /dev/null +++ b/entities/dolphin.json @@ -0,0 +1,3 @@ +{ + "type": "DOLPHIN" +} \ No newline at end of file From 833ed02b130da7128ca2142dd49be483a98931ff Mon Sep 17 00:00:00 2001 From: Brian Neumann-Fopiano <29320316+NextdoorPsycho@users.noreply.github.com> Date: Sun, 25 Jul 2021 20:46:44 -0700 Subject: [PATCH 14/25] Lowered init spawns, as water animals already spawn properly --- biomes/ocean/deep.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/biomes/ocean/deep.json b/biomes/ocean/deep.json index 59a61262..0686905b 100644 --- a/biomes/ocean/deep.json +++ b/biomes/ocean/deep.json @@ -138,8 +138,8 @@ "entityInitialSpawns": [ { "entity": "dolphin", - "maxSpawns": 7, - "minSpawns": 4, + "maxSpawns": 5, + "minSpawns": 2, "rarity": 100 } ] From fb03e17e116dadac5ed2c9105ba1a4619d166a0b Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Wed, 28 Jul 2021 03:36:40 -0700 Subject: [PATCH 15/25] ddd --- dimensions/overworld.json | 12 +++++++++--- objects/trees/oak/truegeneric2.iob | Bin 39204 -> 6927 bytes regions/temperate.json | 14 ++++++++++++++ 3 files changed, 23 insertions(+), 3 deletions(-) diff --git a/dimensions/overworld.json b/dimensions/overworld.json index 94726fb7..352c5de4 100644 --- a/dimensions/overworld.json +++ b/dimensions/overworld.json @@ -9,9 +9,9 @@ "landChance": 0.69, "biomeZoom": 7, "continentalStyle": { - "style": "CELLULAR_HEIGHT_IRIS_DOUBLE", - "zoom": 12.925, - "exponent": 10.1 + "style": "NOWHERE_SUPERFRACTAL", + "zoom": 5, + "exponent": 7.5 }, "REGIONS": "Contains the list of regions and their placement style", "regionZoom": 7.35, @@ -38,6 +38,12 @@ "style": "NOWHERE_CELLULAR", "zoom": 5 }, + "TREE SETTINGS": "This is where you can change tree inheritance from saplings.", + "treeSettings": { + "enabled": true, + "mode": "FIRST" + }, + "SEAS": "Sea settings (for the biomes that are oceans).", "seaZoom": 1.25, "seaBiomeStyle": {"style": "FRACTAL_FBM_IRIS"}, diff --git a/objects/trees/oak/truegeneric2.iob b/objects/trees/oak/truegeneric2.iob index cd18f74e49f22d21a57935ffbfa3a1b2e3a4773b..4259d36b6d0a80aa5afa46c5d8da26d66441c6a4 100644 GIT binary patch literal 6927 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 OX*m%GnP;6&x95*}rcBiU diff --git a/regions/temperate.json b/regions/temperate.json index 1493f718..5c266bac 100644 --- a/regions/temperate.json +++ b/regions/temperate.json @@ -75,6 +75,20 @@ "varience": 4 }], "objects": [ + { + "chance": 0, + "mode": "MIN_HEIGHT", + "rotation": {"enabled": true, "yAxis": {"enabled": true, "interval":90, "max": 360, "min": 0}}, + "trees": [ {"sizes": [ {"depth": 1, "width": 1} ], "treeTypes": ["TREE"]}], + "translate": {"y": 7}, + "place": [ + "trees/oak/truegeneric1", + "trees/oak/truegeneric2", + "trees/oak/truegeneric3", + "trees/oak/truegeneric4", + "trees/oak/truegeneric5" + ] + }, { "heightmap": { "seed": 1337, From fac81a446f73a9531c192057bee888c5885969d8 Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Wed, 28 Jul 2021 17:39:36 -0700 Subject: [PATCH 16/25] ReForest the Forest --- biomes/temperate/highlands.json | 2 +- biomes/temperate/oak-forest.json | 49 +++++++++++++++----------------- dimensions/overworld.json | 6 ++-- 3 files changed, 26 insertions(+), 31 deletions(-) diff --git a/biomes/temperate/highlands.json b/biomes/temperate/highlands.json index a0367bf7..459b922b 100644 --- a/biomes/temperate/highlands.json +++ b/biomes/temperate/highlands.json @@ -116,7 +116,7 @@ } ], "objects": [{ - "chance": 0.35, + "chance": 0.5, "density": 2, "rotation": { "yAxis": { diff --git a/biomes/temperate/oak-forest.json b/biomes/temperate/oak-forest.json index a2b4d66e..7e3674b1 100644 --- a/biomes/temperate/oak-forest.json +++ b/biomes/temperate/oak-forest.json @@ -125,16 +125,6 @@ "objects": [ { "place": [ - "clutter/boulder1", - "clutter/boulder2", - "clutter/boulder3", - "clutter/boulder4", - "clutter/boulder5", - "clutter/boulder6", - "clutter/boulder7", - "clutter/boulder8", - "clutter/boulder9", - "clutter/boulder10", "trees/oak/hoakgeneric1", "trees/oak/hoakgeneric2", "trees/oak/hoakgeneric3", @@ -155,9 +145,18 @@ "trees/oak/toak8", "trees/oak/toak9", "trees/oak/toak10", - "trees/oak/toak11" + "trees/oak/toak11", + "trees/oak/generic1", + "trees/oak/generic2", + "trees/oak/generic3", + "trees/oak/generic4", + "trees/oak/generic5", + "trees/oak/generic6", + "clutter/sbush1", + "clutter/sbush2", + "clutter/sbush3" ], - "chance": 0.3, + "chance": 0.9, "rotation": { "enabled": true, "yAxis": { @@ -175,17 +174,18 @@ }, { "place": [ - "trees/oak/generic1", - "trees/oak/generic2", - "trees/oak/generic3", - "trees/oak/generic4", - "trees/oak/generic5", - "trees/oak/generic6", - "clutter/sbush1", - "clutter/sbush2", - "clutter/sbush3" + "clutter/boulder1", + "clutter/boulder2", + "clutter/boulder3", + "clutter/boulder4", + "clutter/boulder5", + "clutter/boulder6", + "clutter/boulder7", + "clutter/boulder8", + "clutter/boulder9", + "clutter/boulder10" ], - "chance": 0.6, + "chance": 0.01, "rotation": { "enabled": true, "yAxis": { @@ -197,7 +197,7 @@ } }, { - "chance": 2.0E-7, + "chance": 0.001, "mode": "MIN_HEIGHT", "rotation": { "yAxis": { @@ -209,9 +209,6 @@ "enabled": true }, "place": [ - "void/void", - "void/void", - "void/void", "trees/mixed/smoakog80" ], "translate": { diff --git a/dimensions/overworld.json b/dimensions/overworld.json index 352c5de4..590933e9 100644 --- a/dimensions/overworld.json +++ b/dimensions/overworld.json @@ -26,10 +26,10 @@ "tundra" ], "regionStyle": { - "style": "NOWHERE_CELLULAR", + "style": "CELLULAR", "fracture": { "style": "NOWHERE", - "zoom": 0.115, + "zoom": 2, "multiplier": 16 }, "zoom": 1 @@ -347,11 +347,9 @@ "style": "CELLULAR", "fracture": { "multiplier": 18, - "maxFractureAccuracy": true, "style": "FRACTAL_WATER", "zoom": 0.255, "fracture": { - "maxFractureAccuracy": true, "style": "STATIC", "multiplier": 4 } From d716de397e089901c2a46b545be64840bf48f6c7 Mon Sep 17 00:00:00 2001 From: Daniel Mills Date: Wed, 28 Jul 2021 20:42:32 -0400 Subject: [PATCH 17/25] Remove overlay noise --- dimensions/overworld.json | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/dimensions/overworld.json b/dimensions/overworld.json index 352c5de4..17835ebc 100644 --- a/dimensions/overworld.json +++ b/dimensions/overworld.json @@ -356,23 +356,5 @@ "multiplier": 4 } } - }, - "overlayNoise": [ - { - "min": 0, - "max": 6, - "generator": { - "style": "FRACTAL_WATER", - "zoom": 8 - } - }, - { - "min": 0, - "max": 6, - "generator": { - "style": "IRIS_DOUBLE", - "zoom": 1.1 - } - } - ] + } } From b89aa8640bc055410e5bbf4e4ed18205c7f65475 Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Wed, 28 Jul 2021 17:45:16 -0700 Subject: [PATCH 18/25] Changing Sakura Disper --- biomes/temperate/birch-thin.json | 2 +- biomes/temperate/combo-forest.json | 2 +- biomes/temperate/flower-forest.json | 2 +- biomes/temperate/longtree-forest.json | 2 +- biomes/temperate/lush-plains-red.json | 2 +- biomes/temperate/lush-plains-yellow.json | 2 +- biomes/temperate/lush-plains.json | 2 +- biomes/temperate/oak-denmyre.json | 2 +- biomes/temperate/sakura-pink-child.json | 264 ----------------------- biomes/temperate/sakura-pink-forest.json | 19 +- 10 files changed, 18 insertions(+), 281 deletions(-) delete mode 100644 biomes/temperate/sakura-pink-child.json diff --git a/biomes/temperate/birch-thin.json b/biomes/temperate/birch-thin.json index 75a442c2..600e8655 100644 --- a/biomes/temperate/birch-thin.json +++ b/biomes/temperate/birch-thin.json @@ -3,7 +3,7 @@ "derivative": "BIRCH_FOREST", "vanillaDerivative": "BIRCH_FOREST", "color": "#e3fa93", - "rarity": 4, + "rarity": 2, "generators": [{ "min": 5, "max": 15, diff --git a/biomes/temperate/combo-forest.json b/biomes/temperate/combo-forest.json index 052e4ef6..8b01e466 100644 --- a/biomes/temperate/combo-forest.json +++ b/biomes/temperate/combo-forest.json @@ -8,7 +8,7 @@ "max": 12, "generator": "plain" }], - "rarity": 3, + "rarity": 2, "biomeZoom": 50, "layers": [ { diff --git a/biomes/temperate/flower-forest.json b/biomes/temperate/flower-forest.json index 588d18e0..5b31b383 100644 --- a/biomes/temperate/flower-forest.json +++ b/biomes/temperate/flower-forest.json @@ -1,7 +1,7 @@ { "name": "Temperate Flower Forest", "derivative": "FLOWER_FOREST", - "rarity": 6, + "rarity": 3, "color": "#C4CF30", "vanillaDerivative": "FLOWER_FOREST", "generators": [{ diff --git a/biomes/temperate/longtree-forest.json b/biomes/temperate/longtree-forest.json index 7e20f385..45165491 100644 --- a/biomes/temperate/longtree-forest.json +++ b/biomes/temperate/longtree-forest.json @@ -1,6 +1,6 @@ { "vanillaDerivative": "FOREST", - "rarity": 5, + "rarity": 3, "color": "#9B9F60", "name": "Long tree forest", "effects": [{ diff --git a/biomes/temperate/lush-plains-red.json b/biomes/temperate/lush-plains-red.json index 01848a3b..3e2bb614 100644 --- a/biomes/temperate/lush-plains-red.json +++ b/biomes/temperate/lush-plains-red.json @@ -3,7 +3,7 @@ "derivative": "FLOWER_FOREST", "vanillaDerivative": "FLOWER_FOREST", "color": "#de3535", - "rarity": 5, + "rarity": 3, "generators": [{ "min": 4, "max": 7, diff --git a/biomes/temperate/lush-plains-yellow.json b/biomes/temperate/lush-plains-yellow.json index 0fbbf6dc..4a4d458b 100644 --- a/biomes/temperate/lush-plains-yellow.json +++ b/biomes/temperate/lush-plains-yellow.json @@ -3,7 +3,7 @@ "derivative": "FLOWER_FOREST", "vanillaDerivative": "FLOWER_FOREST", "color": "#d8e310", - "rarity": 5, + "rarity": 3, "generators": [{ "min": 4, "max": 7, diff --git a/biomes/temperate/lush-plains.json b/biomes/temperate/lush-plains.json index 9b929a23..2add643f 100644 --- a/biomes/temperate/lush-plains.json +++ b/biomes/temperate/lush-plains.json @@ -8,7 +8,7 @@ "max": 7, "generator": "plain" }], - "rarity": 3, + "rarity": 2, "biomeZoom": 30, "children": [ "temperate/lush-plains-yellow", diff --git a/biomes/temperate/oak-denmyre.json b/biomes/temperate/oak-denmyre.json index a3a6f0d6..a93177ad 100644 --- a/biomes/temperate/oak-denmyre.json +++ b/biomes/temperate/oak-denmyre.json @@ -1,6 +1,6 @@ { "name": "Oak Denmyre", - "rarity": 6, + "rarity": 4, "color": "#C8FF00", "derivative": "FOREST", "vanillaDerivative": "FOREST", diff --git a/biomes/temperate/sakura-pink-child.json b/biomes/temperate/sakura-pink-child.json deleted file mode 100644 index 68f96fc3..00000000 --- a/biomes/temperate/sakura-pink-child.json +++ /dev/null @@ -1,264 +0,0 @@ -{ - "name": "Temperate Sakura Child Forest", - "rarity": 4, - "color": "#EE96F4", - "derivative": "FLOWER_FOREST", - "vanillaDerivative": "FOREST", - "customDerivitives": [{ - "id": "sakura_child_forest", - "foliageColor": "#AE42C9", - "waterColor": "#A5FFED", - "grassColor": "#83FF6C", - "category": "forest" - }], - "generators": [{ - "min": 4, - "max": 7, - "generator": "plain" - }], - "layers": [ - { - "style": {"style": "STATIC"}, - "palette": [{"block": "grass_block"}] - }, - {"palette": [{"block": "dirt"}]}, - { - "minHeight": 1, - "maxHeight": 3, - "palette": [ - {"block": "dirt"}, - {"block": "coarse_dirt"} - ] - }, - { - "minHeight": 6, - "maxHeight": 18, - "style": {"style": "STATIC"}, - "palette": [ - {"block": "stone"}, - {"block": "andesite"}, - {"block": "stone"} - ] - } - ], - "objects": [ - { - "chance": 0.1, - "rotation": { - "yAxis": { - "min": 0, - "max": 0, - "interval": 90, - "enabled": true - }, - "enabled": true - }, - "edit": [{ - "find": [{"block": "oak_wood"}], - "replace": {"palette": [{"block": "stripped_birch_log"}]} - }], - "place": [ - "trees/oak/hoakgeneric3", - "trees/oak/hoakgeneric4", - "trees/oak/hoakgeneric5", - "trees/oak/hoakgeneric6", - "trees/oak/hoakgeneric7", - "trees/oak/hoakgeneric8", - "trees/oak/hoakgeneric9", - "trees/oak/hoakgeneric1", - "trees/oak/shoakgeneric3", - "trees/oak/shoakgeneric4", - "trees/oak/shoakgeneric5", - "trees/oak/shoakgeneric6", - "trees/oak/shoakgeneric7", - "trees/oak/shoakgeneric8", - "trees/oak/shoakgeneric9", - "trees/oak/shoakgeneric1", - "trees/oak/shoakgeneric2" - ] - }, - { - "mode": "PAINT", - "chance": 0.00975, - "rotation": { - "yAxis": { - "min": 0, - "max": 0, - "interval": 90, - "enabled": true - }, - "enabled": true - }, - "place": [ - "clutter/camp1", - "clutter/camp4", - "clutter/camp5", - "clutter/camp3" - ] - }, - { - "chance": 0.7, - "mode": "FAST_MIN_HEIGHT", - "density": 2, - "rotation": { - "yAxis": { - "min": 0, - "max": 360, - "interval": 90, - "enabled": true - }, - "enabled": true - }, - "place": [ - "trees/sakura/genericsak1", - "trees/sakura/genericsak2", - "trees/sakura/genericsak3", - "trees/sakura/genericsak4", - "trees/sakura/genericsak5" - ], - "translate": { - "x": 0, - "y": -1, - "z": 0 - } - }, - { - "chance": 0.002, - "rotation": { - "yAxis": { - "min": 0, - "max": 0, - "interval": 90, - "enabled": true - }, - "enabled": true - }, - "place": [ - "clutter/obelisk1", - "clutter/obelisk2", - "clutter/obelisk3", - "clutter/obelisk4", - "clutter/obelisk5", - "clutter/obelisk6", - "clutter/obelisk7" - ] - }, - { - "chance": 0.001, - "rotation": { - "yAxis": { - "min": 0, - "max": 0, - "interval": 90, - "enabled": true - }, - "enabled": true - }, - "edit": [{ - "find": [{"block": "oak_wood"}], - "replace": {"palette": [{"block": "stripped_birch_log"}]} - }], - "place": [ - "clutter/literalgarbage1", - "clutter/literalgarbage2", - "clutter/literalgarbage3", - "clutter/literalgarbage4" - ] - }, - { - "chance": 0.008, - "mode": "PAINT", - "place": [ - "clutter/pumpkins1", - "clutter/pumpkins2", - "clutter/pumpkins3", - "clutter/pumpkins4", - "clutter/pumpkins5", - "clutter/pumpkins6" - ], - "rotation": { - "enabled": true, - "yAxis": { - "enabled": true, - "max": 360, - "min": 0, - "interval": 90 - } - } - } - ], - "biomeZoom": 60, - "biomeStyle": {"style": "SIMPLEX"}, - "decorators": [ - { - "chance": 0.8, - "variance": {"style": "STATIC"}, - "zoom": 0.2, - "palette": [ - { - "weight": 1, - "block": "grass" - }, - {"block": "grass"}, - {"block": "grass"}, - { - "chance": 7, - "block": "grass" - } - ] - }, - { - "chance": 0.03, - "variance": {"style": "STATIC"}, - "zoom": 0.2, - "palette": [{"block": "oak_leaves"}] - }, - { - "chance": 0.02, - "variance": {"style": "STATIC"}, - "zoom": 0.2, - "palette": [{"block": "tall_grass"}] - }, - { - "chance": 0.06, - "variance": {"style": "STATIC"}, - "zoom": 0.2, - "palette": [{"block": "allium"}] - }, - { - "chance": 0.03, - "variance": {"style": "STATIC"}, - "zoom": 0.2, - "palette": [{"block": "cobblestone_slab"}] - } - ], - "wall": { - "style": {"style": "STATIC"}, - "palette": [ - {"block": "stone"}, - {"block": "andesite"}, - {"block": "stone"} - ] - }, - "biomeScatter": ["FOREST"], - "entityInitialSpawns": [ - { - "entity": "sheep", - "minSpawns": 1, - "maxSpawns": 2, - "rarity": 10 - }, - { - "entity": "wolf", - "minSpawns": 2, - "maxSpawns": 5, - "rarity": 70 - }, - { - "entity": "fox", - "maxSpawns": 1, - "minSpawns": 3, - "rarity": 90 - } - ] -} diff --git a/biomes/temperate/sakura-pink-forest.json b/biomes/temperate/sakura-pink-forest.json index b33bc773..3c566ec4 100644 --- a/biomes/temperate/sakura-pink-forest.json +++ b/biomes/temperate/sakura-pink-forest.json @@ -4,18 +4,19 @@ "rarity": 4, "color": "#DF4FE8", "vanillaDerivative": "FOREST", - "children": ["temperate/sakura-pink-child"], - "childStyle": { - "style": "IRIS", - "zoom": 0.3, - "multiplier": 4 - }, "customDerivitives": [{ "id": "sakura_pink", "foliageColor": "#FFADF0", "waterColor": "#A5FFED", "grassColor": "#A8FF98", "category": "forest" + }, + { + "id": "sakura_child_forest", + "foliageColor": "#AE42C9", + "waterColor": "#A5FFED", + "grassColor": "#83FF6C", + "category": "forest" }], "generators": [{ "min": 4, @@ -69,7 +70,7 @@ ], "objects": [ { - "chance": 0.1, + "chance": 0.2, "rotation": { "yAxis": { "min": 0, @@ -105,7 +106,7 @@ }, { "mode": "PAINT", - "chance": 0.00975, + "chance": 0.008, "rotation": { "yAxis": { "min": 0, @@ -149,7 +150,7 @@ } }, { - "chance": 0.002, + "chance": 0.003, "rotation": { "yAxis": { "min": 0, From 5e423b83d004fbbb3716026b7eea88c9524a28f1 Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Wed, 28 Jul 2021 18:14:38 -0700 Subject: [PATCH 19/25] Coloring --- biomes/swamp/cambian-drift.json | 18 ++++-------------- biomes/temperate/longtree-forest.json | 6 ++++++ biomes/temperate/oak-forest.json | 19 ++++++++----------- biomes/temperate/sakura-pink-forest.json | 2 +- 4 files changed, 19 insertions(+), 26 deletions(-) diff --git a/biomes/swamp/cambian-drift.json b/biomes/swamp/cambian-drift.json index c9a1e5a7..ab2dd275 100644 --- a/biomes/swamp/cambian-drift.json +++ b/biomes/swamp/cambian-drift.json @@ -4,13 +4,13 @@ "rarity": 1, "color": "#489A20", "vanillaDerivative": "DARK_FOREST", - "children": ["swamp/sea/lake"], "generators": [{ - "min": -7, - "max": -3, - "generator": "plain" + "min": -3, + "max": 15, + "generator": "mountain" }], "customDerivitives": [{ + "category": "forest", "id": "swamp_cambian_drift", "waterColor": "#684D1A", "foliageColor": "2B4A00", @@ -55,16 +55,6 @@ ] } ], - "jigsawStructures": [ - { - "rarity": 1700, - "structure": "pillager_outpost" - }, - { - "rarity": 1000, - "structure": "village-tundra" - } - ], "decorators": [ { "chance": 0.03, diff --git a/biomes/temperate/longtree-forest.json b/biomes/temperate/longtree-forest.json index 45165491..7dcad400 100644 --- a/biomes/temperate/longtree-forest.json +++ b/biomes/temperate/longtree-forest.json @@ -13,6 +13,12 @@ "interval": 550, "particleCount": 3 }], + "customDerivitives": [{ + "id": "longtree_forest", + "foliageColor": "#58AB24", + "grassColor": "#4AB71C", + "category": "forest" + }], "jigsawStructures": [ { "rarity": 1000, diff --git a/biomes/temperate/oak-forest.json b/biomes/temperate/oak-forest.json index 7e3674b1..c709b436 100644 --- a/biomes/temperate/oak-forest.json +++ b/biomes/temperate/oak-forest.json @@ -13,6 +13,12 @@ "max": 40, "min": 0 }], + "customDerivitives": [{ + "id": "oak_forest", + "foliageColor": "#64B233", + "grassColor": "#48A620", + "category": "forest" + }], "rarity": 3, "jigsawStructures": [ { @@ -135,17 +141,7 @@ "trees/oak/shoakgeneric3", "trees/oak/shoakgeneric4", "trees/oak/shoakgeneric4", - "trees/oak/toak1", - "trees/oak/toak2", - "trees/oak/toak3", - "trees/oak/toak4", - "trees/oak/toak5", - "trees/oak/toak6", - "trees/oak/toak7", - "trees/oak/toak8", - "trees/oak/toak9", - "trees/oak/toak10", - "trees/oak/toak11", + "trees/oak/generic1", "trees/oak/generic2", "trees/oak/generic3", @@ -157,6 +153,7 @@ "clutter/sbush3" ], "chance": 0.9, + "density": 2, "rotation": { "enabled": true, "yAxis": { diff --git a/biomes/temperate/sakura-pink-forest.json b/biomes/temperate/sakura-pink-forest.json index 3c566ec4..8a3a5af7 100644 --- a/biomes/temperate/sakura-pink-forest.json +++ b/biomes/temperate/sakura-pink-forest.json @@ -214,7 +214,7 @@ "biomeStyle": {"style": "SIMPLEX"}, "decorators": [ { - "chance": 0.8, + "chance": 0.6, "variance": {"style": "STATIC"}, "zoom": 0.2, "palette": [ From e5f6f18599b76e3fa8b04cdbecb1f9274f32d330 Mon Sep 17 00:00:00 2001 From: Daniel Mills Date: Wed, 28 Jul 2021 21:21:32 -0400 Subject: [PATCH 20/25] Patch biome / region styles --- dimensions/overworld.json | 68 ++++++++++++++++++++------------------- 1 file changed, 35 insertions(+), 33 deletions(-) diff --git a/dimensions/overworld.json b/dimensions/overworld.json index 005ec5b3..e207c912 100644 --- a/dimensions/overworld.json +++ b/dimensions/overworld.json @@ -8,13 +8,8 @@ "continentZoom": 1, "landChance": 0.69, "biomeZoom": 7, - "continentalStyle": { - "style": "NOWHERE_SUPERFRACTAL", - "zoom": 5, - "exponent": 7.5 - }, "REGIONS": "Contains the list of regions and their placement style", - "regionZoom": 7.35, + "regionZoom": 6.35, "regions": [ "mushroom", "swamp", @@ -25,15 +20,6 @@ "frozen", "tundra" ], - "regionStyle": { - "style": "CELLULAR", - "fracture": { - "style": "NOWHERE", - "zoom": 2, - "multiplier": 16 - }, - "zoom": 1 - }, "islandBiomeChanceStyle": { "style": "NOWHERE_CELLULAR", "zoom": 5 @@ -49,14 +35,42 @@ "seaBiomeStyle": {"style": "FRACTAL_FBM_IRIS"}, "LAND": "Land settings (for the biomes that are non-ocean).", "landZoom": 3.2, + "regionStyle": { + "style": "NOWHERE_CELLULAR", + "fracture": { + "multiplier": 600, + "axialFracturing": true, + "style": "NOWHERE_CUBIC", + "zoom": 1.25, + "fracture": { + "style": "NOWHERE", + "axialFracturing": true, + "zoom": 0.1, + "multiplier": 24.8 + } + } + }, "landBiomeStyle": { "style": "NOWHERE_CELLULAR", "fracture": { - "style": "NOWHERE", - "zoom": 0.03, - "multiplier": 12 - }, - "zoom": 3 + "multiplier": 725, + "axialFracturing": true, + "style": "NOWHERE_CUBIC", + "zoom": 1.18, + "fracture": { + "style": "NOWHERE", + "axialFracturing": true, + "zoom": 0.1141, + "multiplier": 44.8 + } + } + }, + "shoreBiomeStyle": { + "style": "NOWHERE_CELLULAR" + }, + "continentalStyle": { + "style": "NOWHERE_CELLULAR", + "zoom": 5 }, "LOOT": "Contains a list of loot tables that are attempted to be applied to all chests that spawn.", "lootTries": 32, @@ -342,17 +356,5 @@ } ], "skylandBiomeStyle": {"style": "CELLULAR_IRIS_DOUBLE"}, - "islandBiomeStyle": {"style": "CELLULAR_IRIS_DOUBLE"}, - "shoreBiomeStyle": { - "style": "CELLULAR", - "fracture": { - "multiplier": 18, - "style": "FRACTAL_WATER", - "zoom": 0.255, - "fracture": { - "style": "STATIC", - "multiplier": 4 - } - } - } + "islandBiomeStyle": {"style": "CELLULAR_IRIS_DOUBLE"} } From eeade28438b90da1c5248d814d0bd9a13e130b16 Mon Sep 17 00:00:00 2001 From: Daniel Mills Date: Wed, 28 Jul 2021 21:23:56 -0400 Subject: [PATCH 21/25] Region rarities --- regions/hot.json | 2 +- regions/mushroom.json | 2 +- regions/swamp.json | 2 +- regions/temperate.json | 3 +-- regions/tropical.json | 2 +- 5 files changed, 5 insertions(+), 6 deletions(-) diff --git a/regions/hot.json b/regions/hot.json index 77ac666d..1ff8c166 100644 --- a/regions/hot.json +++ b/regions/hot.json @@ -268,5 +268,5 @@ ] }, "shoreHeightZoom": 1.14, - "rarity": 1 + "rarity": 2 } diff --git a/regions/mushroom.json b/regions/mushroom.json index 98493255..0e619623 100644 --- a/regions/mushroom.json +++ b/regions/mushroom.json @@ -151,5 +151,5 @@ ] }, "shoreHeightZoom": 1.14, - "rarity": 10 + "rarity": 7 } diff --git a/regions/swamp.json b/regions/swamp.json index 40253bc9..8b2624a2 100644 --- a/regions/swamp.json +++ b/regions/swamp.json @@ -153,5 +153,5 @@ {"block": "tall_grass"} ] }], - "rarity": 3 + "rarity": 4 } diff --git a/regions/temperate.json b/regions/temperate.json index 5c266bac..3733c885 100644 --- a/regions/temperate.json +++ b/regions/temperate.json @@ -195,6 +195,5 @@ ] }, "shoreHeightZoom": 1.14, - "riverThickness": 0.025, - "rarity": 1 + "riverThickness": 0.025 } diff --git a/regions/tropical.json b/regions/tropical.json index 75d0f636..f7181650 100644 --- a/regions/tropical.json +++ b/regions/tropical.json @@ -223,5 +223,5 @@ } ], "shoreHeightZoom": 2.14, - "rarity": 4 + "rarity": 3 } From 15683deca691d21a84dc0048a5f82dfb39b1b215 Mon Sep 17 00:00:00 2001 From: Daniel Mills Date: Wed, 28 Jul 2021 21:31:12 -0400 Subject: [PATCH 22/25] Fix zooms --- biomes/temperate/plateau.json | 12 +----------- dimensions/overworld.json | 4 ++-- 2 files changed, 3 insertions(+), 13 deletions(-) diff --git a/biomes/temperate/plateau.json b/biomes/temperate/plateau.json index 7d25c80c..69724edc 100644 --- a/biomes/temperate/plateau.json +++ b/biomes/temperate/plateau.json @@ -15,17 +15,7 @@ { "min": 25, "max": 37, - "generator": "canyon-steep" - }, - { - "min": 2, - "max": 3, - "generator": "smooth-dunes" - }, - { - "min": 2, - "max": 6, - "generator": "plain" + "generator": "small-cliffs" } ], "jigsawStructures": [ diff --git a/dimensions/overworld.json b/dimensions/overworld.json index e207c912..867b8c44 100644 --- a/dimensions/overworld.json +++ b/dimensions/overworld.json @@ -7,9 +7,9 @@ "CONTINENTS": "Continent settings containing placement of the continents.", "continentZoom": 1, "landChance": 0.69, - "biomeZoom": 7, + "biomeZoom": 4, "REGIONS": "Contains the list of regions and their placement style", - "regionZoom": 6.35, + "regionZoom": 6, "regions": [ "mushroom", "swamp", From a905d30adb0756d1a283d266561333bba4b6a51c Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Wed, 28 Jul 2021 20:18:14 -0700 Subject: [PATCH 23/25] Colors, And tropi ocean Fixes --- biomes/temperate/longtree-forest.json | 2 +- biomes/temperate/oak-forest.json | 2 +- biomes/tropical/sea/ocean.json | 3 +- dimensions/overworld.json | 41 ++++++++++++++------------- 4 files changed, 25 insertions(+), 23 deletions(-) diff --git a/biomes/temperate/longtree-forest.json b/biomes/temperate/longtree-forest.json index 7dcad400..03bd9e73 100644 --- a/biomes/temperate/longtree-forest.json +++ b/biomes/temperate/longtree-forest.json @@ -257,7 +257,7 @@ ], "objects": [ { - "chance": 0.7, + "chance": 0.5, "rotation": { "yAxis": { "min": 0, diff --git a/biomes/temperate/oak-forest.json b/biomes/temperate/oak-forest.json index c709b436..27314c2f 100644 --- a/biomes/temperate/oak-forest.json +++ b/biomes/temperate/oak-forest.json @@ -16,7 +16,7 @@ "customDerivitives": [{ "id": "oak_forest", "foliageColor": "#64B233", - "grassColor": "#48A620", + "grassColor": "#77A620", "category": "forest" }], "rarity": 3, diff --git a/biomes/tropical/sea/ocean.json b/biomes/tropical/sea/ocean.json index 95757e08..f1f882bb 100644 --- a/biomes/tropical/sea/ocean.json +++ b/biomes/tropical/sea/ocean.json @@ -5,8 +5,7 @@ "vanillaDerivative": "WARM_OCEAN", "children": [ "tropical/sea/coral-ocean", - "tropical/sea/coral-ocean-cliffs", - "tropical/rainforest-island" + "tropical/sea/coral-ocean-cliffs" ], "generators": [{ "min": -38, diff --git a/dimensions/overworld.json b/dimensions/overworld.json index 867b8c44..86437976 100644 --- a/dimensions/overworld.json +++ b/dimensions/overworld.json @@ -6,9 +6,29 @@ "fluidHeight": 63, "CONTINENTS": "Continent settings containing placement of the continents.", "continentZoom": 1, + "continentalStyle": { + "style": "NOWHERE_CELLULAR", + + "zoom": 5 + }, "landChance": 0.69, "biomeZoom": 4, "REGIONS": "Contains the list of regions and their placement style", + "regionStyle": { + "style": "CELLULAR_IRIS_DOUBLE", + "fracture": { + "multiplier": 600, + "axialFracturing": true, + "style": "NOWHERE_CUBIC", + "zoom": 1.25, + "fracture": { + "style": "NOWHERE", + "axialFracturing": true, + "zoom": 0.1, + "multiplier": 24.8 + } + } + }, "regionZoom": 6, "regions": [ "mushroom", @@ -35,21 +55,7 @@ "seaBiomeStyle": {"style": "FRACTAL_FBM_IRIS"}, "LAND": "Land settings (for the biomes that are non-ocean).", "landZoom": 3.2, - "regionStyle": { - "style": "NOWHERE_CELLULAR", - "fracture": { - "multiplier": 600, - "axialFracturing": true, - "style": "NOWHERE_CUBIC", - "zoom": 1.25, - "fracture": { - "style": "NOWHERE", - "axialFracturing": true, - "zoom": 0.1, - "multiplier": 24.8 - } - } - }, + "landBiomeStyle": { "style": "NOWHERE_CELLULAR", "fracture": { @@ -68,10 +74,7 @@ "shoreBiomeStyle": { "style": "NOWHERE_CELLULAR" }, - "continentalStyle": { - "style": "NOWHERE_CELLULAR", - "zoom": 5 - }, + "LOOT": "Contains a list of loot tables that are attempted to be applied to all chests that spawn.", "lootTries": 32, "loot": {"tables": [ From e09e312b044047853f56997c3ab3a27ae7238ec6 Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Wed, 28 Jul 2021 21:02:36 -0700 Subject: [PATCH 24/25] Frozen more variance --- biomes/frozen/pine-hills.json | 2 +- biomes/frozen/pine-plains.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/biomes/frozen/pine-hills.json b/biomes/frozen/pine-hills.json index 4d51a960..46438735 100644 --- a/biomes/frozen/pine-hills.json +++ b/biomes/frozen/pine-hills.json @@ -42,7 +42,7 @@ "grassColor": "#D0E1FF" }], "generators": [{ - "generator": "smooth-dunes", + "generator": "mountain", "max": 20, "min": 6 }], diff --git a/biomes/frozen/pine-plains.json b/biomes/frozen/pine-plains.json index a153536d..4dda3f09 100644 --- a/biomes/frozen/pine-plains.json +++ b/biomes/frozen/pine-plains.json @@ -111,7 +111,7 @@ "trees/spruce/pine8", "trees/spruce/pine9" ], - "chance": 0.09, + "chance": 0.2, "rotation": { "enabled": true, "yAxis": { From 1ffefea8a8b9144ecbe0665e4f09d8315414d6cb Mon Sep 17 00:00:00 2001 From: Brian Fopiano Date: Wed, 28 Jul 2021 21:04:00 -0700 Subject: [PATCH 25/25] Flower --- biomes/frozen/pine-plains.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/biomes/frozen/pine-plains.json b/biomes/frozen/pine-plains.json index 4dda3f09..2e6efbdb 100644 --- a/biomes/frozen/pine-plains.json +++ b/biomes/frozen/pine-plains.json @@ -81,7 +81,16 @@ }, {"block": "air"} ] - }], + }, + { + "chance": 0.01, + "variance": {"style": "STATIC"}, + "zoom": 0.01, + "palette": [ + {"block": "cornflower"} + ], + "style": {"style": "STATIC"} + }], "wall": {"palette": [ {"block": "stone"}, {"block": "andesite"}