diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4a28ce1d7..38782c362 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,8 +11,6 @@ concurrency: cancel-in-progress: true env: - RELEASE_TYPE: "alpha" - MINECRAFT_VERSION: "1.20.1" DEV_ENVIRONMENT: ${{ github.ref_name != 'main' }} jobs: @@ -24,6 +22,8 @@ jobs: project_name: ${{ steps.check.outputs.project_name }} project_full_name: ${{ steps.check.outputs.project_name }}-${{ steps.check.outputs.project_version }} changelog: ${{ steps.changelog.outputs.description }} + mc_version: ${{ steps.check.outputs.minecraft_version }} + release_type: ${{ steps.check.outputs.release_type }} diff: ${{ steps.read_diff.outputs.diff }} exists: ${{ steps.check.outputs.exists }} make_release: ${{ steps.check.outputs.make_release }} @@ -141,40 +141,39 @@ jobs: with: tag: ${{ steps.pakku_info.outputs.version }} - - name: 📝 Determine Version - id: determine_version - shell: bash - run: | - if ${{ env.DEV_ENVIRONMENT == 'true' }}; then - echo "version=unreleased" >> $GITHUB_OUTPUT - else - echo "version=${{ steps.pakku_info.outputs.version }}" >> $GITHUB_OUTPUT - fi + - name: 📄 Changelog Dev Parser + id: changelog_dev + if: ${{ env.DEV_ENVIRONMENT == 'true' }} + uses: coditory/changelog-parser@v1.0.2 + with: + path: CHANGELOG.md + version: "unreleased" + continue-on-error: true - name: 📄 Changelog Parser id: changelog uses: coditory/changelog-parser@v1.0.2 with: path: CHANGELOG.md - version: ${{ steps.determine_version.outputs.version }} continue-on-error: true - name: 🔍 Check id: check shell: bash run: | - echo "make_release=${{ steps.check_tag.outputs.exists == 'false' && env.DEV_ENVIRONMENT == 'false' }}" >> $GITHUB_OUTPUT + echo "make_release=${{ steps.check_tag.outputs.exists == false && env.DEV_ENVIRONMENT == false }}" >> $GITHUB_OUTPUT echo "exists=${{ steps.check_tag.outputs.exists }}" >> $GITHUB_OUTPUT - echo "project_name=${{ steps.pakku_info.outputs.name }}" >> $GITHUB_OUTPUT - echo "project_version=${{ steps.pakku_info.outputs.version }}" >> $GITHUB_OUTPUT - echo "release_type=${{ env.RELEASE_TYPE }}" >> $GITHUB_OUTPUT + MC_VERSIONS_JSON='${{ steps.pakku_lock_info.outputs.mc_versions }}' + MINECRAFT_VERSION=$(echo "$MC_VERSIONS_JSON" | jq -r '.[0]' | tr -d '[]"') + echo "minecraft_version=$MINECRAFT_VERSION" >> $GITHUB_OUTPUT - echo "minecraft_version=${{ steps.pakku_lock_info.outputs.mc_versions }}" >> $GITHUB_OUTPUT - - if ${{ env.DEV_ENVIRONMENT == 'true' && steps.changelog.outcome == 'failure' }}; then - echo "project_version=build_#${{ github.run_number }}" >> $GITHUB_OUTPUT - echo "release_type=Unreleased" >> $GITHUB_OUTPUT + if ${{ env.DEV_ENVIRONMENT == 'true' }}; then + echo "project_version=build_#${{ github.run_number }}" >> $GITHUB_OUTPUT + echo "release_type=Unreleased" >> $GITHUB_OUTPUT + else + echo "project_version=${{ steps.changelog.outputs.version }}" >> $GITHUB_OUTPUT + echo "release_type=${{ steps.pakku_info.outputs.release_type }}" >> $GITHUB_OUTPUT fi - name: 📄 Format diff @@ -201,7 +200,7 @@ jobs: 📃 **Make Release**: `${{ steps.check.outputs.make_release }}` - ${{ steps.changelog.outputs.description }} + ${{ steps.changelog_dev.outputs.description }} ${{ steps.format_diff.outputs.text }} @@ -219,7 +218,7 @@ jobs: set +e VERSION=${{ needs.info.outputs.project_version }} - sed -i -e "s/\"version\": \"[0-9.]*\"/\"version\": \"${VERSION}\"/g" pakku.json + sed -i -e "s/DEV/${VERSION}/g" pakku.json sed -i -e "s/DEV/${VERSION}/g" config/fancymenu/customization/gui_main_menu.txt - name: 📝 Cache pakku @@ -273,7 +272,7 @@ jobs: set +e VERSION=${{ needs.info.outputs.project_version }} - sed -i -e "s/\"version\": \"[0-9.]*\"/\"version\": \"${VERSION}\"/g" pakku.json + sed -i -e "s/DEV/${VERSION}/g" pakku.json sed -i -e "s/DEV/${VERSION}/g" config/fancymenu/customization/gui_main_menu.txt - name: 📝 Cache pakku @@ -419,7 +418,7 @@ jobs: ${{ needs.info.outputs.project_full_name }}-curseforge.zip ${{ needs.info.outputs.project_full_name }}-serverpack.zip ${{ needs.info.outputs.project_full_name }}-multimc.zip - prerelease: ${{ env.RELEASE_TYPE != 'release' }} + prerelease: ${{ needs.info.outputs.release_type != 'release' }} generate_release_notes: true token: ${{ secrets.GITHUB_TOKEN }} @@ -470,8 +469,8 @@ jobs: ${{ needs.info.outputs.changelog }} ${{ needs.info.outputs.diff }} changelog-format: markdown - game-version: ${{ env.MINECRAFT_VERSION }} - release-type: ${{ env.RELEASE_TYPE }} + game-version: ${{ needs.info.outputs.mc_version }} + release-type: ${{ needs.info.outputs.release_type }} release-modrinth: name: 🚀 Release to Modrinth @@ -516,10 +515,10 @@ jobs: modpack-server-path: ${{ needs.info.outputs.project_full_name }}-serverpack.zip changelog: ${{ needs.info.outputs.changelog }} changelog-format: markdown - game-version: ${{ env.MINECRAFT_VERSION }} + game-version: ${{ needs.info.outputs.mc_version }} display-name: ${{ needs.info.outputs.project_full_name }} server-display-name: ${{ needs.info.outputs.project_full_name }}-serverpack - release-type: ${{ env.RELEASE_TYPE }} + release-type: ${{ needs.info.outputs.release_type }} discord-message: name: 📱 Discord Message @@ -542,8 +541,8 @@ jobs: content_links_no_embed: .+ content: | **Release**: `${{ needs.info.outputs.project_version }}` - **Release Type**: `${{ env.RELEASE_TYPE }}` - **Game Version**: `${{ env.MINECRAFT_VERSION }}` + **Release Type**: `${{ needs.info.outputs.release_type }}` + **Game Version**: `${{ needs.info.outputs.mc_version }}` [CurseForge](https://www.curseforge.com/minecraft/modpacks/terrafirmagreg-modern/files/${{ needs.release-curseforge.outputs.id }}) • [GitHub](${{ needs.release-github.outputs.url }}) • [Issues](https://github.com/${{ github.repository }}/issues) ```markdown diff --git a/.gitignore b/.gitignore index f6a923275..4a335a0ed 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,7 @@ # Pakku build/ !.pakku/**/* +!pakku.jar # Configs config/jei/world/ @@ -47,6 +48,8 @@ config/voicechat/username-cache.json config/stellarcore_stitcher_cache_jei.dat config/stellarcore_stitcher_cache_vanilla.dat +!config/defaultoptions/options.txt + # .minecraft !bansoukou/**.zip @@ -114,4 +117,4 @@ icon.png .pakku/server-overrides/mods .pakku/server-overrides/user_jvm_args.txt -/tacz/tacz_default_gun +/tacz/tacz_default_gun diff --git a/CHANGELOG.md b/CHANGELOG.md index ebfb503b3..471bfcc38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,53 @@ # Changelog - ## [Unreleased] +### Changes + +## [0.10.1] - 19-07-2025 +### Changes +- Added harvest baskets to pick fruit from fruit trees and berry bushes (#1338) @Redeix +- Added ice soup @Pyritie +- Gave plants tag to bushes so they can be used for other things (#1338) @Redeix +- Allowed elytra's to be repaired regardless of damage (#1338) @Redeix +- Increased maximum range of rope/elevator pulleys to 400 blocks (#1347) @Pyritie +- Added Tier 2 Insulation: Alkaline Earth Silicate @BlueBoat29 +- Added tfc data to tacz guns and attachments (#1353) @Redeix +- Allowed "window" blocks and panes to be broken and picked up @BlueBoat29 +- Updated title and loading screens to be more memory efficient and hopefully look better on other resolutions. (#1381) @Redeix +- Changed Firmalife greenhouses to no longer allow any doors/trapdoors/pipes (#1363) @BlueBoat29 +- Thorium is now Pink (#1378) @Nebby1999 +### Bug fixes +- Fixed yeast food processor conflict (#1310) @Redeix +- Fixed seed oil voiding in barrels (#1310) @Redeix +- Fixed inconsistent item sizes for sunflower_product and rapeseed_product (#1310) @Redeix +- Fixed Radiator Fan uncraftable recipe (#1302) @TomPlop +- Fixed Fluid Solidifier Recipe Conflict for Snow (#1295) @TomPlop +- Fixed Steel engine crafting by using the GT Rotor (#1290) @TomPlop +- Change Electrical Greenhouse to not consome the input but lower the seed output @TomPlop +- Fixed the Autoclave recipe to make Rose Quartz at MV @TomPlop +- Fixed bug with Extruder Mold crafting (#1298) @BlueBoat29 +- Fixed texture issues found on some of the Extruder Mold textures @BlueBoat29 +- Added default GUI Scale (#1313) @Redeix +- Added Kelp and Seaweed drying to electric oven (#1315) @BlueBoat29 +- Added Nugget anvil recipe and 45-70 bullet assembler recipe @BlueBoat29 @Pyritie +- Fixed AFC wood stomping barrel recipes @BlueBoat29 +- Fixed rotten cheese in moon quest reward @Pyritie +- Fixed create + greate configs (#1300) @HiddenOwlllll1 @Pyritie +- Fixed blue steel diving suit looking like netherite (#1293) @Pyritie +- Fixed anthracite not working with blaze burners @Pyritie +- Fixed baked potato recipe missing from oven (#1338) @Redeix +- Fixed sea water barrel recipes (#1338) @Redeix +- Fixed Quests #1318 #1291 and finish other quests related stuffs @TomPlop +- Integrated Ad Astra wood types with tfc (#1346) @Redeix +- Fixed duplicate pizza dough recipe @Pyritie +- Unified Pressure Plate Recipes among mods @BlueBoat29 +- Fixed treated composite barrel recipe lang (#1353) @Redeix +- Fixed food processor jam recipe duping jars (#1353) @Redeix +- Fixed Ad Astra space suit quest mentioning oxygen instead of breathable gas (#1353) @Redeix +- Fixed flintlock not being craftable before LV (#1353) @Redeix +- Fixed the field guide not working for chinese players (#1356) @Pyritie +- Fixed glass blocks dropping with gem saw (#1367) @BlueBoat29 +- Fixed Hv Quest TNT #1373 @TomPlop +- Fixed Smooth Stone #1380 @TomPlop ## [0.10.0] - 13.07.2025 - [!WARNING] If you're upgrading your world from 0.9 to 0.10, please read the upgrade guide [here](https://github.com/TerraFirmaGreg-Team/Modpack-Modern/wiki/%5BEN%5D-Upgrading-from-0.9-to-0.10). We do not recommend using Alpha versions for progression, but if you do, please make frequent backups! @@ -8,9 +55,9 @@ - Build a rocket and blast off to the moon, a new dimension! You can get started in mid-HV. - AE2 inscriber presses are now found on the moon instead of being craftable, and making various AE2 components is also significantly cheaper there. @TomPlop & @Pyritie - Significant ore changes: certus quartz, raw aluminium, ilmenite, and some other mid-lategame materials have been moved from the overworld to the moon. Check your field guide for more information. @TomPlop -- A new system for interstellar item transport, made just for TerraFirmaGreg - new logistical problems to solve and automate. (Coming soon) @ofoxsmith -- New machines to properly automate food, along with proper compatibility between machines and TFC's food system, so you can't turn rotten grains into fresh bread any more. The electric greenhouse now also always outputs fresh food. @ofoxsmith & @Redeix -- New electric refrigerator with different tiers. You can craft the old one into this new one, but please take your food out of it before upgrading otherwise it will be lost! @ofoxsmith +- A new system for interstellar item transport, made just for TerraFirmaGreg - new logistical problems to solve and automate. (Coming soon) @gustovafing +- New machines to properly automate food, along with proper compatibility between machines and TFC's food system, so you can't turn rotten grains into fresh bread any more. The electric greenhouse now also always outputs fresh food. @gustovafing & @Redeix +- New electric refrigerator with different tiers. You can craft the old one into this new one, but please take your food out of it before upgrading otherwise it will be lost! @gustovafing - Added many new advanced food items including freeze-dried fruit, calorie paste, and meal bags. @Redeix - Quest updates for all of the above @TomPlop @Redeix @Pyritie - Main UI overhaul and curseforge branding updated @Redeix @@ -104,7 +151,7 @@ - Added wine-related recipes to GregTech machines (#1111) @JeanRdS - Added optional quest for bacon because its JEI recipe isn't clear (#1122) @SpicyNoodle5 - Anthracite now also superheats blaze burners @Pyritie -- Changed LV chem reactor quest to work with any container of rubber instead of just a rubber bucket (#1116) @ofoxsmith +- Changed LV chem reactor quest to work with any container of rubber instead of just a rubber bucket (#1116) @gustovafing - Added perfect overclock to the electric greenhouse so it scales better with the pyro oven @Pyritie - Electric greenhouse now accepts logs and leaf blocks inside it, so you can build a little tree if you want @Pyritie - Increased durability of the blue steel diving suit to match blue steel armor @Pyritie diff --git a/config/adaptive_performance_tweaks/client_side_mods.list b/config/adaptive_performance_tweaks/client_side_mods.list new file mode 100644 index 000000000..2b69a77df --- /dev/null +++ b/config/adaptive_performance_tweaks/client_side_mods.list @@ -0,0 +1,123 @@ +## Client Side Mods - Version: 1.0.3 +## Disable existing entries by comment out like # client-side-mod-1.20.1.jar + +3dskinlayers-forge-1.4.3-mc1.20.1.2.jar +AmbientSounds_FORGE_v5.0.16_mc1.20.1.jar +BetterAdvancements-1.20.1-0.1.2.122.jar +BetterF3-1.3.2-Forge-1.20.1.jar +BetterModsButton-v3.2.1-1.20.1-Forge.jar +BetterThirdPerson-Forge-1.20.1.6.0.jar +BetterTitleScreen-1.20.12.0.jar +Blur-1.1.0-1.jar +ChunkAnimator-1.20.1.3.3.jar +Controlling-forge-1.20.1-9.0+15.jar +CraftPresence-1.20.1-Release-1.8.11-universal.jar +CustomSkinLoader_ForgeActive-14.15-SNAPSHOT-348.jar +CustomSkinLoader_ForgeActive-14.17.jar +CustomSkinLoader_ForgeLegacy-14.15-SNAPSHOT-348.jar +DailyDad-forge-1.20.1-1.3.2.jar +Ding-1.20.1.3.0.jar +EnchantmentDescriptions-Forge-1.20.1-10.0.2.jar +EquipmentCompare-1.20.1-1.2.12.jar +FPS-Monitor-1.20.1-1.2.1.jar +Fallingleaves-1.20.1-1.3.1.jar +FpsReducer2-forge-1.20.1-2.0.jar +GameMenuModOption-1.20.1-Forge-1.14.jar +GameMenuRemoveGFARB-1.20.1-Forge-1.4.jar +Highlighter-1.20.1-1.1.2.jar +IKnowWhatImDoing-5.0.0-forge.jar +ImprovedMountHUD-v3.1.0-1.20.1-Forge.jar +InvMove-1.20.1-0.7.0-Forge.jar +InvMoveCompats-1.20.1-0.1.0-Forge.jar +InventoryHud_[1.20.1].forge-3.4.4.jar +InventoryProfilesNext-forge-1.20.1-1.3.5.jar +ItemBorders-1.20.1-forge-1.2.0.jar +ItemPhysicLite_v1.4.8_mc1.20.1.jar +ItemsDontBreak-1.20.1-0.5.0.jar +LegendaryTooltips-1.20.1-1.2.4.jar +LetSleepingDogsLie-1.20.1-1.1.1.jar +MouseTweaks-forge-mc1.20.1-2.21.jar +MyServerIsCompatible-1.20.1.0.jar +Neat 1.8-30.jar +Neat-1.20-35-FORGE.jar +NekosEnchantedBooks-1.20.1-1.7.0.jar +NoFog-1.3.1_1.20.1-forge.jar +Notes-1.20.1-1.2.4.jar +ReAuth-1.20.1-Forge-4.0.0.jar +StylishEffects-v3.1.0-1.20.1-Forge.jar +Textbook-Forge-2.2.1+1.20.1.jar +TextruesRubidiumOptions-1.0.4-mc1.20.1.jar +TipTheScales-forge-1.20.1-5.0.5.jar +ToastControl-1.20.1-6.0.2.jar +TravelersTitles-1.20.1-Forge-2.1.1.jar +WaveyCapes-forge-1.2.0-mc1.20.1.jar +advancements_tracker_1.20.1-1.2.0.jar +advancementscreenshot_1.20.1-3.2.jar +auudio_forge_1.0.3_MC_1.20.1.jar +beautifiedchatclient_1.20.1-1.1.jar +better-loading-screen-1.4.0.jar +betteranimalmodels-1.20.1-5.6.0-forge.jar +betterbiomeblend-1.20.1-1.3.2-forge.jar +betterfpsdist-1.20.1-1.4.jar +bettersigns-1.0.jar +betterstats-2.2+1.20.1.jar +bettertaskbar-forge-mc1.20.1-mc1.20.1.2-1.5.jar +brb-1.20.1-forge-1.5.6.jar +catalogue-1.6.0-1.20.1.jar +chat_heads-0.6.0-forge-1.20.1.jar +clear-skies-forge-mc119-2.0.94.jar +clearwater-1.20.1-1.8.jar +clienttweaks-forge-1.20.1-7.1.0.jar +cullleaves-2.3.2.jar +drawerfps-1.20.1-2.3.jar +drippyloadingscreen_forge_1.5.1_MC_1.18-1.20.1.jar +ears-forge-1.20.1-1.4.5.jar +eatinganimation-1.20.1-2.0.1.jar +elytra-flight-hud-1.1.3.jar +entity_texture_features_forge_1.20.1-4.2.0.jar +entityculling-forge-mc1.20.1-1.5.0.jar +extendedclouds-1.1.1-forge.jar +extremeSoundMuffler-3.24_Forge-1.20.1.jar +fancymenu_forge_2.6.4_MC_1.20.1.jar +farsight-1.20.1.6.jar +firstperson-forge-2.1.2-mc1.20.1.jar +flickerfix-2.0.0.jar +fm_audio_extension_forge_1.1.0_MC_1.20.1.jar +guiclock_1.20.1-3.1.jar +guicompass_1.20.1-2.2.jar +guifollowers_1.20.1-1.9.jar +hiddenrecipebook_1.20.1-2.4.jar +itemzoom-1.20.1-2.5.0.jar +justzoom_forge_1.0.1_MC_1.18-1.20.1.jar +light-overlay-6.0.5-forge.jar +loadmyresources_1.0.1_MC_1.20.1.jar +mcwifipnp-1.5.9-1.20.1-forge.jar +midnightlib-forge-1.4.1.jar +modernworldcreation_forge_1.0.0_MC_1.20.1.jar +modnametooltip-1.20.1-1.20.1.0.jar +moreoverlays-1.20.1.9-mc1.20.1.jar +namepain-1.4.1 forge-1.19.jar +no-telemetry-1.4.0.jar +notenoughanimations-forge-1.5.0-mc1.20.1.2.jar +oculus-1.4.3.jar +oculus-mc1.20-1.6.4.jar +oculus-mc1.20.1.2-1.2.4.jar +paperdoll-forge-1.1.0-mc1.20.1.jar +raised-forge-1.20.1-1.1.4.jar +replanter-forge-1.3.jar +rubidium-0.5.2a.jar +rubidium-0.5.3a.jar +rubidium-0.6.5.jar +rubidium-extra-0.4.16+mc1.20.1-build.57.jar +screenscale-1.20.1-2.0.jar +shutupexperimentalsettings-1.0.5.jar +smoothboot-mc1.20.1-1.0.1.jar +spyglass_improvements-1.2+mc1.20.1.x+forge.jar +tooltipscroller-1.20.1-1.0.0.jar +torohealth-1.18-forge-2.jar +transparent-4.1.0+1.20.1-forge.jar +uiinputundo-1.2.jar +waveycapes-forge-1.2.0-mc1.20.1.jar +whats-that-slot-forge-1.2.3+1.20.1.jar +worldtime-1.20.1-forge39.0.9-1.3.1.jar +zmedievalmusic-1.20.1-1.5.jar diff --git a/config/adaptive_performance_tweaks/core.toml b/config/adaptive_performance_tweaks/core.toml new file mode 100644 index 000000000..cf3b71076 --- /dev/null +++ b/config/adaptive_performance_tweaks/core.toml @@ -0,0 +1,21 @@ + +#Adaptive Performance Tweaks: Core +[General] + #The time after a high to low load change is considered as valid. High loads are always considered immediately. + #Range: 1 ~ 90 + timeBetweenUpdates = 10 + #Enable/Disable logging of the overall server load. + logServerLoad = true + #Enable/Disable logging of the individual level load. + logServerLevelLoad = true + +["Game Difficulty Factors"] + #Range: 0.1 ~ 10.0 + gameDifficultyFactorEasy = 0.9 + #Range: 0.1 ~ 10.0 + gameDifficultyFactorNormal = 1.0 + #Range: 0.1 ~ 10.0 + gameDifficultyFactorPeaceful = 1.0 + #Range: 0.1 ~ 10.0 + gameDifficultyFactorHard = 2.0 + diff --git a/config/adaptive_performance_tweaks/gamerules.toml b/config/adaptive_performance_tweaks/gamerules.toml new file mode 100644 index 000000000..dd350f45a --- /dev/null +++ b/config/adaptive_performance_tweaks/gamerules.toml @@ -0,0 +1,67 @@ + +#Adaptive Performance Tweaks: Gamerules +[General] + #The time after a high to low load change is considered as valid. High loads are always considered immediately. + #Range: 1 ~ 90 + timeBetweenUpdates = 30 + +["Entity Cramming"] + #Enable/Disable dynamic entity cramming adjustments. + entityCrammingEnabled = false + #Defines the min. numbers of mob singularity on a single block. + #Range: 0 ~ 64 + minEntityCramming = 5 + #Defines the max. numbers of mob singularity on a single block. + #Range: 1 ~ 64 + maxEntityCramming = 24 + #Defines the min. numbers of mob singularity on a single block, in the case MineColonies is installed. + #Range: 16 ~ 64 + minEntityCrammingMineColonies = 16 + +["Random Tick Speed"] + #Enable/Disable dynamic random tick speed adjustments. + randomTickSpeedEnabled = true + #Defines the max. speed of crops grow, leaf decay, redstone, ... per chunk + #Range: 1 ~ 256 + randomTickSpeed = 3 + +["Block Explodes"] + #Enable/Disable block explodes adjustments. + blockExplodesEnabled = true + +["Elytra Movement Check"] + #Enable/Disable dynamic elytra movement check adjustments. + elytraMovementCheckEnabled = true + +[Raids] + #Enable/Disable dynamic raids adjustments. + raidsEnabled = false + +[Insomnia] + #Enable/Disable insomnia (phantoms) adjustments. + insomniaEnabled = false + +["Mob Explodes"] + #Enable/Disable mob explodes adjustments. + mobExplodesEnabled = true + +["Patrol Spawning"] + #Enable/Disable patrol spawning adjustments. + patrolSpawningEnabled = false + +["Trader Spawning"] + #Enable/Disable trader spawning adjustments. + traderSpawningEnabled = false + +["TNT Explodes"] + #Enable/Disable tnt explodes adjustments. + tntExplodesEnabled = true + +["Vines Spread"] + #Enable/Disable vines spread adjustments. + vinesSpreadEnabled = true + +["Warden Spawning"] + #Enable/Disable warden spawning adjustments. + wardenSpawningEnabled = false + diff --git a/config/adaptive_performance_tweaks/items.toml b/config/adaptive_performance_tweaks/items.toml new file mode 100644 index 000000000..07861e221 --- /dev/null +++ b/config/adaptive_performance_tweaks/items.toml @@ -0,0 +1,26 @@ + +#Adaptive Performance Tweaks: Items +[Items] + #Enable/Disable items optimization. + optimizeItems = true + #Defines the max. number of items / item stacks per type which are allowed to lay around in the world. + #Range: 16 ~ 128 + maxNumberOfItemsPerType = 64 + #Defines the max. number of items / item stacks which are allowed to lay around in a single world. + #Range: 16 ~ 1000 + maxNumberOfItems = 128 + #Defines the radius in blocks which items / item stacks will be clustered together. + #Range: 1 ~ 16 + itemsClusterRange = 4 + #Defines a list of items which will be optimized and all other items will be ignored by the optimization. + itemsAllowList = [] + #Defines a list of items which will be ignored by the optimization and all other relevant items will be optimized. + itemsDenyList = ["item.minecraft.diamond", "item.minecraft.diamond_block"] + +["Experience Orbs"] + #Enable/Disable experience orbs optimization. + optimizeExperienceOrbs = true + #Defines the radius in which experience orbs will be clustered together. + #Range: 1 ~ 16 + experienceOrbsClusterRange = 4 + diff --git a/config/adaptive_performance_tweaks/player.toml b/config/adaptive_performance_tweaks/player.toml new file mode 100644 index 000000000..49b2b6f82 --- /dev/null +++ b/config/adaptive_performance_tweaks/player.toml @@ -0,0 +1,31 @@ + +#Adaptive Performance Tweaks: Player +["Player Login"] + #Enable/Disable optimization which are happening during player login. + optimizePlayerLogin = true + #Timeout in seconds for the player validation. + #Range: 16 ~ 300 + playerLoginValidationTimeout = 90 + +["Player Protection"] + #Protect player during login within the validation timeout. + protectPlayerDuringLogin = true + #Enable/Disable player protection logging with login time. + protectPlayerDuringLoginLogging = true + +["Child Player Protection"] + #Protect child player and give them a more enjoyable play experience. + enableChildPlayerProtection = true + #List of child player username for the child player protection. + childPlayerProtectionList = [""] + #Sets the child player to invisible. + childPlayerInvisible = true + #Sets the child player to invulnerable. + childPlayerInvulnerable = false + #Reduces the hurt damage to a child player by the amount of % (0 = disabled). + #Range: 0 ~ 100 + childPlayerHurtDamageReduction = 50 + #Increase the attack damage of a child player by the amount of % (0 = disabled). + #Range: 0 ~ 1000 + childPlayerAttackDamageIncrease = 50 + diff --git a/config/adaptive_performance_tweaks/spawn.toml b/config/adaptive_performance_tweaks/spawn.toml new file mode 100644 index 000000000..f6afde47b --- /dev/null +++ b/config/adaptive_performance_tweaks/spawn.toml @@ -0,0 +1,37 @@ + +#Adaptive Performance Tweaks: Spawn +[General] + #General allow list for spawn entities (e.g. minecraft:squid) which should be ignored for optimization. + allowList = [""] + #General deny list for spawn entities (e.g. minecraft:bat) to no longer spawn in all worlds. + denyList = [""] + #General list of ignored dimensions. + spawnIgnoreDimensionList = ["minecraft:the_end"] + #Enable/Disable more aggressive and strict spawn limitations. + spawnAggressiveMode = false + +["Chunk Optimization"] + #Allows to spawn at least one mob (regardless of the type) per selected chunk to avoid side effects.A value of 9 means every 9 chunk request will be allowed. Use 0 to disable this optimization. + #Range: 0 ~ 256 + friendlyChunkSpawnRate = 9 + +["View Area"] + #Enable/Disable player based view area optimization. + viewAreaEnabled = true + +["Global Spawn Limitations"] + #Enable/Disable general spawn limitations. + spawnLimitationEnabled = true + #Blocks every x spawn to avoid an over population with the limited spawn area. Use 0 to disable this optimization. + #Range: 0 ~ 100 + spawnLimitationLimiter = 16 + #Defines the max. number of entities of a specific type, which could spawn within the player view area. Use 0 to disable this optimization. + #Range: 0 ~ 256 + spawnLimitationMaxMobsPerPlayer = 32 + #Defines the max. number of entities of a specific type, which could spawn within a single world. Use 0 to disable this optimization. + #Range: 0 ~ 1024 + spawnLimitationMaxMobsPerWorld = 128 + #Defines the max. number of entities of a specific type, which could spawn within the server. Use 0 to disable this optimization. + #Range: 0 ~ 1024 + spawnLimitationMaxMobsPerServer = 512 + diff --git a/config/adaptive_performance_tweaks/spawn/AlexsMobsSpawn.toml b/config/adaptive_performance_tweaks/spawn/AlexsMobsSpawn.toml new file mode 100644 index 000000000..6a0e7f46d --- /dev/null +++ b/config/adaptive_performance_tweaks/spawn/AlexsMobsSpawn.toml @@ -0,0 +1,30 @@ + +#Adaptive Performance Tweaks: Spawn +["Alexs Mobs Spawn Config"] + Enabled = true + Id = "alexsmobs" + #Range: 1 ~ 64 + MaxPassiveMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxPassiveMobsPerWorld = 16 + #Range: 1 ~ 1024 + MaxPassiveMobsPerServer = 320 + #List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..] + PassiveMobsList = ["alexsmobs:blobfish", "alexsmobs:endergrade", "alexsmobs:fly", "alexsmobs:gazelle", "alexsmobs:hummingbird", "alexsmobs:mungus", "alexsmobs:seal", "alexsmobs:spectre", "alexsmobs:stradpole", "alexsmobs:sunbird"] + #Range: 1 ~ 64 + MaxNeutralMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxNeutralMobsPerWorld = 16 + #Range: 1 ~ 1024 + MaxNeutralMobsPerServer = 320 + #List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..] + NeutralMobsList = ["alexsmobs:cachalot_whale", "alexsmobs:capuchin_monkey", "alexsmobs:cockroach", "alexsmobs:crow", "alexsmobs:elephant", "alexsmobs:emu", "alexsmobs:gorilla", "alexsmobs:kangaroo", "alexsmobs:lobster", "alexsmobs:mantis_shrimp", "alexsmobs:moose", "alexsmobs:orca", "alexsmobs:platypus", "alexsmobs:raccoon", "alexsmobs:roadrunner", "alexsmobs:shoebill", "alexsmobs:snow_leopard", "alexsmobs:tasmanian_devil", "alexsmobs:warped_toad"] + #Range: 1 ~ 64 + MaxHostileMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxHostileMobsPerWorld = 16 + #Range: 1 ~ 1024 + MaxHostileMobsPerServer = 320 + #List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..] + HostileMobsList = ["alexsmobs:alligator_snapping_turtle", "alexsmobs:bone_serpent", "alexsmobs:centipede_head", "alexsmobs:crimson_mosquito", "alexsmobs:crocodile", "alexsmobs:dropbear", "alexsmobs:enderiophage", "alexsmobs:grizzly_bear", "alexsmobs:guster", "alexsmobs:hammerhead_shark", "alexsmobs:komodo_dragon", "alexsmobs:leafcutter_ant", "alexsmobs:mimicube", "alexsmobs:rattlesnake", "alexsmobs:soul_vulture", "alexsmobs:straddler", "alexsmobs:warped_mosco"] + diff --git a/config/adaptive_performance_tweaks/spawn/AquacultureSpawn.toml b/config/adaptive_performance_tweaks/spawn/AquacultureSpawn.toml new file mode 100644 index 000000000..a6dd8fe2e --- /dev/null +++ b/config/adaptive_performance_tweaks/spawn/AquacultureSpawn.toml @@ -0,0 +1,14 @@ + +#Adaptive Performance Tweaks: Spawn +["Aquaculture 2 Spawn Config"] + Enabled = true + Id = "aquaculture" + #Range: 1 ~ 64 + MaxFishPerPlayer = 4 + #Range: 1 ~ 512 + MaxFishPerWorld = 16 + #Range: 1 ~ 1024 + MaxFishPerServer = 320 + #List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..] + FishList = ["aquaculture:acacia_fish_mount", "aquaculture:arapaima", "aquaculture:arrau_turtle", "aquaculture:atlantic_cod", "aquaculture:atlantic_halibut", "aquaculture:atlantic_herring", "aquaculture:bayad", "aquaculture:birch_fish_mount", "aquaculture:blackfish", "aquaculture:bluegill", "aquaculture:bobber", "aquaculture:boulti", "aquaculture:box_turtle", "aquaculture:brown_shrooma", "aquaculture:brown_trout", "aquaculture:capitaine", "aquaculture:carp", "aquaculture:catfish", "aquaculture:dark_oak_fish_mount", "aquaculture:gar", "aquaculture:jellyfish", "aquaculture:jungle_fish_mount", "aquaculture:minnow", "aquaculture:muskellunge", "aquaculture:oak_fish_mount", "aquaculture:pacific_halibut", "aquaculture:perch", "aquaculture:pink_salmon", "aquaculture:piranha", "aquaculture:pollock", "aquaculture:rainbow_trout", "aquaculture:red_grouper", "aquaculture:red_shrooma", "aquaculture:smallmouth_bass", "aquaculture:spruce_fish_mount", "aquaculture:starshell_turtle", "aquaculture:synodontis", "aquaculture:tambaqui", "aquaculture:tuna", "aquaculture:water_arrow"] + diff --git a/config/adaptive_performance_tweaks/spawn/BornInChaosSpawn.toml b/config/adaptive_performance_tweaks/spawn/BornInChaosSpawn.toml new file mode 100644 index 000000000..f8704631f --- /dev/null +++ b/config/adaptive_performance_tweaks/spawn/BornInChaosSpawn.toml @@ -0,0 +1,15 @@ + +#Adaptive Performance Tweaks: Spawn +["Born in Chaos Spawn Config"] + Enabled = true + Id = "born_in_chaos_v1" + #e.g. mobs which will always attack yon ... + #Range: 1 ~ 64 + HostileMobsPerPlayer = 16 + #Range: 1 ~ 512 + HostileMobsPerWorld = 32 + #Range: 1 ~ 1024 + HostileMobsPerServer = 320 + #List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..] + HostileMobsList = ["born_in_chaos_v1:baby_s_2", "born_in_chaos_v1:baby_skeleton", "born_in_chaos_v1:bone_imp", "born_in_chaos_v1:bone_imp_2", "born_in_chaos_v1:bonescaller", "born_in_chaos_v1:dark_vortex", "born_in_chaos_v1:decaying_zombie", "born_in_chaos_v1:decrepit_skeleton", "born_in_chaos_v1:diamond_thermite", "born_in_chaos_v1:dread_hound", "born_in_chaos_v1:fallen_chaos_knight", "born_in_chaos_v1:firelight", "born_in_chaos_v1:mr_pumpkin", "born_in_chaos_v1:nightmare_stalker", "born_in_chaos_v1:phantom_creeper", "born_in_chaos_v1:pumpkin_spirit", "born_in_chaos_v1:restless_spirit", "born_in_chaos_v1:scarletpersecutor", "born_in_chaos_v1:seared_spirit", "born_in_chaos_v1:shy_spirit", "born_in_chaos_v1:skeleton_bomb", "born_in_chaos_v1:skeleton_thrasher", "born_in_chaos_v1:spirit_guide_assistant", "born_in_chaos_v1:spiritual_guide", "born_in_chaos_v1:supreme_bonecaller", "born_in_chaos_v1:wither_strider", "born_in_chaos_v1:zombie_clown", "born_in_chaos_v1:zombiesina_barrel", "born_in_chaos_v1:zombieswith_door"] + diff --git a/config/adaptive_performance_tweaks/spawn/CustomSpawn.toml b/config/adaptive_performance_tweaks/spawn/CustomSpawn.toml new file mode 100644 index 000000000..58831562f --- /dev/null +++ b/config/adaptive_performance_tweaks/spawn/CustomSpawn.toml @@ -0,0 +1,30 @@ + +#Adaptive Performance Tweaks: Spawn +["Custom Spawn Config"] + Enabled = false + Id = "_config" + #Range: 1 ~ 64 + MaxPassiveMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxPassiveMobsPerWorld = 16 + #Range: 1 ~ 1024 + MaxPassiveMobsPerServer = 320 + #List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..] + PassiveMobsList = [] + #Range: 1 ~ 64 + MaxNeutralMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxNeutralMobsPerWorld = 16 + #Range: 1 ~ 1024 + MaxNeutralMobsPerServer = 320 + #List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..] + NeutralMobsList = [] + #Range: 1 ~ 64 + MaxHostileMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxHostileMobsPerWorld = 16 + #Range: 1 ~ 1024 + MaxHostileMobsPerServer = 320 + #List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..] + HostileMobsList = [] + diff --git a/config/adaptive_performance_tweaks/spawn/FishOfThievesSpawn.toml b/config/adaptive_performance_tweaks/spawn/FishOfThievesSpawn.toml new file mode 100644 index 000000000..ad09542a3 --- /dev/null +++ b/config/adaptive_performance_tweaks/spawn/FishOfThievesSpawn.toml @@ -0,0 +1,14 @@ + +#Adaptive Performance Tweaks: Spawn +["Fish of Thieves Spawn Config"] + Enabled = true + Id = "fishofthieves" + #Range: 1 ~ 64 + MaxFishPerPlayer = 16 + #Range: 1 ~ 512 + MaxFishPerWorld = 64 + #Range: 1 ~ 1024 + MaxFishPerServer = 320 + #List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..] + FishList = ["fishofthieves:ancientscales", "fishofthieves:battlegills", "fishofthieves:devilfish", "fishofthieves:islehoppers", "fishofthieves:plentifins", "fishofthieves:pondies", "fishofthieves:splashtail", "fishofthieves:stormfish", "fishofthieves:wildsplash", "fishofthieves:wreckers"] + diff --git a/config/adaptive_performance_tweaks/spawn/FriendsAndFoesSpawn.toml b/config/adaptive_performance_tweaks/spawn/FriendsAndFoesSpawn.toml new file mode 100644 index 000000000..f3c26930c --- /dev/null +++ b/config/adaptive_performance_tweaks/spawn/FriendsAndFoesSpawn.toml @@ -0,0 +1,14 @@ + +#Adaptive Performance Tweaks: Spawn +["Friends and Foes Spawn Config"] + Enabled = true + Id = "friendsandfoes" + #Range: 1 ~ 64 + MaxPassiveMobsPerPlayer = 8 + #Range: 1 ~ 512 + MaxPassiveMobsPerWorld = 64 + #Range: 1 ~ 1024 + MaxPassiveMobsPerServer = 320 + #List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..] + PassiveMobsList = ["friendsandfoes:glare"] + diff --git a/config/adaptive_performance_tweaks/spawn/GothicSpawn.toml b/config/adaptive_performance_tweaks/spawn/GothicSpawn.toml new file mode 100644 index 000000000..ee49eb4ac --- /dev/null +++ b/config/adaptive_performance_tweaks/spawn/GothicSpawn.toml @@ -0,0 +1,30 @@ + +#Adaptive Performance Tweaks: Spawn +["Gothic Spawn Config"] + Enabled = true + Id = "gothic" + #Range: 1 ~ 64 + MaxPassiveMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxPassiveMobsPerWorld = 16 + #Range: 1 ~ 1024 + MaxPassiveMobsPerServer = 320 + #List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..] + PassiveMobsList = ["gothic:meatbug", "gothic:meatbug_tamed"] + #Range: 1 ~ 64 + MaxNeutralMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxNeutralMobsPerWorld = 16 + #Range: 1 ~ 1024 + MaxNeutralMobsPerServer = 320 + #List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..] + NeutralMobsList = ["gothic:npc_farmer", "gothic:npc_oldcamp_hunter"] + #Range: 1 ~ 64 + MaxHostileMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxHostileMobsPerWorld = 16 + #Range: 1 ~ 1024 + MaxHostileMobsPerServer = 320 + #List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..] + HostileMobsList = ["gothic:bloodfly", "gothic:bloodfly_hornet", "gothic:dragon_snapper", "gothic:gothic_wolf", "gothic:ice_wolf", "gothic:lurker", "gothic:molerat", "gothic:razor", "gothic:scavenger", "gothic:shadowbeast", "gothic:snapper", "gothic:stone_guardian", "gothic:warg"] + diff --git a/config/adaptive_performance_tweaks/spawn/InfernalExpansionSpawn.toml b/config/adaptive_performance_tweaks/spawn/InfernalExpansionSpawn.toml new file mode 100644 index 000000000..1d0c5f707 --- /dev/null +++ b/config/adaptive_performance_tweaks/spawn/InfernalExpansionSpawn.toml @@ -0,0 +1,30 @@ + +#Adaptive Performance Tweaks: Spawn +["Infernal Expansion Spawn Config"] + Enabled = true + Id = "infernalexp" + #Range: 1 ~ 64 + MaxPassiveMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxPassiveMobsPerWorld = 16 + #Range: 1 ~ 1024 + MaxPassiveMobsPerServer = 320 + #List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..] + PassiveMobsList = ["infernalexp:basalt", "infernalexp:blackstone_dwarf", "infernalexp:glowsilk_moth", "infernalexp:shroomloin", "infernalexp:warpbeetle"] + #Range: 1 ~ 64 + MaxNeutralMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxNeutralMobsPerWorld = 16 + #Range: 1 ~ 1024 + MaxNeutralMobsPerServer = 320 + #List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..] + NeutralMobsList = [] + #Range: 1 ~ 64 + MaxHostileMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxHostileMobsPerWorld = 16 + #Range: 1 ~ 1024 + MaxHostileMobsPerServer = 320 + #List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..] + HostileMobsList = ["infernalexp:blindsight", "infernalexp:embody", "infernalexp:embody", "infernalexp:glowsquito", "infernalexp:voline"] + diff --git a/config/adaptive_performance_tweaks/spawn/MekanismAdditionsSpawn.toml b/config/adaptive_performance_tweaks/spawn/MekanismAdditionsSpawn.toml new file mode 100644 index 000000000..33a84a9da --- /dev/null +++ b/config/adaptive_performance_tweaks/spawn/MekanismAdditionsSpawn.toml @@ -0,0 +1,30 @@ + +#Adaptive Performance Tweaks: Spawn +["Mekanism Spawn Config"] + Enabled = true + Id = "mekanismadditions" + #Range: 1 ~ 64 + MaxPassiveMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxPassiveMobsPerWorld = 12 + #Range: 1 ~ 1024 + MaxPassiveMobsPerServer = 320 + #List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..] + PassiveMobsList = [] + #Range: 1 ~ 64 + MaxNeutralMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxNeutralMobsPerWorld = 16 + #Range: 1 ~ 1024 + MaxNeutralMobsPerServer = 320 + #List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..] + NeutralMobsList = [] + #Range: 1 ~ 64 + MaxHostileMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxHostileMobsPerWorld = 16 + #Range: 1 ~ 1024 + MaxHostileMobsPerServer = 320 + #List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..] + HostileMobsList = ["mekanismadditions:baby_creeper", "mekanismadditions:baby_enderman", "mekanismadditions:baby_skeleton", "mekanismadditions:baby_stray", "mekanismadditions:baby_wither_skeleton"] + diff --git a/config/adaptive_performance_tweaks/spawn/MinecraftSpawn.toml b/config/adaptive_performance_tweaks/spawn/MinecraftSpawn.toml new file mode 100644 index 000000000..c270ad3af --- /dev/null +++ b/config/adaptive_performance_tweaks/spawn/MinecraftSpawn.toml @@ -0,0 +1,60 @@ + +#Adaptive Performance Tweaks: Spawn +["Minecraft Spawn Config"] + Enabled = true + Id = "minecraft" + #e.g. mobs which will not attack you + #Range: 1 ~ 64 + MaxPassiveMobsPerPlayer = 8 + #Range: 1 ~ 512 + MaxPassiveMobsPerWorld = 32 + #Range: 1 ~ 1024 + MaxPassiveMobsPerServer = 320 + #List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..] + PassiveMobsList = ["minecraft:allay", "minecraft:axolotl", "minecraft:bat", "minecraft:cat", "minecraft:chicken", "minecraft:cow", "minecraft:donkey", "minecraft:fox", "minecraft:frog", "minecraft:horse", "minecraft:mooshroom", "minecraft:mule", "minecraft:ocelot", "minecraft:parrot", "minecraft:pig", "minecraft:rabbit", "minecraft:sheep", "minecraft:skeleton_horse", "minecraft:snow_golem", "minecraft:turtle"] + #e.g. mobs which will attack under certain conditions ... + #Range: 1 ~ 64 + MaxNeutralMobsPerPlayer = 8 + #Range: 1 ~ 512 + MaxNeutralMobsPerWorld = 32 + #Range: 1 ~ 1024 + MaxNeutralMobsPerServer = 320 + #List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..] + NeutralMobsList = ["minecraft:bee", "minecraft:cave_spider", "minecraft:enderman", "minecraft:goat", "minecraft:iron_golem", "minecraft:llama", "minecraft:panda", "minecraft:polar_bear", "minecraft:spider", "minecraft:trader_llama", "minecraft:wandering_trader", "minecraft:wolf", "minecraft:zombie_horse"] + #e.g. mobs which will always attack yon ... + #Range: 1 ~ 64 + MaxHostileMobsPerPlayer = 8 + #Range: 1 ~ 512 + MaxHostileMobsPerWorld = 32 + #Range: 1 ~ 1024 + MaxHostileMobsPerServer = 320 + #List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..] + HostileMobsList = ["minecraft:chicken_jockey", "minecraft:creeper", "minecraft:ender_dragon", "minecraft:endermite", "minecraft:evoker", "minecraft:giant", "minecraft:husk", "minecraft:illusioner", "minecraft:pillager", "minecraft:ravager", "minecraft:ravager_jockey", "minecraft:shulker", "minecraft:silverfish", "minecraft:skeleton", "minecraft:skeleton_horseman", "minecraft:slime", "minecraft:stray", "minecraft:vex", "minecraft:vindicator", "minecraft:warden", "minecraft:witch", "minecraft:wither", "minecraft:zoglin", "minecraft:zombie", "minecraft:zombie_villager"] + #e.g. mostly fish + #Range: 1 ~ 64 + MaxWaterPassiveMobsPerPlayer = 8 + #Range: 1 ~ 512 + MaxWaterPassiveMobsPerWorld = 32 + #Range: 1 ~ 1024 + MaxWaterPassiveMobsPerServer = 320 + #List of passive water Mobs to optimize + WaterPassiveMobsList = ["minecraft:axolotl", "minecraft:cod", "minecraft:pufferfish", "minecraft:salmon", "minecraft:tropical_fish"] + #e.g. squid, dolphin, ... + #Range: 1 ~ 64 + MaxWaterNeutralMobsPerPlayer = 6 + #Range: 1 ~ 512 + MaxWaterNeutralMobsPerWorld = 24 + #Range: 1 ~ 1024 + MaxWaterNeutralMobsPerServer = 320 + #List of neutral water Mobs to optimize + WaterNeutralMobsList = ["minecraft:dolphin", "minecraft:squid"] + #e.g. drowned, guardian... + #Range: 1 ~ 64 + MaxWaterHostileMobsPerPlayer = 16 + #Range: 1 ~ 512 + MaxWaterHostileMobsPerWorld = 64 + #Range: 1 ~ 1024 + MaxWaterHostileMobsPerServer = 320 + #List of hostile water Mobs to optimize + WaterHostileMobsList = ["minecraft:drowned", "minecraft:elder_guardian", "minecraft:guardian"] + diff --git a/config/adaptive_performance_tweaks/spawn/NetherSpawn.toml b/config/adaptive_performance_tweaks/spawn/NetherSpawn.toml new file mode 100644 index 000000000..95f4a46f8 --- /dev/null +++ b/config/adaptive_performance_tweaks/spawn/NetherSpawn.toml @@ -0,0 +1,33 @@ + +#Adaptive Performance Tweaks: Spawn +["Nether Spawn Config"] + Enabled = true + Id = "minecraft" + #e.g. mobs which will not attack you + #Range: 1 ~ 64 + MaxPassiveMobsPerPlayer = 16 + #Range: 1 ~ 512 + MaxPassiveMobsPerWorld = 32 + #Range: 1 ~ 1024 + MaxPassiveMobsPerServer = 320 + #List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..] + PassiveMobsList = ["minecraft:strider"] + #e.g. mobs which will attack under certain conditions ... + #Range: 1 ~ 64 + MaxNeutralMobsPerPlayer = 16 + #Range: 1 ~ 512 + MaxNeutralMobsPerWorld = 32 + #Range: 1 ~ 1024 + MaxNeutralMobsPerServer = 320 + #List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..] + NeutralMobsList = ["minecraft:zombified_piglin"] + #e.g. mobs which will always attack yon ... + #Range: 1 ~ 64 + MaxHostileMobsPerPlayer = 16 + #Range: 1 ~ 512 + MaxHostileMobsPerWorld = 32 + #Range: 1 ~ 1024 + MaxHostileMobsPerServer = 320 + #List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..] + HostileMobsList = ["minecraft:blaze", "minecraft:ghast", "minecraft:hoglin", "minecraft:magma_cube", "minecraft:piglin", "minecraft:piglin_brute", "minecraft:wither_skeleton"] + diff --git a/config/adaptive_performance_tweaks/spawn/PanthalassaSpawn.toml b/config/adaptive_performance_tweaks/spawn/PanthalassaSpawn.toml new file mode 100644 index 000000000..292eadf94 --- /dev/null +++ b/config/adaptive_performance_tweaks/spawn/PanthalassaSpawn.toml @@ -0,0 +1,30 @@ + +#Adaptive Performance Tweaks: Spawn +["Panthalassa Spawn Config"] + Enabled = true + Id = "panthalassa" + #Range: 1 ~ 64 + MaxPassiveMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxPassiveMobsPerWorld = 16 + #Range: 1 ~ 1024 + MaxPassiveMobsPerServer = 320 + #List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..] + PassiveMobsList = ["panthalassa:acrolepis", "panthalassa:anomalocaris", "panthalassa:ceratodus", "panthalassa:coelacanth"] + #Range: 1 ~ 64 + MaxNeutralMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxNeutralMobsPerWorld = 16 + #Range: 1 ~ 1024 + MaxNeutralMobsPerServer = 320 + #List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..] + NeutralMobsList = ["panthalassa:archelon", "panthalassa:basilosaurus", "panthalassa:leedsichthys"] + #Range: 1 ~ 64 + MaxHostileMobsPerPlayer = 8 + #Range: 1 ~ 512 + MaxHostileMobsPerWorld = 32 + #Range: 1 ~ 1024 + MaxHostileMobsPerServer = 320 + #List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..] + HostileMobsList = ["panthalassa:anglerfish", "panthalassa:dunkleosteus", "panthalassa:giant_orthocone", "panthalassa:helicoprion", "panthalassa:kronosaurus", "panthalassa:megalodon", "panthalassa:mosasaurus", "panthalassa:thalassomedon"] + diff --git a/config/adaptive_performance_tweaks/spawn/QuarkSpawn.toml b/config/adaptive_performance_tweaks/spawn/QuarkSpawn.toml new file mode 100644 index 000000000..86e60f15c --- /dev/null +++ b/config/adaptive_performance_tweaks/spawn/QuarkSpawn.toml @@ -0,0 +1,30 @@ + +#Adaptive Performance Tweaks: Spawn +["Quark Spawn Config"] + Enabled = true + Id = "quark" + #Range: 1 ~ 64 + MaxPassiveMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxPassiveMobsPerWorld = 16 + #Range: 1 ~ 1204 + MaxPassiveMobsPerServer = 320 + #List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..] + PassiveMobsList = ["quark:crab", "quark:frog", "quark:stoneling"] + #Range: 1 ~ 64 + MaxNeutralMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxNeutralMobsPerWorld = 16 + #Range: 1 ~ 1204 + MaxNeutralMobsPerServer = 320 + #List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..] + NeutralMobsList = ["quark:toretoise"] + #Range: 1 ~ 64 + MaxHostileMobsPerPlayer = 8 + #Range: 1 ~ 512 + MaxHostileMobsPerWorld = 32 + #Range: 1 ~ 1204 + MaxHostileMobsPerServer = 320 + #List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..] + HostileMobsList = ["quark:forgotten", "quark:foxhound", "quark:wraith"] + diff --git a/config/adaptive_performance_tweaks/spawn/TinkersConstructSpawn.toml b/config/adaptive_performance_tweaks/spawn/TinkersConstructSpawn.toml new file mode 100644 index 000000000..38fc8ef79 --- /dev/null +++ b/config/adaptive_performance_tweaks/spawn/TinkersConstructSpawn.toml @@ -0,0 +1,14 @@ + +#Adaptive Performance Tweaks: Spawn +["Tinkers Construct Spawn Config"] + Enabled = true + Id = "tconstruct" + #Range: 1 ~ 64 + MaxHostileMobsPerPlayer = 6 + #Range: 1 ~ 512 + MaxHostileMobsPerWorld = 24 + #Range: 1 ~ 1024 + MaxHostileMobsPerServer = 320 + #List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..] + HostileMobsList = ["tconstruct:earth_slime", "tconstruct:sky_slime", "tconstruct:ender_slime"] + diff --git a/config/adaptive_performance_tweaks/spawn/UntamedWildsSpawn.toml b/config/adaptive_performance_tweaks/spawn/UntamedWildsSpawn.toml new file mode 100644 index 000000000..e0ce18ede --- /dev/null +++ b/config/adaptive_performance_tweaks/spawn/UntamedWildsSpawn.toml @@ -0,0 +1,30 @@ + +#Adaptive Performance Tweaks: Spawn +["Untamed Wilds Spawn Config"] + Enabled = true + Id = "untamedwilds" + #Range: 1 ~ 64 + MaxPassiveMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxPassiveMobsPerWorld = 16 + #Range: 1 ~ 1024 + MaxPassiveMobsPerServer = 320 + #List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..] + PassiveMobsList = ["untamedwilds:arowana", "untamedwilds:giant_clam", "untamedwilds:giant_salamander", "untamedwilds:rhino", "untamedwilds:sunfish", "untamedwilds:trevally"] + #Range: 1 ~ 64 + MaxNeutralMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxNeutralMobsPerWorld = 16 + #Range: 1 ~ 1024 + MaxNeutralMobsPerServer = 320 + #List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..] + NeutralMobsList = ["untamedwilds:aardvark", "untamedwilds:softshell_turtle", "untamedwilds:tortoise"] + #Range: 1 ~ 64 + MaxHostileMobsPerPlayer = 4 + #Range: 1 ~ 512 + MaxHostileMobsPerWorld = 16 + #Range: 1 ~ 1024 + MaxHostileMobsPerServer = 320 + #List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..] + HostileMobsList = ["untamedwilds:bear_black", "untamedwilds:bear_blind", "untamedwilds:bear_brown", "untamedwilds:bear_cave", "untamedwilds:bear_panda", "untamedwilds:bear_polar", "untamedwilds:bear_spectacled", "untamedwilds:bear_sun", "untamedwilds:bigcat_jaguar", "untamedwilds:bigcat_leopard", "untamedwilds:bigcat_lion", "untamedwilds:bigcat_puma", "untamedwilds:bigcat_snow_leopard", "untamedwilds:bigcat_tiger", "untamedwilds:football_fish", "untamedwilds:hippo", "untamedwilds:shark", "untamedwilds:snake", "untamedwilds:tarantula"] + diff --git a/config/adaptive_performance_tweaks/spawn/UntitledDuck.toml b/config/adaptive_performance_tweaks/spawn/UntitledDuck.toml new file mode 100644 index 000000000..41832228d --- /dev/null +++ b/config/adaptive_performance_tweaks/spawn/UntitledDuck.toml @@ -0,0 +1,22 @@ + +#Adaptive Performance Tweaks: Spawn +["Untitled Duck Spawn Config"] + Enabled = true + Id = "untitledduckmod" + #Range: 1 ~ 64 + MaxPassiveMobsPerPlayer = 16 + #Range: 1 ~ 512 + MaxPassiveMobsPerWorld = 32 + #Range: 1 ~ 1024 + MaxPassiveMobsPerServer = 320 + #List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..] + PassiveMobsList = ["untitledduckmod:duck"] + #Range: 1 ~ 64 + MaxNeutralMobsPerPlayer = 8 + #Range: 1 ~ 512 + MaxNeutralMobsPerWorld = 32 + #Range: 1 ~ 1024 + MaxNeutralMobsPerServer = 320 + #List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..] + NeutralMobsList = ["untitledduckmod:goose"] + diff --git a/config/attributefix.json b/config/attributefix.json index 587b4093e..770c5f0c0 100644 --- a/config/attributefix.json +++ b/config/attributefix.json @@ -1,5 +1,16 @@ { "attributes": { + "tacz:tacz.bullet_resistance": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, "forge:step_height_addition": { "enabled": false, "min": { diff --git a/config/blur-client.toml b/config/blur-client.toml index dfc3c39c0..a2ac724d8 100644 --- a/config/blur-client.toml +++ b/config/blur-client.toml @@ -1,6 +1,6 @@ [screens] - blurExclusions = ["net.minecraft.client.gui.screens.ChatScreen", "com.replaymod.lib.de.johni0702.minecraft.gui.container.AbstractGuiOverlay$UserInputGuiScreen", "ai.arcblroth.projectInception.client.InceptionInterfaceScreen", "net.optifine.gui.GuiChatOF", "baritone.", "io.github.darkkronicle.advancedchatcore.chat.AdvancedChatScreen", "net.coderbot.iris.gui.screen.ShaderPackScreen", "eu.midnightdust.midnightcontrols.client.gui.TouchscreenOverlay"] + blurExclusions = ["net.minecraft.client.gui.screens.ChatScreen", "com.replaymod.lib.de.johni0702.minecraft.gui.container.AbstractGuiOverlay$UserInputGuiScreen", "ai.arcblroth.projectInception.client.InceptionInterfaceScreen", "net.optifine.gui.GuiChatOF", "baritone.", "io.github.darkkronicle.advancedchatcore.chat.AdvancedChatScreen", "net.coderbot.iris.gui.screen.ShaderPackScreen", "eu.midnightdust.midnightcontrols.client.gui.TouchscreenOverlay", "com.tacz.guns.client.gui.GunRefitScreen"] showScreenTitle = false strangeEffect = false diff --git a/config/blur.json b/config/blur.json index 242ecefeb..3d34b0ec8 100644 --- a/config/blur.json +++ b/config/blur.json @@ -5,7 +5,8 @@ "ai.arcblroth.projectInception.client.InceptionInterfaceScreen", "net.optifine.gui.GuiChatOF", "io.github.darkkronicle.advancedchatcore.chat.AdvancedChatScreen", - "net.coderbot.iris.gui.screen.ShaderPackScreen" + "net.coderbot.iris.gui.screen.ShaderPackScreen", + "com.tacz.guns.client.gui.GunRefitScreen" ], "fadeTimeMillis": 200, "ease": true, diff --git a/config/caveman.toml b/config/caveman.toml new file mode 100644 index 000000000..d9497952d --- /dev/null +++ b/config/caveman.toml @@ -0,0 +1,5 @@ + +["cave man"] + #man_ + cave = "man" + diff --git a/config/clienttweaks-common.toml b/config/clienttweaks-common.toml index a650e39c6..48651a458 100644 --- a/config/clienttweaks-common.toml +++ b/config/clienttweaks-common.toml @@ -16,11 +16,11 @@ noOffhandTorchWithBlock = true #This prevents torches from being placed from your offhand if you have food in your main hand. noOffhandTorchWithFood = true - #This prevents torches from being placed from your off hand if you have an empty main hand. + #This prevents torches from being placed from your offhand if you have an empty main hand. noOffhandTorchWithEmptyHand = false #This restricts torches to be placed from the offhand only when you're holding a tool in your main hand. offhandTorchWithToolOnly = false - #This prevents fireworks from being launched from your off hand if you are wearing an Elytra, unless you're flying. + #This prevents fireworks from being launched from your offhand if you are wearing an Elytra, unless you're flying. noOffhandFireworksWithElytra = true #This option will disable step assist added by other mods. disableStepAssist = false @@ -36,6 +36,12 @@ noRecipeBookShifting = false #This option will disable paving when holding a block in your offhand. disablePavingWithBlockInOffhand = true + #This prevents the last durability from being used up. + doNotUseLastMending = false + #This prevents items from being used from your offhand if you have food in your main hand. + noOffhandUseWithFood = false + #Prevents accidental mining of certain fragile blocks like budding amethysts. + preventAccidentalMining = false [customization] #Items that count as torches for the offhand-torch tweak options. @@ -48,4 +54,6 @@ shieldItems = ["basicshields:wooden_shield", "basicshields:golden_shield", "basicshields:diamond_shield", "basicshields:netherite_shield"] #Items that count as fireworks for the offhand-firework tweak options. fireworkItems = ["minecraft:firework_rocket"] + #Blocks that should be protected in the prevent accidental mining tweak. + fragileBlocks = ["minecraft:large_amethyst_bud", "minecraft:medium_amethyst_bud", "minecraft:small_amethyst_bud", "minecraft:budding_amethyst"] diff --git a/config/craftingtweaks-common.toml b/config/craftingtweaks-common.toml index 461b1c478..c4503fb30 100644 --- a/config/craftingtweaks-common.toml +++ b/config/craftingtweaks-common.toml @@ -15,4 +15,6 @@ mode = "DEFAULT" #Add mod ids here of mods that you wish to disable Crafting Tweaks support for. disabledAddons = [] + #Use an alternative client-side balancing algorithm. It might be faster, or it might be slower, depending on the input. Try it if regular client-side balancing is causing lagspikes. + hyperOptimizedClientsideBalancing = false diff --git a/config/defaultoptions/options.txt b/config/defaultoptions/options.txt index 0178357de..67d33be82 100644 --- a/config/defaultoptions/options.txt +++ b/config/defaultoptions/options.txt @@ -1,4 +1,5 @@ -resourcePacks:["vanilla","mod_resources","gtceu:dynamic_assets","Moonlight Mods Dynamic Assets","afc_compat_assets","afc_data","fabric","firmalife_compat_assets","firmalife_data","tfc_tumbleweed","tfcimprovedbadlands","file/TerraFirmaCraft_New_Animals.zip","file/Perfected Anvil Helper.zip","file/ComputerCraft Greg Refreshed 1.1 - 1.20.1.zip", "file/Old Copper Stuffs v1.8.zip"] +guiScale:3 +resourcePacks:["vanilla","mod_resources","gtceu:dynamic_assets","Moonlight Mods Dynamic Assets","afc_compat_assets","afc_data","fabric","firmalife_compat_assets","firmalife_data","tfc_tumbleweed","tfcimprovedbadlands","file/TerraFirmaCraft_New_Animals.zip","file/Perfected Anvil Helper.zip","file/ComputerCraft Greg Refreshed 1.1 - 1.20.1.zip"] incompatibleResourcePacks:["firmalife_data","file/Perfected Anvil Helper.zip"] narrator:0 soundCategory_master:1.0 diff --git a/config/fancymenu/customization/gui_loading_screen.txt b/config/fancymenu/customization/gui_loading_screen.txt index 326f0965c..9d21a75d8 100644 --- a/config/fancymenu/customization/gui_loading_screen.txt +++ b/config/fancymenu/customization/gui_loading_screen.txt @@ -3,17 +3,29 @@ type = fancymenu_layout layout-meta { identifier = drippy_loading_overlay render_custom_elements_behind_vanilla = false - last_edited_time = 1751008612590 + last_edited_time = 1752899622608 is_enabled = true randommode = false randomgroup = 1 randomonlyfirsttime = false layout_index = 0 - [loading_requirement_container_meta:a24414bf-23f9-4fae-b752-4e91fecee9d2-1751008530130] = [groups:][instances:] + [loading_requirement_container_meta:5a04ea61-16dc-4ce3-b5f1-db096b50a05a-1752899545176] = [groups:][instances:] +} + +customization { + action = setscale + scale = 3.0 +} + +customization { + action = autoscale + basewidth = 1920 + baseheight = 1080 } menu_background { slideshow_name = new_loading_screen + instance_identifier = ef8f993d-cca3-458f-a9da-cba9aec00c61-1752819691150 background_type = slideshow } @@ -37,7 +49,7 @@ layout_action_executable_blocks { } element { - source = [source:location]tfg:textures/gui/tfg_logo_icon_outline_white_sr_964x_1024p.gif + source = [source:location]tfg:textures/gui/tfg_logo_title_4181x688_with_shadow.png repeat_texture = false nine_slice_texture = false nine_slice_texture_border_x = 5 @@ -57,17 +69,17 @@ element { auto_sizing_base_screen_height = 1419 sticky_anchor = false anchor_point = mid-centered - x = -70 - y = -67 - width = 136 - height = 136 + x = -147 + y = -33 + width = 294 + height = 48 stretch_x = false stretch_y = false stay_on_screen = false element_loading_requirement_container_identifier = 3a10ee73-edca-4147-869e-7902775a5a14-1710837053343 [loading_requirement_container_meta:3a10ee73-edca-4147-869e-7902775a5a14-1710837053343] = [groups:][instances:] enable_parallax = false - parallax_intensity = 0.5 + parallax_intensity_v2 = 0.5 invert_parallax = false animated_offset_x = 0 animated_offset_y = 0 @@ -100,6 +112,15 @@ element { bullet_list_indent = 8.0 bullet_list_spacing = 3.0 parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 element_type = text_v2 instance_identifier = 485ef9c0-94a8-4450-94a3-8022e2831591-1751008054758 appearance_delay = no_delay @@ -125,7 +146,7 @@ element { element_loading_requirement_container_identifier = 613c98a6-70ec-4662-9333-43a7f0ab1e14-1751008054758 [loading_requirement_container_meta:613c98a6-70ec-4662-9333-43a7f0ab1e14-1751008054758] = [groups:][instances:] enable_parallax = false - parallax_intensity = 0.5 + parallax_intensity_v2 = 0.5 invert_parallax = false animated_offset_x = 0 animated_offset_y = 0 @@ -134,63 +155,6 @@ element { layer_hidden_in_editor = false } -vanilla_button { - button_element_executable_block_identifier = 97c197fd-2437-4d73-8648-da77552b154b-1710837053334 - [executable_block:97c197fd-2437-4d73-8648-da77552b154b-1710837053334][type:generic] = [executables:] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - navigatable = true - widget_active_state_requirement_container_identifier = 119a0280-2bdb-4c04-9e07-6de16b3d8938-1751005155458 - [loading_requirement_container_meta:119a0280-2bdb-4c04-9e07-6de16b3d8938-1751005155458] = [groups:][instances:] - is_template = false - template_apply_width = false - template_apply_height = false - template_apply_posx = false - template_apply_posy = false - template_apply_opacity = false - template_apply_visibility = false - template_apply_label = false - template_share_with = buttons - nine_slice_slider_handle = false - nine_slice_slider_handle_border_x = 5 - nine_slice_slider_handle_border_y = 5 - element_type = vanilla_button - instance_identifier = mojang_logo - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = no_fading - fade_in_speed = 1.0 - fade_out = no_fading - fade_out_speed = 1.0 - base_opacity = 1.0 - auto_sizing = false - auto_sizing_base_screen_width = 0 - auto_sizing_base_screen_height = 0 - sticky_anchor = false - anchor_point = vanilla - x = 180 - y = 177 - width = 472 - height = 118 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = dc9be166-cadf-440c-98bc-47ac378980ba-1710837053334 - [loading_requirement_container_meta:dc9be166-cadf-440c-98bc-47ac378980ba-1710837053334] = [groups:][instances:] - enable_parallax = false - parallax_intensity = 0.5 - invert_parallax = false - animated_offset_x = 0 - animated_offset_y = 0 - load_once_per_session = false - in_editor_color = #FFC800FF - layer_hidden_in_editor = false - is_hidden = true - automated_button_clicks = 0 -} - vanilla_button { button_element_executable_block_identifier = f3a70cd2-ecfc-4b6b-91cf-b88673431f32-1710837053334 [executable_block:f3a70cd2-ecfc-4b6b-91cf-b88673431f32-1710837053334][type:generic] = [executables:] @@ -227,9 +191,9 @@ vanilla_button { auto_sizing_base_screen_height = 1419 sticky_anchor = false anchor_point = vanilla - x = 180 - y = 388 - width = 472 + x = 138 + y = 298 + width = 364 height = 10 stretch_x = false stretch_y = false @@ -237,7 +201,7 @@ vanilla_button { element_loading_requirement_container_identifier = fa6c81c1-332c-4f8c-b85a-2de260b1542c-1710837053334 [loading_requirement_container_meta:fa6c81c1-332c-4f8c-b85a-2de260b1542c-1710837053334] = [groups:][instances:] enable_parallax = false - parallax_intensity = 0.5 + parallax_intensity_v2 = 0.5 invert_parallax = false animated_offset_x = 0 animated_offset_y = 0 @@ -248,3 +212,60 @@ vanilla_button { automated_button_clicks = 0 } +vanilla_button { + button_element_executable_block_identifier = 97c197fd-2437-4d73-8648-da77552b154b-1710837053334 + [executable_block:97c197fd-2437-4d73-8648-da77552b154b-1710837053334][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 119a0280-2bdb-4c04-9e07-6de16b3d8938-1751005155458 + [loading_requirement_container_meta:119a0280-2bdb-4c04-9e07-6de16b3d8938-1751005155458] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mojang_logo + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 138 + y = 137 + width = 364 + height = 90 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = dc9be166-cadf-440c-98bc-47ac378980ba-1710837053334 + [loading_requirement_container_meta:dc9be166-cadf-440c-98bc-47ac378980ba-1710837053334] = [groups:][instances:] + enable_parallax = false + parallax_intensity_v2 = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + diff --git a/config/fancymenu/customization/gui_main_menu.txt b/config/fancymenu/customization/gui_main_menu.txt index 46f20a575..0b8d863c5 100644 --- a/config/fancymenu/customization/gui_main_menu.txt +++ b/config/fancymenu/customization/gui_main_menu.txt @@ -3,17 +3,29 @@ type = fancymenu_layout layout-meta { identifier = title_screen render_custom_elements_behind_vanilla = false - last_edited_time = 1751683723374 + last_edited_time = 1752900020786 is_enabled = true randommode = false randomgroup = 1 randomonlyfirsttime = false layout_index = 0 - [loading_requirement_container_meta:10db7c9a-a492-438d-8b42-467316a2015e-1751677015677] = [groups:][instances:] + [loading_requirement_container_meta:4b07f109-9867-4431-85aa-407ae630bd9e-1752899904152] = [groups:][instances:] +} + +customization { + action = setscale + scale = 3.0 +} + +customization { + action = autoscale + basewidth = 1920 + baseheight = 1080 } menu_background { panorama_name = moon + instance_identifier = 346b08c7-0697-4ae3-8335-569c9df854ac-1752817749252 background_type = panorama } @@ -76,8 +88,8 @@ element { auto_sizing_base_screen_height = 1419 sticky_anchor = false anchor_point = mid-centered - x = 30 - y = 37 + x = 63 + y = 23 width = 20 height = 20 stretch_x = false @@ -86,47 +98,7 @@ element { element_loading_requirement_container_identifier = 6fe51a26-4678-48dc-aa77-32b4a40c8de6-1710837053357 [loading_requirement_container_meta:6fe51a26-4678-48dc-aa77-32b4a40c8de6-1710837053357] = [groups:][instances:] enable_parallax = false - parallax_intensity = 0.5 - invert_parallax = false - animated_offset_x = 0 - animated_offset_y = 0 - load_once_per_session = false - in_editor_color = #FFC800FF - layer_hidden_in_editor = false -} - -element { - source = [source:location]tfg:textures/gui/tfg_title_vignette.png - repeat_texture = false - nine_slice_texture = false - nine_slice_texture_border_x = 5 - nine_slice_texture_border_y = 5 - image_tint = #FFFFFF - element_type = image - instance_identifier = 9bb15e9d-fedb-4e15-a37f-7586c0dcb4921699691344434 - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = no_fading - fade_in_speed = 1.0 - fade_out = no_fading - fade_out_speed = 1.0 - base_opacity = 1.0 - auto_sizing = true - auto_sizing_base_screen_width = 2496 - auto_sizing_base_screen_height = 1419 - sticky_anchor = true - anchor_point = mid-centered - x = -1 - y = -116 - width = 453 - height = 111 - stretch_x = false - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = 029a37fe-5cb4-45d0-966f-8f7da3dd827d-1710837053356 - [loading_requirement_container_meta:029a37fe-5cb4-45d0-966f-8f7da3dd827d-1710837053356] = [groups:][instances:] - enable_parallax = false - parallax_intensity = 0.5 + parallax_intensity_v2 = 0.5 invert_parallax = false animated_offset_x = 0 animated_offset_y = 0 @@ -175,8 +147,8 @@ element { auto_sizing_base_screen_height = 1419 sticky_anchor = false anchor_point = mid-centered - x = 3 - y = 37 + x = 38 + y = 23 width = 20 height = 20 stretch_x = false @@ -185,7 +157,7 @@ element { element_loading_requirement_container_identifier = 2ccbd597-85c1-48a5-b5ea-49040e18d08a-1710837053356 [loading_requirement_container_meta:2ccbd597-85c1-48a5-b5ea-49040e18d08a-1710837053356] = [groups:][instances:] enable_parallax = false - parallax_intensity = 0.5 + parallax_intensity_v2 = 0.5 invert_parallax = false animated_offset_x = 0 animated_offset_y = 0 @@ -234,8 +206,8 @@ element { auto_sizing_base_screen_height = 1419 sticky_anchor = false anchor_point = mid-centered - x = 83 - y = 37 + x = 115 + y = 23 width = 20 height = 20 stretch_x = false @@ -244,7 +216,7 @@ element { element_loading_requirement_container_identifier = 934f6ee3-6f2a-4bf5-8f41-0a4ece8e0637-1710837053356 [loading_requirement_container_meta:934f6ee3-6f2a-4bf5-8f41-0a4ece8e0637-1710837053356] = [groups:][instances:] enable_parallax = false - parallax_intensity = 0.5 + parallax_intensity_v2 = 0.5 invert_parallax = false animated_offset_x = 0 animated_offset_y = 0 @@ -293,8 +265,8 @@ element { auto_sizing_base_screen_height = 1419 sticky_anchor = false anchor_point = mid-centered - x = 56 - y = 37 + x = 89 + y = 23 width = 20 height = 20 stretch_x = false @@ -303,7 +275,7 @@ element { element_loading_requirement_container_identifier = 4e45cc97-0625-45c7-8966-fb3ac1d9c41d-1710837053357 [loading_requirement_container_meta:4e45cc97-0625-45c7-8966-fb3ac1d9c41d-1710837053357] = [groups:][instances:] enable_parallax = false - parallax_intensity = 0.5 + parallax_intensity_v2 = 0.5 invert_parallax = false animated_offset_x = 0 animated_offset_y = 0 @@ -352,8 +324,8 @@ element { auto_sizing_base_screen_height = 1419 sticky_anchor = false anchor_point = mid-centered - x = 3 - y = -10 + x = 37 + y = -29 width = 98 height = 20 stretch_x = false @@ -362,7 +334,7 @@ element { element_loading_requirement_container_identifier = da72b434-a35d-463b-99f5-2aa6c62b3247-1710837053356 [loading_requirement_container_meta:da72b434-a35d-463b-99f5-2aa6c62b3247-1710837053356] = [groups:][instances:] enable_parallax = false - parallax_intensity = 0.5 + parallax_intensity_v2 = 0.5 invert_parallax = false animated_offset_x = 0 animated_offset_y = 0 @@ -395,6 +367,15 @@ element { bullet_list_indent = 8.0 bullet_list_spacing = 3.0 parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 element_type = text_v2 instance_identifier = b0dd5a23-d0c3-43b0-981a-55f61136e77a-1746358865798 appearance_delay = no_delay @@ -420,7 +401,7 @@ element { element_loading_requirement_container_identifier = f9828c9e-89b0-4211-938e-cc9373497a5f-1746358865798 [loading_requirement_container_meta:f9828c9e-89b0-4211-938e-cc9373497a5f-1746358865798] = [groups:][instances:] enable_parallax = false - parallax_intensity = 0.5 + parallax_intensity_v2 = 0.5 invert_parallax = false animated_offset_x = 0 animated_offset_y = 0 @@ -430,14 +411,14 @@ element { } element { - source = [source:location]tfg:textures/gui/tfg_title_stars.gif + source = [source:location]tfg:textures/gui/tfg_logo_icon_outline_white_sr_456p.gif repeat_texture = false nine_slice_texture = false nine_slice_texture_border_x = 5 nine_slice_texture_border_y = 5 image_tint = #FFFFFF element_type = image - instance_identifier = 1fcb8657-27b3-4925-a2d2-9acb00081c4d-1751004934946 + instance_identifier = c3a11166-a605-41ed-bb3d-3a1693cefd1c-1752819349960 appearance_delay = no_delay appearance_delay_seconds = 1.0 fade_in_v2 = no_fading @@ -445,22 +426,22 @@ element { fade_out = no_fading fade_out_speed = 1.0 base_opacity = 1.0 - auto_sizing = true + auto_sizing = false auto_sizing_base_screen_width = 2496 auto_sizing_base_screen_height = 1419 - sticky_anchor = true + sticky_anchor = false anchor_point = mid-centered - x = 1 - y = -118 - width = 403 - height = 111 + x = -227 + y = -73 + width = 130 + height = 130 stretch_x = false stretch_y = false stay_on_screen = false - element_loading_requirement_container_identifier = 029a37fe-5cb4-45d0-966f-8f7da3dd827d-1710837053356 - [loading_requirement_container_meta:029a37fe-5cb4-45d0-966f-8f7da3dd827d-1710837053356] = [groups:][instances:] + element_loading_requirement_container_identifier = 1d908459-283f-47df-92b6-bed0efca0427-1752819349960 + [loading_requirement_container_meta:1d908459-283f-47df-92b6-bed0efca0427-1752819349960] = [groups:][instances:] enable_parallax = false - parallax_intensity = 0.5 + parallax_intensity_v2 = 0.5 invert_parallax = false animated_offset_x = 0 animated_offset_y = 0 @@ -469,6 +450,181 @@ element { layer_hidden_in_editor = false } +vanilla_button { + button_element_executable_block_identifier = 785145e3-49a4-45fa-86a5-76543bb7c226-1710837053345 + [executable_block:785145e3-49a4-45fa-86a5-76543bb7c226-1710837053345][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 98ecc456-cc76-47f1-9039-833f736d0a5e-1738509235087 + [loading_requirement_container_meta:98ecc456-cc76-47f1-9039-833f736d0a5e-1738509235087] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_realms_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = mid-centered + x = 47 + y = -5 + width = 98 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = 7c454c53-713f-4c87-97e8-288da3eba763-1710837053345 + [loading_requirement_container_meta:7c454c53-713f-4c87-97e8-288da3eba763-1710837053345] = [groups:][instances:] + enable_parallax = false + parallax_intensity_v2 = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = f04fbec6-3e03-4b54-a3aa-aa7ce92175ec-1710837053345 + [executable_block:f04fbec6-3e03-4b54-a3aa-aa7ce92175ec-1710837053345][type:generic] = [executables:] + backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/button.png + backgroundhovered = [source:location]tfg:textures/gui/button_hover.gif + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = a5d0eb38-e0bd-40e2-b194-0fcbc741923c-1738509235087 + [loading_requirement_container_meta:a5d0eb38-e0bd-40e2-b194-0fcbc741923c-1738509235087] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_singleplayer_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2496 + auto_sizing_base_screen_height = 1419 + sticky_anchor = false + anchor_point = mid-centered + x = -67 + y = -58 + width = 201 + height = 19 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = 35fdf2a6-00bc-456b-830a-e97b7ee6f3a0-1710837053345 + [loading_requirement_container_meta:35fdf2a6-00bc-456b-830a-e97b7ee6f3a0-1710837053345] = [groups:][instances:] + enable_parallax = false + parallax_intensity_v2 = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = c68f6eba-8ff3-42ea-b8a3-55a296372b3a-1710837053345 + [executable_block:c68f6eba-8ff3-42ea-b8a3-55a296372b3a-1710837053345][type:generic] = [executables:] + backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/button_98x20.png + backgroundhovered = [source:location]tfg:textures/gui/button_hover_98x20.gif + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 6e4a2784-5288-4825-8c7e-69972c4d322e-1738509235087 + [loading_requirement_container_meta:6e4a2784-5288-4825-8c7e-69972c4d322e-1738509235087] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_quit_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2496 + auto_sizing_base_screen_height = 1419 + sticky_anchor = false + anchor_point = mid-centered + x = -67 + y = 23 + width = 98 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = a9f8d43c-d00b-4db2-ada7-81fa3a121de1-1710837053345 + [loading_requirement_container_meta:a9f8d43c-d00b-4db2-ada7-81fa3a121de1-1710837053345] = [groups:][instances:] + enable_parallax = false + parallax_intensity_v2 = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + vanilla_button { button_element_executable_block_identifier = d29af260-9081-410f-86cc-eca92eb2161b-1710837053345 [executable_block:d29af260-9081-410f-86cc-eca92eb2161b-1710837053345][type:generic] = [executables:] @@ -516,7 +672,7 @@ vanilla_button { element_loading_requirement_container_identifier = 59eca2f8-b704-4a42-b2d3-101e17f6e61e-1710837053345 [loading_requirement_container_meta:59eca2f8-b704-4a42-b2d3-101e17f6e61e-1710837053345] = [groups:][instances:] enable_parallax = false - parallax_intensity = 0.5 + parallax_intensity_v2 = 0.5 invert_parallax = false animated_offset_x = 0 animated_offset_y = 0 @@ -527,179 +683,6 @@ vanilla_button { automated_button_clicks = 0 } -vanilla_button { - button_element_executable_block_identifier = 3efcd3d7-b601-4f0c-b3db-8cc038e3ca78-1746358841072 - [executable_block:3efcd3d7-b601-4f0c-b3db-8cc038e3ca78-1746358841072][type:generic] = [executables:] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - navigatable = true - widget_active_state_requirement_container_identifier = b6f0af7c-c9a6-4d6e-942b-e9d7bd8f0d6d-1746358841072 - [loading_requirement_container_meta:b6f0af7c-c9a6-4d6e-942b-e9d7bd8f0d6d-1746358841072] = [groups:][instances:] - is_template = false - template_apply_width = false - template_apply_height = false - template_apply_posx = false - template_apply_posy = false - template_apply_opacity = false - template_apply_visibility = false - template_apply_label = false - template_share_with = buttons - nine_slice_slider_handle = false - nine_slice_slider_handle_border_x = 5 - nine_slice_slider_handle_border_y = 5 - element_type = vanilla_button - instance_identifier = minecraft_logo_widget - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = no_fading - fade_in_speed = 1.0 - fade_out = no_fading - fade_out_speed = 1.0 - base_opacity = 1.0 - auto_sizing = false - auto_sizing_base_screen_width = 0 - auto_sizing_base_screen_height = 0 - sticky_anchor = false - anchor_point = vanilla - x = 288 - y = 30 - width = 256 - height = 51 - stretch_x = false - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = 7cf9d856-d8bb-4aed-aa82-6ce7c5f4eb91-1746358841072 - [loading_requirement_container_meta:7cf9d856-d8bb-4aed-aa82-6ce7c5f4eb91-1746358841072] = [groups:][instances:] - enable_parallax = false - parallax_intensity = 0.5 - invert_parallax = false - animated_offset_x = 0 - animated_offset_y = 0 - load_once_per_session = false - in_editor_color = #FFC800FF - layer_hidden_in_editor = false - is_hidden = true - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = 17fa0c0f-39d1-4b03-bc2f-0ccd0e0a6d25-1746358841072 - [executable_block:17fa0c0f-39d1-4b03-bc2f-0ccd0e0a6d25-1746358841072][type:generic] = [executables:] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - navigatable = true - widget_active_state_requirement_container_identifier = 01242da9-e8ac-43c4-b553-a11988b0621e-1746358841072 - [loading_requirement_container_meta:01242da9-e8ac-43c4-b553-a11988b0621e-1746358841072] = [groups:][instances:] - is_template = false - template_apply_width = false - template_apply_height = false - template_apply_posx = false - template_apply_posy = false - template_apply_opacity = false - template_apply_visibility = false - template_apply_label = false - template_share_with = buttons - nine_slice_slider_handle = false - nine_slice_slider_handle_border_x = 5 - nine_slice_slider_handle_border_y = 5 - element_type = vanilla_button - instance_identifier = minecraft_branding_widget - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = no_fading - fade_in_speed = 1.0 - fade_out = no_fading - fade_out_speed = 1.0 - base_opacity = 1.0 - auto_sizing = false - auto_sizing_base_screen_width = 0 - auto_sizing_base_screen_height = 0 - sticky_anchor = false - anchor_point = vanilla - x = 2 - y = 423 - width = 128 - height = 49 - stretch_x = false - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = a04d6611-e8bf-4d12-8483-05bfa180ee5b-1746358841072 - [loading_requirement_container_meta:a04d6611-e8bf-4d12-8483-05bfa180ee5b-1746358841072] = [groups:][instances:] - enable_parallax = false - parallax_intensity = 0.5 - invert_parallax = false - animated_offset_x = 0 - animated_offset_y = 0 - load_once_per_session = false - in_editor_color = #FFC800FF - layer_hidden_in_editor = false - is_hidden = true - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = e2b3e9b3-2d45-4f4f-b6dd-4f89f83b7da5-1710837053345 - [executable_block:e2b3e9b3-2d45-4f4f-b6dd-4f89f83b7da5-1710837053345][type:generic] = [executables:] - backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/button_98x20.png - backgroundhovered = [source:location]tfg:textures/gui/button_hover_98x20.gif - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - navigatable = true - widget_active_state_requirement_container_identifier = 81fe13c9-2717-47ad-b654-f4d7a9906ad6-1738509235086 - [loading_requirement_container_meta:81fe13c9-2717-47ad-b654-f4d7a9906ad6-1738509235086] = [groups:][instances:] - is_template = false - template_apply_width = false - template_apply_height = false - template_apply_posx = false - template_apply_posy = false - template_apply_opacity = false - template_apply_visibility = false - template_apply_label = false - template_share_with = buttons - nine_slice_slider_handle = false - nine_slice_slider_handle_border_x = 5 - nine_slice_slider_handle_border_y = 5 - element_type = vanilla_button - instance_identifier = mc_titlescreen_multiplayer_button - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = no_fading - fade_in_speed = 1.0 - fade_out = no_fading - fade_out_speed = 1.0 - base_opacity = 1.0 - auto_sizing = false - auto_sizing_base_screen_width = 2496 - auto_sizing_base_screen_height = 1419 - sticky_anchor = false - anchor_point = mid-centered - x = -100 - y = -10 - width = 98 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = 59ff81cd-18cf-42ee-9f05-29ab3efbd338-1710837053345 - [loading_requirement_container_meta:59ff81cd-18cf-42ee-9f05-29ab3efbd338-1710837053345] = [groups:][instances:] - enable_parallax = false - parallax_intensity = 0.5 - invert_parallax = false - animated_offset_x = 0 - animated_offset_y = 0 - load_once_per_session = false - in_editor_color = #FFC800FF - layer_hidden_in_editor = false - is_hidden = false - automated_button_clicks = 0 -} - vanilla_button { button_element_executable_block_identifier = f5d492e4-e25d-4646-a378-cae04b45c8b3-1710837053345 [executable_block:f5d492e4-e25d-4646-a378-cae04b45c8b3-1710837053345][type:generic] = [executables:] @@ -738,8 +721,8 @@ vanilla_button { auto_sizing_base_screen_height = 1419 sticky_anchor = false anchor_point = mid-centered - x = -100 - y = 13 + x = -67 + y = -3 width = 98 height = 20 stretch_x = false @@ -748,294 +731,7 @@ vanilla_button { element_loading_requirement_container_identifier = 612a6d32-b14d-4771-a362-65ec15e28bf1-1710837053345 [loading_requirement_container_meta:612a6d32-b14d-4771-a362-65ec15e28bf1-1710837053345] = [groups:][instances:] enable_parallax = false - parallax_intensity = 0.5 - invert_parallax = false - animated_offset_x = 0 - animated_offset_y = 0 - load_once_per_session = false - in_editor_color = #FFC800FF - layer_hidden_in_editor = false - is_hidden = false - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = bb6e02a6-d703-43b2-914a-608b1ee8f63f-1746358841072 - [executable_block:bb6e02a6-d703-43b2-914a-608b1ee8f63f-1746358841072][type:generic] = [executables:] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - navigatable = true - widget_active_state_requirement_container_identifier = 95e365d1-90bd-403a-a60d-6b7ed99eb9cd-1746358841072 - [loading_requirement_container_meta:95e365d1-90bd-403a-a60d-6b7ed99eb9cd-1746358841072] = [groups:][instances:] - is_template = false - template_apply_width = false - template_apply_height = false - template_apply_posx = false - template_apply_posy = false - template_apply_opacity = false - template_apply_visibility = false - template_apply_label = false - template_share_with = buttons - nine_slice_slider_handle = false - nine_slice_slider_handle_border_x = 5 - nine_slice_slider_handle_border_y = 5 - element_type = vanilla_button - instance_identifier = title_screen_copyright_button - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = no_fading - fade_in_speed = 1.0 - fade_out = no_fading - fade_out_speed = 1.0 - base_opacity = 1.0 - auto_sizing = false - auto_sizing_base_screen_width = 2168 - auto_sizing_base_screen_height = 968 - sticky_anchor = false - anchor_point = bottom-left - x = 5 - y = 4 - width = 196 - height = 10 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 6da1aad5-7ef1-4dea-9ad0-ff5aed935abe-1746358841072 - [loading_requirement_container_meta:6da1aad5-7ef1-4dea-9ad0-ff5aed935abe-1746358841072] = [groups:][instances:] - enable_parallax = false - parallax_intensity = 0.5 - invert_parallax = false - animated_offset_x = 0 - animated_offset_y = 0 - load_once_per_session = false - in_editor_color = #FFC800FF - layer_hidden_in_editor = false - is_hidden = false - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = 0fe14f8d-aeb6-4498-9a88-d36a7b7674e8-1746358841072 - [executable_block:0fe14f8d-aeb6-4498-9a88-d36a7b7674e8-1746358841072][type:generic] = [executables:] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - navigatable = true - widget_active_state_requirement_container_identifier = b83b7017-ce81-4d3b-8243-7ababe152084-1746358841072 - [loading_requirement_container_meta:b83b7017-ce81-4d3b-8243-7ababe152084-1746358841072] = [groups:][instances:] - is_template = false - template_apply_width = false - template_apply_height = false - template_apply_posx = false - template_apply_posy = false - template_apply_opacity = false - template_apply_visibility = false - template_apply_label = false - template_share_with = buttons - nine_slice_slider_handle = false - nine_slice_slider_handle_border_x = 5 - nine_slice_slider_handle_border_y = 5 - element_type = vanilla_button - instance_identifier = minecraft_splash_widget - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = no_fading - fade_in_speed = 1.0 - fade_out = no_fading - fade_out_speed = 1.0 - base_opacity = 1.0 - auto_sizing = false - auto_sizing_base_screen_width = 0 - auto_sizing_base_screen_height = 0 - sticky_anchor = false - anchor_point = vanilla - x = 489 - y = 49 - width = 100 - height = 40 - stretch_x = false - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = 223456f0-8f0e-4317-9ea2-874fe14236c9-1746358841072 - [loading_requirement_container_meta:223456f0-8f0e-4317-9ea2-874fe14236c9-1746358841072] = [groups:][instances:] - enable_parallax = false - parallax_intensity = 0.5 - invert_parallax = false - animated_offset_x = 0 - animated_offset_y = 0 - load_once_per_session = false - in_editor_color = #FFC800FF - layer_hidden_in_editor = false - is_hidden = true - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = 785145e3-49a4-45fa-86a5-76543bb7c226-1710837053345 - [executable_block:785145e3-49a4-45fa-86a5-76543bb7c226-1710837053345][type:generic] = [executables:] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - navigatable = true - widget_active_state_requirement_container_identifier = 98ecc456-cc76-47f1-9039-833f736d0a5e-1738509235087 - [loading_requirement_container_meta:98ecc456-cc76-47f1-9039-833f736d0a5e-1738509235087] = [groups:][instances:] - is_template = false - template_apply_width = false - template_apply_height = false - template_apply_posx = false - template_apply_posy = false - template_apply_opacity = false - template_apply_visibility = false - template_apply_label = false - template_share_with = buttons - nine_slice_slider_handle = false - nine_slice_slider_handle_border_x = 5 - nine_slice_slider_handle_border_y = 5 - element_type = vanilla_button - instance_identifier = mc_titlescreen_realms_button - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = no_fading - fade_in_speed = 1.0 - fade_out = no_fading - fade_out_speed = 1.0 - base_opacity = 1.0 - auto_sizing = false - auto_sizing_base_screen_width = 0 - auto_sizing_base_screen_height = 0 - sticky_anchor = false - anchor_point = mid-centered - x = 47 - y = -5 - width = 98 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = 7c454c53-713f-4c87-97e8-288da3eba763-1710837053345 - [loading_requirement_container_meta:7c454c53-713f-4c87-97e8-288da3eba763-1710837053345] = [groups:][instances:] - enable_parallax = false - parallax_intensity = 0.5 - invert_parallax = false - animated_offset_x = 0 - animated_offset_y = 0 - load_once_per_session = false - in_editor_color = #FFC800FF - layer_hidden_in_editor = false - is_hidden = true - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = 8e3abb1a-7f06-42bd-920a-eeabb0f225ec-1710837053345 - [executable_block:8e3abb1a-7f06-42bd-920a-eeabb0f225ec-1710837053345][type:generic] = [executables:] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - navigatable = true - widget_active_state_requirement_container_identifier = 1c9f2f8a-49b4-4ed4-9744-049cd1b3c415-1738509235087 - [loading_requirement_container_meta:1c9f2f8a-49b4-4ed4-9744-049cd1b3c415-1738509235087] = [groups:][instances:] - is_template = false - template_apply_width = false - template_apply_height = false - template_apply_posx = false - template_apply_posy = false - template_apply_opacity = false - template_apply_visibility = false - template_apply_label = false - template_share_with = buttons - nine_slice_slider_handle = false - nine_slice_slider_handle_border_x = 5 - nine_slice_slider_handle_border_y = 5 - element_type = vanilla_button - instance_identifier = mc_titlescreen_accessibility_button - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = no_fading - fade_in_speed = 1.0 - fade_out = no_fading - fade_out_speed = 1.0 - base_opacity = 1.0 - auto_sizing = false - auto_sizing_base_screen_width = 0 - auto_sizing_base_screen_height = 0 - sticky_anchor = false - anchor_point = vanilla - x = 520 - y = 250 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = f97a69d2-7673-4f9e-97eb-d37eb76122f3-1710837053345 - [loading_requirement_container_meta:f97a69d2-7673-4f9e-97eb-d37eb76122f3-1710837053345] = [groups:][instances:] - enable_parallax = false - parallax_intensity = 0.5 - invert_parallax = false - animated_offset_x = 0 - animated_offset_y = 0 - load_once_per_session = false - in_editor_color = #FFC800FF - layer_hidden_in_editor = false - is_hidden = true - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = c68f6eba-8ff3-42ea-b8a3-55a296372b3a-1710837053345 - [executable_block:c68f6eba-8ff3-42ea-b8a3-55a296372b3a-1710837053345][type:generic] = [executables:] - backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/button_98x20.png - backgroundhovered = [source:location]tfg:textures/gui/button_hover_98x20.gif - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - navigatable = true - widget_active_state_requirement_container_identifier = 6e4a2784-5288-4825-8c7e-69972c4d322e-1738509235087 - [loading_requirement_container_meta:6e4a2784-5288-4825-8c7e-69972c4d322e-1738509235087] = [groups:][instances:] - is_template = false - template_apply_width = false - template_apply_height = false - template_apply_posx = false - template_apply_posy = false - template_apply_opacity = false - template_apply_visibility = false - template_apply_label = false - template_share_with = buttons - nine_slice_slider_handle = false - nine_slice_slider_handle_border_x = 5 - nine_slice_slider_handle_border_y = 5 - element_type = vanilla_button - instance_identifier = mc_titlescreen_quit_button - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = no_fading - fade_in_speed = 1.0 - fade_out = no_fading - fade_out_speed = 1.0 - base_opacity = 1.0 - auto_sizing = false - auto_sizing_base_screen_width = 2496 - auto_sizing_base_screen_height = 1419 - sticky_anchor = false - anchor_point = mid-centered - x = -100 - y = 37 - width = 98 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = a9f8d43c-d00b-4db2-ada7-81fa3a121de1-1710837053345 - [loading_requirement_container_meta:a9f8d43c-d00b-4db2-ada7-81fa3a121de1-1710837053345] = [groups:][instances:] - enable_parallax = false - parallax_intensity = 0.5 + parallax_intensity_v2 = 0.5 invert_parallax = false animated_offset_x = 0 animated_offset_y = 0 @@ -1092,7 +788,123 @@ vanilla_button { element_loading_requirement_container_identifier = 7d7202d8-25bc-4fa6-8054-842ea3371a8d-1710837053345 [loading_requirement_container_meta:7d7202d8-25bc-4fa6-8054-842ea3371a8d-1710837053345] = [groups:][instances:] enable_parallax = false - parallax_intensity = 0.5 + parallax_intensity_v2 = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = e2b3e9b3-2d45-4f4f-b6dd-4f89f83b7da5-1710837053345 + [executable_block:e2b3e9b3-2d45-4f4f-b6dd-4f89f83b7da5-1710837053345][type:generic] = [executables:] + backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/button_98x20.png + backgroundhovered = [source:location]tfg:textures/gui/button_hover_98x20.gif + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 81fe13c9-2717-47ad-b654-f4d7a9906ad6-1738509235086 + [loading_requirement_container_meta:81fe13c9-2717-47ad-b654-f4d7a9906ad6-1738509235086] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_multiplayer_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2496 + auto_sizing_base_screen_height = 1419 + sticky_anchor = false + anchor_point = mid-centered + x = -67 + y = -29 + width = 98 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = 59ff81cd-18cf-42ee-9f05-29ab3efbd338-1710837053345 + [loading_requirement_container_meta:59ff81cd-18cf-42ee-9f05-29ab3efbd338-1710837053345] = [groups:][instances:] + enable_parallax = false + parallax_intensity_v2 = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 8e3abb1a-7f06-42bd-920a-eeabb0f225ec-1710837053345 + [executable_block:8e3abb1a-7f06-42bd-920a-eeabb0f225ec-1710837053345][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 1c9f2f8a-49b4-4ed4-9744-049cd1b3c415-1738509235087 + [loading_requirement_container_meta:1c9f2f8a-49b4-4ed4-9744-049cd1b3c415-1738509235087] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_accessibility_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 424 + y = 223 + width = 20 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = f97a69d2-7673-4f9e-97eb-d37eb76122f3-1710837053345 + [loading_requirement_container_meta:f97a69d2-7673-4f9e-97eb-d37eb76122f3-1710837053345] = [groups:][instances:] + enable_parallax = false + parallax_intensity_v2 = 0.5 invert_parallax = false animated_offset_x = 0 animated_offset_y = 0 @@ -1141,8 +953,8 @@ vanilla_button { auto_sizing_base_screen_height = 1419 sticky_anchor = false anchor_point = mid-centered - x = 3 - y = 13 + x = 37 + y = -3 width = 98 height = 20 stretch_x = false @@ -1151,7 +963,7 @@ vanilla_button { element_loading_requirement_container_identifier = 715a2b76-8625-45e4-8562-798e3aa19b3d-1710837053345 [loading_requirement_container_meta:715a2b76-8625-45e4-8562-798e3aa19b3d-1710837053345] = [groups:][instances:] enable_parallax = false - parallax_intensity = 0.5 + parallax_intensity_v2 = 0.5 invert_parallax = false animated_offset_x = 0 animated_offset_y = 0 @@ -1163,17 +975,15 @@ vanilla_button { } vanilla_button { - button_element_executable_block_identifier = f04fbec6-3e03-4b54-a3aa-aa7ce92175ec-1710837053345 - [executable_block:f04fbec6-3e03-4b54-a3aa-aa7ce92175ec-1710837053345][type:generic] = [executables:] - backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/button.png - backgroundhovered = [source:location]tfg:textures/gui/button_hover.gif + button_element_executable_block_identifier = bb6e02a6-d703-43b2-914a-608b1ee8f63f-1746358841072 + [executable_block:bb6e02a6-d703-43b2-914a-608b1ee8f63f-1746358841072][type:generic] = [executables:] restartbackgroundanimations = true nine_slice_custom_background = false nine_slice_border_x = 5 nine_slice_border_y = 5 navigatable = true - widget_active_state_requirement_container_identifier = a5d0eb38-e0bd-40e2-b194-0fcbc741923c-1738509235087 - [loading_requirement_container_meta:a5d0eb38-e0bd-40e2-b194-0fcbc741923c-1738509235087] = [groups:][instances:] + widget_active_state_requirement_container_identifier = 95e365d1-90bd-403a-a60d-6b7ed99eb9cd-1746358841072 + [loading_requirement_container_meta:95e365d1-90bd-403a-a60d-6b7ed99eb9cd-1746358841072] = [groups:][instances:] is_template = false template_apply_width = false template_apply_height = false @@ -1187,7 +997,7 @@ vanilla_button { nine_slice_slider_handle_border_x = 5 nine_slice_slider_handle_border_y = 5 element_type = vanilla_button - instance_identifier = mc_titlescreen_singleplayer_button + instance_identifier = title_screen_copyright_button appearance_delay = no_delay appearance_delay_seconds = 1.0 fade_in_v2 = no_fading @@ -1196,21 +1006,21 @@ vanilla_button { fade_out_speed = 1.0 base_opacity = 1.0 auto_sizing = false - auto_sizing_base_screen_width = 2496 - auto_sizing_base_screen_height = 1419 + auto_sizing_base_screen_width = 2168 + auto_sizing_base_screen_height = 968 sticky_anchor = false - anchor_point = mid-centered - x = -100 - y = -37 - width = 200 - height = 20 + anchor_point = bottom-left + x = 5 + y = 4 + width = 196 + height = 10 stretch_x = false stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = 35fdf2a6-00bc-456b-830a-e97b7ee6f3a0-1710837053345 - [loading_requirement_container_meta:35fdf2a6-00bc-456b-830a-e97b7ee6f3a0-1710837053345] = [groups:][instances:] + stay_on_screen = true + element_loading_requirement_container_identifier = 6da1aad5-7ef1-4dea-9ad0-ff5aed935abe-1746358841072 + [loading_requirement_container_meta:6da1aad5-7ef1-4dea-9ad0-ff5aed935abe-1746358841072] = [groups:][instances:] enable_parallax = false - parallax_intensity = 0.5 + parallax_intensity_v2 = 0.5 invert_parallax = false animated_offset_x = 0 animated_offset_y = 0 @@ -1221,3 +1031,174 @@ vanilla_button { automated_button_clicks = 0 } +vanilla_button { + button_element_executable_block_identifier = 17fa0c0f-39d1-4b03-bc2f-0ccd0e0a6d25-1746358841072 + [executable_block:17fa0c0f-39d1-4b03-bc2f-0ccd0e0a6d25-1746358841072][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 01242da9-e8ac-43c4-b553-a11988b0621e-1746358841072 + [loading_requirement_container_meta:01242da9-e8ac-43c4-b553-a11988b0621e-1746358841072] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = minecraft_branding_widget + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 2 + y = 314 + width = 128 + height = 49 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = a04d6611-e8bf-4d12-8483-05bfa180ee5b-1746358841072 + [loading_requirement_container_meta:a04d6611-e8bf-4d12-8483-05bfa180ee5b-1746358841072] = [groups:][instances:] + enable_parallax = false + parallax_intensity_v2 = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 0fe14f8d-aeb6-4498-9a88-d36a7b7674e8-1746358841072 + [executable_block:0fe14f8d-aeb6-4498-9a88-d36a7b7674e8-1746358841072][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = b83b7017-ce81-4d3b-8243-7ababe152084-1746358841072 + [loading_requirement_container_meta:b83b7017-ce81-4d3b-8243-7ababe152084-1746358841072] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = minecraft_splash_widget + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 393 + y = 49 + width = 100 + height = 40 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = 223456f0-8f0e-4317-9ea2-874fe14236c9-1746358841072 + [loading_requirement_container_meta:223456f0-8f0e-4317-9ea2-874fe14236c9-1746358841072] = [groups:][instances:] + enable_parallax = false + parallax_intensity_v2 = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 3efcd3d7-b601-4f0c-b3db-8cc038e3ca78-1746358841072 + [executable_block:3efcd3d7-b601-4f0c-b3db-8cc038e3ca78-1746358841072][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = b6f0af7c-c9a6-4d6e-942b-e9d7bd8f0d6d-1746358841072 + [loading_requirement_container_meta:b6f0af7c-c9a6-4d6e-942b-e9d7bd8f0d6d-1746358841072] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = minecraft_logo_widget + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 192 + y = 30 + width = 256 + height = 51 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = 7cf9d856-d8bb-4aed-aa82-6ce7c5f4eb91-1746358841072 + [loading_requirement_container_meta:7cf9d856-d8bb-4aed-aa82-6ce7c5f4eb91-1746358841072] = [groups:][instances:] + enable_parallax = false + parallax_intensity_v2 = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_1.jpg b/config/fancymenu/slideshows/new_loading_screen/images/image_1.jpg new file mode 100644 index 000000000..6116ad70d Binary files /dev/null and b/config/fancymenu/slideshows/new_loading_screen/images/image_1.jpg differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_1.png b/config/fancymenu/slideshows/new_loading_screen/images/image_1.png deleted file mode 100644 index 6289c5619..000000000 Binary files a/config/fancymenu/slideshows/new_loading_screen/images/image_1.png and /dev/null differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_10.jpg b/config/fancymenu/slideshows/new_loading_screen/images/image_10.jpg new file mode 100644 index 000000000..ab18ed4c8 Binary files /dev/null and b/config/fancymenu/slideshows/new_loading_screen/images/image_10.jpg differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_10.png b/config/fancymenu/slideshows/new_loading_screen/images/image_10.png deleted file mode 100644 index 5a2ae390a..000000000 Binary files a/config/fancymenu/slideshows/new_loading_screen/images/image_10.png and /dev/null differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_11.jpg b/config/fancymenu/slideshows/new_loading_screen/images/image_11.jpg new file mode 100644 index 000000000..72ecc67ab Binary files /dev/null and b/config/fancymenu/slideshows/new_loading_screen/images/image_11.jpg differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_11.png b/config/fancymenu/slideshows/new_loading_screen/images/image_11.png deleted file mode 100644 index 8c6a72b04..000000000 Binary files a/config/fancymenu/slideshows/new_loading_screen/images/image_11.png and /dev/null differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_12.jpg b/config/fancymenu/slideshows/new_loading_screen/images/image_12.jpg new file mode 100644 index 000000000..df64ba40e Binary files /dev/null and b/config/fancymenu/slideshows/new_loading_screen/images/image_12.jpg differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_12.png b/config/fancymenu/slideshows/new_loading_screen/images/image_12.png deleted file mode 100644 index 46c7717ad..000000000 Binary files a/config/fancymenu/slideshows/new_loading_screen/images/image_12.png and /dev/null differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_13.png b/config/fancymenu/slideshows/new_loading_screen/images/image_13.png deleted file mode 100644 index 3fd9d04ab..000000000 Binary files a/config/fancymenu/slideshows/new_loading_screen/images/image_13.png and /dev/null differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_14.png b/config/fancymenu/slideshows/new_loading_screen/images/image_14.png deleted file mode 100644 index fb88cd776..000000000 Binary files a/config/fancymenu/slideshows/new_loading_screen/images/image_14.png and /dev/null differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_15.png b/config/fancymenu/slideshows/new_loading_screen/images/image_15.png deleted file mode 100644 index 5e9b67664..000000000 Binary files a/config/fancymenu/slideshows/new_loading_screen/images/image_15.png and /dev/null differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_16.png b/config/fancymenu/slideshows/new_loading_screen/images/image_16.png deleted file mode 100644 index e6e7f3681..000000000 Binary files a/config/fancymenu/slideshows/new_loading_screen/images/image_16.png and /dev/null differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_17.png b/config/fancymenu/slideshows/new_loading_screen/images/image_17.png deleted file mode 100644 index 92e111cab..000000000 Binary files a/config/fancymenu/slideshows/new_loading_screen/images/image_17.png and /dev/null differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_18.png b/config/fancymenu/slideshows/new_loading_screen/images/image_18.png deleted file mode 100644 index 4976ee0dd..000000000 Binary files a/config/fancymenu/slideshows/new_loading_screen/images/image_18.png and /dev/null differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_2.jpg b/config/fancymenu/slideshows/new_loading_screen/images/image_2.jpg new file mode 100644 index 000000000..b05c7f8b1 Binary files /dev/null and b/config/fancymenu/slideshows/new_loading_screen/images/image_2.jpg differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_2.png b/config/fancymenu/slideshows/new_loading_screen/images/image_2.png deleted file mode 100644 index 27baf4aad..000000000 Binary files a/config/fancymenu/slideshows/new_loading_screen/images/image_2.png and /dev/null differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_3.jpg b/config/fancymenu/slideshows/new_loading_screen/images/image_3.jpg new file mode 100644 index 000000000..77442d940 Binary files /dev/null and b/config/fancymenu/slideshows/new_loading_screen/images/image_3.jpg differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_3.png b/config/fancymenu/slideshows/new_loading_screen/images/image_3.png deleted file mode 100644 index 11d5f8cdd..000000000 Binary files a/config/fancymenu/slideshows/new_loading_screen/images/image_3.png and /dev/null differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_4.jpg b/config/fancymenu/slideshows/new_loading_screen/images/image_4.jpg new file mode 100644 index 000000000..7ef9aeda3 Binary files /dev/null and b/config/fancymenu/slideshows/new_loading_screen/images/image_4.jpg differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_4.png b/config/fancymenu/slideshows/new_loading_screen/images/image_4.png deleted file mode 100644 index 8489b3a88..000000000 Binary files a/config/fancymenu/slideshows/new_loading_screen/images/image_4.png and /dev/null differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_5.jpg b/config/fancymenu/slideshows/new_loading_screen/images/image_5.jpg new file mode 100644 index 000000000..4436f59e8 Binary files /dev/null and b/config/fancymenu/slideshows/new_loading_screen/images/image_5.jpg differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_5.png b/config/fancymenu/slideshows/new_loading_screen/images/image_5.png deleted file mode 100644 index 3eb66bec6..000000000 Binary files a/config/fancymenu/slideshows/new_loading_screen/images/image_5.png and /dev/null differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_6.jpg b/config/fancymenu/slideshows/new_loading_screen/images/image_6.jpg new file mode 100644 index 000000000..7b66b8265 Binary files /dev/null and b/config/fancymenu/slideshows/new_loading_screen/images/image_6.jpg differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_6.png b/config/fancymenu/slideshows/new_loading_screen/images/image_6.png deleted file mode 100644 index f4220d7de..000000000 Binary files a/config/fancymenu/slideshows/new_loading_screen/images/image_6.png and /dev/null differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_7.jpg b/config/fancymenu/slideshows/new_loading_screen/images/image_7.jpg new file mode 100644 index 000000000..e590e905c Binary files /dev/null and b/config/fancymenu/slideshows/new_loading_screen/images/image_7.jpg differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_7.png b/config/fancymenu/slideshows/new_loading_screen/images/image_7.png deleted file mode 100644 index 57a6078f0..000000000 Binary files a/config/fancymenu/slideshows/new_loading_screen/images/image_7.png and /dev/null differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_8.jpg b/config/fancymenu/slideshows/new_loading_screen/images/image_8.jpg new file mode 100644 index 000000000..e6e2d3bcf Binary files /dev/null and b/config/fancymenu/slideshows/new_loading_screen/images/image_8.jpg differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_8.png b/config/fancymenu/slideshows/new_loading_screen/images/image_8.png deleted file mode 100644 index beaf8216d..000000000 Binary files a/config/fancymenu/slideshows/new_loading_screen/images/image_8.png and /dev/null differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_9.jpg b/config/fancymenu/slideshows/new_loading_screen/images/image_9.jpg new file mode 100644 index 000000000..0ba540fcc Binary files /dev/null and b/config/fancymenu/slideshows/new_loading_screen/images/image_9.jpg differ diff --git a/config/fancymenu/slideshows/new_loading_screen/images/image_9.png b/config/fancymenu/slideshows/new_loading_screen/images/image_9.png deleted file mode 100644 index 4d8eeae90..000000000 Binary files a/config/fancymenu/slideshows/new_loading_screen/images/image_9.png and /dev/null differ diff --git a/config/ftbquests/quests/chapters/applied_energistics_2.snbt b/config/ftbquests/quests/chapters/applied_energistics_2.snbt index 69b902d2a..69f3360bf 100644 --- a/config/ftbquests/quests/chapters/applied_energistics_2.snbt +++ b/config/ftbquests/quests/chapters/applied_energistics_2.snbt @@ -73,11 +73,11 @@ quests: [ { dependencies: ["00A2566109144D7F"] - description: ["With your first step on the Moon comes access to your first &bCertus Quartz&r vein.\\nDon't worry they're quite common and should be easy to locate, though having a decent &9Ore Scanner&r wouldn't hurt.\\n\\nWhether you decide to set up a miner or manually dig out a full vein, make sure to gather a &dhefty amount&r you'll need it to progress through &bAE2&r."] + description: ["{quests.ae2.certus_quartz.desc}"] id: "396E85A39FF414CF" shape: "gear" size: 2.0d - subtitle: "A first step for you, a big leap for AE2" + subtitle: "{quests.ae2.certus_quartz.subtitle}" tasks: [{ id: "2BD92F72533B9DA8" item: { @@ -87,17 +87,19 @@ "ftbfiltersystem:filter": "or(item(gtceu:poor_raw_certus_quartz)item(gtceu:raw_certus_quartz)item(gtceu:rich_raw_certus_quartz))" } } + title: "{quests.ae2.certus_quartz.task}" type: "item" }] - title: "Certus Quartz" + title: "{quests.ae2.certus_quartz.title}" x: -9.5d y: 0.0d } { dependencies: ["396E85A39FF414CF"] - description: ["One of your main resources for &dApplied Energistics 2&r will be &bCharged Certus Quartz&r.\\n\\nTo obtain it, there’s really only one method: crafting a &6HV&r Polarizer and feeding it power to polarize standard Certus Quartz Crystals.\\n\\nYou’ll quickly notice how long this recipe takes, so it’s strongly recommended to dedicate a Polarizer exclusively to this task.\\n\\nIt may seem expensive or daunting at first, but don't worry—it’s absolutely worth it.\\n\\nAlso, remember not to charge all your Certus Quartz!\\nYou’ll need some uncharged ones for items like the &aAnnihilation Core&r, so always keep a small reserve on hand."] + description: ["{quests.ae2.polarizer.desc}"] icon: "gtceu:hv_polarizer" id: "016D8D348A03C684" + subtitle: "{quests.ae2.polarizer.subtitle}" tasks: [ { id: "01CB170E98F09DCB" @@ -110,14 +112,16 @@ type: "item" } ] + title: "{quests.ae2.polarizer.title}" x: -8.0d y: -0.5d } { dependencies: ["396E85A39FF414CF"] - description: ["These two machines are mandatory to progress in &dApplied Energistics 2&r.\\n\\nThe &eSifter&r is used for ore processing to increase your yield of &bCertus Quartz&r, &7Quartzite&r, &fNether Quartz&r, &cRuby&r, and &dArmalcolite&r—all of which are essential for AE2. Alternatively, you can smelt the ores directly in a Furnace if you prefer mining more over processing.\\n\\nThe second machine, the &eMixer&r, is your only method to create &dFluix Crystals&r (more about that in the next quest). Don’t forget that you can also use the &6Greate Mixer&r as a &6HS&r-tier machine.\\n\\nLastly, keep in mind that an &aAutoclave&r can help you generate even more gems from dusts. Once you have the resources, crafting one will make your life significantly easier."] + description: ["{quests.ae2.hv_machines.desc}"] icon: "gtceu:hv_mixer" id: "050ECFC3BAF00D4B" + subtitle: "{quests.ae2.hv_machines.subtitle}" tasks: [ { id: "1CAC123EC6257297" @@ -128,6 +132,7 @@ "ftbfiltersystem:filter": "or(item(gtceu:hv_mixer)item(greate:stainless_steel_mechanical_mixer))" } } + title: "{quests.ae2.hv_machines.task}" type: "item" } { @@ -143,6 +148,7 @@ type: "item" } ] + title: "{quests.ae2.hv_machines.title}" x: -8.0d y: 0.5d } @@ -151,8 +157,9 @@ "016D8D348A03C684" "050ECFC3BAF00D4B" ] - description: ["As you can see, there are multiple ways to create &dFluix Crystals&r using a &eMixer&r.\\n\\nThe higher the purity of your input gems, the better the yield—that’s exactly why we recommended crafting a &eSifter&r earlier.\\n\\nYou’ll need a massive amount of &dFluix Crystals&r, especially since the &5liquid version&r is used in most &dApplied Energistics 2&r recipes.\\n\\nSo prepare yourself—you’re going to need a lot!"] + description: ["{quests.ae2.fluix_crystal.desc}"] id: "673433C6D5A451F8" + subtitle: "{quests.ae2.fluix_crystal.subtitle}" tasks: [{ id: "5C6F651131F36EC4" item: "ae2:fluix_crystal" @@ -163,9 +170,10 @@ } { dependencies: ["673433C6D5A451F8"] - description: ["Most of your &dFluix Crystals&r will be converted into &5Liquid Fluix&r.\\nHowever, make sure to keep a few in their crystal form for the occasional recipe that specifically requires it.\\n\\nAny &eExtractor&r will do the job here—no need for anything fancy."] + description: ["{quests.ae2.extractor.desc}"] icon: "gtceu:hv_extractor" id: "0DE253C8F7F37FB6" + subtitle: "{quests.ae2.extractor.subtitle}" tasks: [{ id: "0AE307B47D2589BA" item: { @@ -175,16 +183,19 @@ "ftbfiltersystem:filter": "or(item(gtceu:lv_extractor)item(gtceu:mv_extractor)item(gtceu:hv_extractor)item(gtceu:ev_extractor))" } } + title: "{quests.ae2.extractor.task}" type: "item" }] + title: "{quests.ae2.extractor.title}" x: -5.0d y: -0.5d } { dependencies: ["0DE253C8F7F37FB6"] - description: ["We told you you'd need a vast quantity of &dLiquid Fluix&r… but we didn’t mention there’s a way to drastically increase your yield per &dFluix Crystal&r.\\n\\nIntroducing: &bCryogenized Fluix&r, an ultra-cold fluid only craftable on the Moon using a &bVacuum Freezer&r. Simply combine &dLiquid Fluix&r with &bHelium-3&r.\\n\\nThis special fluid can be used as a substitute in nearly all recipes that require &dLiquid Fluix&r—but only when you're crafting on the Moon.\\n\\nMoon-based AE2 recipes come with huge benefits: reduced &6energy&r costs, less &ecomponents&r needed or sometimes both. Investing in a proper Moon base for AE2 production will pay off massively, especially in early game.\\n\\nIt’s not strictly mandatory—yet. But setting up a second base now will ease your future progression, as planet-based infrastructure becomes essential later on. So… why not get ahead of the curve?"] + description: ["{quests.ae2.fluix_liquid.desc}"] icon: "tfg:fluix_bucket" id: "5C98FE05CAE3DFD8" + subtitle: "{quests.ae2.fluix_liquid.subtitle}" tasks: [ { id: "7C0B612DC3D05042" @@ -210,12 +221,13 @@ type: "dimension" } ] + title: "{quests.ae2.fluix_liquid.title}" x: -3.5d y: -0.5d } { dependencies: ["0C0B09D66D0CFFBA"] - description: ["Here you are, ready to begin your &bAE2&r infrastructure!\\n\\nThis chapter will mainly guide you through what you can and cannot craft yet.\\nWe’ll also highlight the most important items you should focus on.\\n\\nHowever, to fully understand &bApplied Energistics 2&r, we strongly recommend:\\n\\n&7- Use the &b\"G\"&r keybind or open the &bME Guide&r we provide as a reward from this quest. It’s the best in-game tutorial for &bAE2&r.\\n&7- Watch some online videos about &bAE2&r on &61.20.1&r for more detailed explanations.\\n\\n&dPro tip&r: Many &bAE2&r recipes have &6alternative Moon recipes&r that are much cheaper.\\nOnce again, investing in your &bMoon base&r will greatly reward you throughout the entire game."] + description: ["{quests.ae2.ae_guide.desc}"] id: "6CF08AFB924905F0" rewards: [{ id: "34825A998EA88DB4" @@ -224,11 +236,13 @@ }] shape: "none" size: 1.0d + subtitle: "{quests.ae2.ae_guide.subtitle}" tasks: [{ id: "427156A026BF966E" - title: "Welcome to AE2" + title: "{quests.ae2.ae_guide.title}" type: "checkmark" }] + title: "{quests.ae2.ae_guide.title}" x: 0.5d y: 0.0d } @@ -254,20 +268,23 @@ } { dependencies: ["1DF9B1FB98CCD6EB"] - description: ["To get the printed circuits, you'll need to craft the &6HV&r Forming Press.\\n\\nThe good news? It has multiple input slots, meaning you can insert all your circuit &ePresses&r at once. With that setup, a single &6HV&r Forming Press is enough to handle every printed circuit type."] + description: ["{quests.ae2.forming_press.desc}"] id: "674ACE84D9EA6FB9" + subtitle: "{quests.ae2.forming_press.subtitle}" tasks: [{ id: "454FB38514F59E0E" item: "gtceu:hv_forming_press" type: "item" }] + title: "{quests.ae2.forming_press.title}" x: -3.5d y: 0.5d } { - description: ["One of the last things you’ll need before diving fully into &dApplied Energistics 2&r is collecting the 4 &ePresses&r.\\n\\nTo obtain them, you must locate an &eAE2 Meteorite&r on the &3Moon&r. Luckily, they aren't particularly rare, and a single meteorite should contain all four &ePresses&r.\\n\\n&cBe careful though&r — these meteorites are often guarded, and hostile entities may spawn nearby.\\n\\nGear up, bring a scanner if you have one, and happy hunting!"] + description: ["{quests.ae2.ae_press.desc}"] id: "1DF9B1FB98CCD6EB" shape: "none" + subtitle: "{quests.ae2.ae_press.subtitle}" tasks: [ { id: "20DB15A3C709E5AB" @@ -290,7 +307,7 @@ type: "item" } ] - title: "Inscriber Press" + title: "{quests.ae2.ae_press.title}" x: -3.5d y: 2.0d } @@ -447,8 +464,9 @@ "5C98FE05CAE3DFD8" "674ACE84D9EA6FB9" ] - description: ["All three &eProcessors&r will be used extensively across &dApplied Energistics 2&r recipes.\\n\\nThis also gives you a great opportunity to see how effective the &3Moon&r recipes can be for crafting them.\\n\\n&6But in the end, the choice is yours&r — build your infrastructure where it suits you best."] + description: ["{quests.ae2.ae_processor.desc}"] id: "0C0B09D66D0CFFBA" + subtitle: "{quests.ae2.ae_processor.subtitle}" tasks: [ { id: "50014040C38749DF" @@ -466,6 +484,7 @@ type: "item" } ] + title: "{quests.ae2.ae_processor.title}" x: -2.0d y: 0.0d } @@ -1224,5 +1243,6 @@ y: -10.5d } ] + subtitle: ["{quests.ae2.subtitle}"] title: "{quests.ae2}" } diff --git a/config/ftbquests/quests/chapters/gregtech_energy.snbt b/config/ftbquests/quests/chapters/gregtech_energy.snbt index 19cb8a03e..3b8a828b4 100644 --- a/config/ftbquests/quests/chapters/gregtech_energy.snbt +++ b/config/ftbquests/quests/chapters/gregtech_energy.snbt @@ -847,7 +847,11 @@ y: 1.5d } { - dependencies: ["109C57B63EE95E35"] + dependencies: [ + "109C57B63EE95E35" + "5826EC76931359B8" + ] + dependency_requirement: "one_completed" description: [ "{quests.gregtech_energy.large_solar.desc.1}" "{@pagebreak}" @@ -856,12 +860,64 @@ icon: "gtceu:large_solar_panel" id: "0585527D1854628B" subtitle: "{quests.gregtech_energy.large_solar.subtitle}" - tasks: [{ - disable_toast: true - id: "198E956830F835B2" - item: "gtceu:large_solar_panel" - type: "item" - }] + tasks: [ + { + disable_toast: true + id: "198E956830F835B2" + item: "gtceu:large_solar_panel" + type: "item" + } + { + id: "794BF3FC434ACB5B" + item: "gtceu:lv_input_bus" + type: "item" + } + { + id: "43C2823947C4AE47" + item: "gtceu:auto_maintenance_hatch" + type: "item" + } + { + id: "07B517D79E7CDAF0" + item: "gtceu:ev_energy_input_hatch" + type: "item" + } + { + count: 54L + id: "120C887A59B89D66" + item: "tfg:casings/machine_casing_iron_desh" + type: "item" + } + { + count: 24L + id: "166503BF54649F4A" + item: "tfg:casings/machine_casing_red_solar_panel" + type: "item" + } + { + id: "3E71E1F848336782" + item: "ad_astra:iron_plating" + type: "item" + } + { + count: 16L + id: "294567EB2BE47456" + item: { Count: 16, id: "gtceu:cleanroom_glass" } + type: "item" + } + { + count: 20L + id: "516481695EBA7FCD" + item: { Count: 20, id: "ad_astra:iron_plateblock" } + type: "item" + } + { + count: 3L + id: "1764824C0C01F914" + item: { Count: 3, id: "ad_astra:glowing_iron_pillar" } + type: "item" + } + ] title: "{quests.gregtech_energy.large_solar.title}" x: -8.5d y: 1.5d diff --git a/config/ftbquests/quests/chapters/hv__high_voltage.snbt b/config/ftbquests/quests/chapters/hv__high_voltage.snbt index 41f30e4e0..4c9502ab8 100644 --- a/config/ftbquests/quests/chapters/hv__high_voltage.snbt +++ b/config/ftbquests/quests/chapters/hv__high_voltage.snbt @@ -19,6 +19,20 @@ x: -7.5d y: -6.5d } + { + id: "33D3C2A9337335D2" + linked_quest: "493D733A5438DD7E" + x: 10.0d + y: 0.0d + } + { + id: "2CDC2C148418F176" + linked_quest: "396E85A39FF414CF" + shape: "gear" + size: 2.0d + x: 13.0d + y: -6.0d + } ] quests: [ { @@ -266,11 +280,7 @@ } { dependencies: ["197A13A0790F000B"] - description: [ - "{quests.high_voltage.rutile_loop.desc.1}" - "{@pagebreak}" - "{quests.high_voltage.rutile_loop.desc.2}" - ] + description: ["{quests.high_voltage.rutile_loop.desc}"] icon: "gtceu:rutile_dust" id: "59DFC4DA7D29C315" shape: "square" @@ -326,7 +336,7 @@ { dependencies: ["7E755297E9685374"] description: [ - "{quests.high_voltage.nichrome_coils.desc.1" + "{quests.high_voltage.nichrome_coils.desc.1}" "{@pagebreak}" "{quests.high_voltage.nichrome_coils.desc.2}" ] @@ -408,7 +418,7 @@ item: "gtceu:hv_circuit_assembler" type: "item" }] - title: "{quests.high_voltage.circuit_assembler.title" + title: "{quests.high_voltage.circuit_assembler.title}" x: 10.0d y: 2.0d } @@ -452,7 +462,7 @@ description: [ "{quests.high_voltage.cleanroom.desc.1}" "{@pagebreak}" - "{quests.high_voltage.cleanroom.desc.2" + "{quests.high_voltage.cleanroom.desc.2}" ] icon: "gtceu:cleanroom" id: "3568BC9742092FC5" @@ -610,24 +620,31 @@ "{quests.high_voltage.tnt.desc.1}" "{@pagebreak}" "{quests.high_voltage.tnt.desc.2}" + "{@pagebreak}" + "{quests.high_voltage.tnt.desc.3}" ] icon: "minecraft:tnt" id: "2B7B214EDE0B45A2" size: 1.0d tasks: [ - { - id: "1CB85F57BA45252D" - item: "gtceu:gelled_toluene" - type: "item" - } { id: "04BF6A36E965C348" item: "minecraft:tnt" type: "item" } { - id: "6DC25EED8E91BEC2" - item: "gtceu:toluene_bucket" + id: "162CDC2567F6D6A8" + item: "gtceu:industrial_tnt" + type: "item" + } + { + id: "4CFB597542DD0194" + item: "gtceu:dynamite" + type: "item" + } + { + id: "0BF4703D1DBAA5B7" + item: "gtceu:powderbarrel" type: "item" } ] @@ -954,9 +971,13 @@ "05ABC370D7153350" "16B735F9C391D260" ] - description: ["To make the &6Rocket Alloy&r, you will need to put &7Aluminium&r, &7Stainless Steel&r and &cLiquid Red Steel&r into your new &6HV&r Mixer.\\n\\nThe recipe takes some time, so expect to have your mixer fully dedicated to this step.\\n\\nAfter that, your dust will need to be smelted in your EBF at &bMV&r. If you already have &6Nichrome Coils&r and your EBF is running at &6HV&r, you will be able to &aPerfect Overclock&r the recipe (&7check the Gregtech Energy chapter if you don't understand&r).\\n\\nYou can also cool the ingots down with a &9Chemical Bath&r or, if you already have one, a &9Vacuum Freezer&r for a shorter processing time.\\n\\n&7144mb equals 1 ingot&r, so make sure not to extract too much &cRed Steel&r.\\n\\nYou will need &685 Rocket Alloy&r ingots total, which means:\\n- &760 Aluminium&r\\n- &720 Stainless Steel&r\\n- &710 Red Steel&r\\n\\n&aNothing too bad!&r"] + description: [ + "{quests.high_voltage.space_alloy.desc.1}" + "{@pagebreak}" + "{quests.high_voltage.space_alloy.desc.2}" + ] id: "56D337E264A4154F" - subtitle: "It's a new material" + subtitle: "{quests.high_voltage.space_alloy.subtitle}" tasks: [ { id: "0FCF38A07889B205" @@ -969,7 +990,7 @@ type: "item" } ] - title: "Space Alloy" + title: "{quests.high_voltage.space_alloy.title}" x: 5.0d y: -2.0d } @@ -978,9 +999,9 @@ "56D337E264A4154F" "41D32C5178760F47" ] - description: ["The &6Rocket Nose Cone&r is the hardest part of your Rocket.\\nYou will need a hefty amount of &aPolyethylene&r — so we hope you already have it passively produced — and a &6HV&r Emitter.\\nYou should be able to get your hands on &dChromium&r by electrolyzing &cRuby Dust&r.\\n\\nThe &aVitrified Ender Pearl&r is trickier and requires you to follow the quest unlocked by the &6HV Chemical Reactor&r.\\nGet ready to make &cTNT&r, build an &5Implosion Compressor&r, and recreate the famous Enderman drop — since you won’t find Ender Pearls natively in &2TFG&r."] + description: ["{quests.high_voltage.rocket_nose_cone.desc}"] id: "1E307CD76691C24F" - subtitle: "The nose knows..." + subtitle: "{quests.high_voltage.rocket_nose_cone.subtitle}" tasks: [{ id: "05AEC4A2F295098C" item: "ad_astra:rocket_nose_cone" @@ -991,24 +1012,25 @@ } { dependencies: ["7FA0ACB7F161F378"] - description: ["Well, that was quite the experience! Between the &9Rutile Processing&r line, the &5Vacuum Chamber&r, and the &5Cleanroom&r, you’ve uncovered a lot of new mechanics. \\nThat’s great — because this is only the beginning.\\n\\nDid you walk on the &fMoon&r yet? If not, we strongly encourage you to go. You’ll encounter &dessential mechanics&r for later stages of the modpack and unlock &bAE2&r, all while gaining access to &aricher ore veins&r.\\n\\nIf you’ve already made your lunar journey, then we hope your infrastructure is solid — because it’s time to enter &5EV&r. This complex chapter will introduce &7even more advanced systems&r and take your factory to the next level."] + description: ["{quests.high_voltage.ev_machine_hull.desc}"] id: "4214D5C501C35876" shape: "gear" size: 4.0d - subtitle: "That's half of Gregtech tiers" + subtitle: "{quests.high_voltage.ev_machine_hull.subtitle}" tasks: [{ id: "766F3215D322BAAE" item: "gtceu:ev_machine_hull" type: "item" }] + title: "{quests.high_voltage.ev_machine_hull.title}" x: -9.0d y: -2.0d } { dependencies: ["56D337E264A4154F"] - description: ["We made the &6Rocket Fins&r use an &bAlloy Smelter&r simply to remind you that you now have access to the &bMulti-Smelter&r — a wonderful small EBF that can be used as a &eFurnace&r or an &bAlloy Smelter&r.\\n\\nThe quest to craft it is in the &bMV&r Chapter. We really advise you to think about it if you haven't yet."] + description: ["{quests.high_voltage.rocket_fins.desc}"] id: "3E2F96A02FEF12AC" - subtitle: "So you reach the right destination" + subtitle: "{quests.high_voltage.rocket_fins.subtitle}" tasks: [{ count: 4L id: "433BFEE192C565E8" @@ -1021,9 +1043,9 @@ } { dependencies: ["56D337E264A4154F"] - description: ["The &6Steel Engine&r is required so your rocket can &atravel to the Moon&r.\\n\\nThe recipe isn't too bad — we assume you're ready to tackle each part.\\n\\nTo get &91152mb of Liquid Blue Steel&r, you will need &78 ingots&r."] + description: ["{quests.high_voltage.steel_engine.desc}"] id: "4AD686D18247315E" - subtitle: "Blue Steel is back baby" + subtitle: "{quests.high_voltage.steel_engine.subtitle}" tasks: [{ id: "57D58E699F70DD55" item: "ad_astra:steel_engine" @@ -1034,14 +1056,16 @@ } { dependencies: ["3FBDC8552F7D8008"] - description: ["&6For each travel you will need Rocket Fuel&r, it seems complicated and it is quite a long process but you can make Rocket Fuel from &bChlorine&r, &bMethane&r, &bNitrogen&r, &bOxygen&r and &bWater&r. Nothing too bad, also if you already have your &5Large Chemical Reactor&r you could unlock some bypass.\\n\\n&7We advise you to use EMI Recipe Tree to have an easier time understanding each step. Simply click on the small icon with 4 squares on the right of the crafting recipe.&r"] + dependency_requirement: "one_completed" + description: ["{quests.high_voltage.rocket_fuel.desc}"] id: "6EF2D4D1C1CC9D3E" - subtitle: "Easier than you think" + subtitle: "{quests.high_voltage.rocket_fuel.subtitle}" tasks: [{ id: "0E3E97E93E9F3A3A" item: "gtceu:rocket_fuel_bucket" type: "item" }] + title: "{quests.high_voltage.rocket_fuel.title}" x: 10.0d y: -2.0d } @@ -1051,25 +1075,16 @@ "6752CC523D38A214" "038B204DAC9C863D" ] - description: ["&2Congrats&r, you’ve successfully landed on the &7Moon&r!\\nHere, you’ll find &bCertus Quartz&r veins, allowing you to begin unlocking &dAE2&r.\\n\\nBut that’s not all—some veins here have much higher density than those on Earth.\\n\\nFor instance, you can easily find &6Ilmenite&r, &7Bauxite&r, &7Aluminium&r, and &5Chromite&r veins on the Moon.\\nEstablishing a small base here will be crucial to keep progressing.\\n\\nYour biggest challenge will be transporting resources, as there are no easy cross-dimensional tools like the &5Ender Chest&r or &dAE2 Quantum Link&r just yet."] + description: ["{quests.high_voltage.welcome_moon.desc}"] id: "00A2566109144D7F" rewards: [{ - id: "13A577B2BB08460E" - item: { - Count: 1 - ForgeCaps: { - "tfc:food": { - creationDate: 2718000L - traits: [ ] - } - } - id: "ad_astra:cheese" - } + id: "4E4076733CA38807" + item: "ad_astra:cheese_block" type: "item" }] shape: "gear" size: 4.0d - subtitle: "Hope you have everything to come back" + subtitle: "{quests.high_voltage.welcome_moon.subtitle}" tasks: [{ dimension: "ad_astra:moon" icon: "ad_astra:moon_globe" @@ -1077,6 +1092,7 @@ title: "I'm on the Moon" type: "dimension" }] + title: "{quests.high_voltage.welcome_moon.title}" x: 13.0d y: -2.0d } @@ -1085,9 +1101,13 @@ "3FBDC8552F7D8008" "72BD27FEEB34C7B0" ] - description: ["&6Before crossing the last Earth boundary,&r you should be sure to not die when you arrive on the moon.\\n\\nTo do that, you're gonna need a &bfull set of Space Suit&r loaded with &bOxygen&r — and if you're careful, even a &ebackup can&r.\\n\\n&cThe hardest part&r will definitely be the &dPolycaprolactam Fabric&r.\\n\\nYou will need an &cEBF&r and a &6HV&r &eChemical Reactor&r.\\n\\nFrom there, you'll be able to craft it using &aBenzene&r, &bHydrogen&r, &9Chlorine&r, &bOxygen&r and &3Ammonia&r.\\n\\nWe won't tell you every step, but you should be able to figure it out yourself through &aEMI&r now that you're a fierce Gregtech player.\\n\\nOnce everything is ready, to fill your space suit and can, simply &eRight-Click&r a drum or tank filled with &bOxygen&r."] + description: [ + "{quests.high_voltage.space_suit.desc.1}" + "{@pagebreak}" + "{quests.high_voltage.space_suit.desc.2}" + ] id: "038B204DAC9C863D" - subtitle: "Let's be honest, this may be the hardest" + subtitle: "{quests.high_voltage.space_suit.subtitle}" tasks: [ { id: "2BB34BBE18F6816F" @@ -1133,16 +1153,28 @@ } type: "item" } + { + id: "1E898EFDBF66CD54" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(ad_astra:gas_tank)item(ad_astra:large_gas_tank))" + } + } + title: "{quests.high_voltage.space_suit.task}" + type: "item" + } ] - title: "Space Suit" + title: "{quests.high_voltage.space_suit.title}" x: 10.0d y: -1.0d } { dependencies: ["3FBDC8552F7D8008"] - description: ["&6The Launch Pad is indispensable to launch your Rocket.&r That's the only block on which you will be able to put your Rocket.\\n\\n&cReally important&r but you will need &cTWO Launch Pads&r as it will stay on your launching site and you will need another one to travel back."] + description: ["{quests.high_voltage.launch_pad.desc}"] id: "6752CC523D38A214" - subtitle: "Without it impossible to launch" + subtitle: "{quests.high_voltage.launch_pad.subtitle}" tasks: [{ count: 2L id: "4451763FB0D75C2D" @@ -1158,29 +1190,27 @@ "04F6E968CEEC3D49" ] dependency_requirement: "one_completed" - description: [ - "You are beginning to refine your fuels much better, you should be sure you had a look at the Energy Chapter." - "" - "{ \"text\": \"Click here\", \"underlined\": \"true\", \"clickEvent\": { \"action\": \"change_page\", \"value\": \"2CDB9778C7A30044\" } }" - ] + description: ["{ \"text\": \"{quests.high_voltage.linked_quest_energy.desc}\", \"bold\": \"true\", \"clickEvent\": { \"action\": \"change_page\", \"value\": \"2CDB9778C7A30044\" } }"] id: "595C5A01358B9550" + subtitle: "{quests.high_voltage.linked_quest_energy.subtitle}" tasks: [{ id: "4E59108C7FC5421C" - title: "Have a look at the Energy Chapter" + title: "{quests.high_voltage.linked_quest_energy.task}" type: "checkmark" }] + title: "{quests.high_voltage.linked_quest_energy.title}" x: 0.0d y: 11.0d } { dependencies: ["14D277A164202FF8"] description: [ - "This may be the first time you encounter the &cBedrock Ore Miner&r, as it's rarely used in GregTech. \\nIt functions similarly to the &bFluid Drilling Rig&r, except the veins it targets will &nnever deplete&r.\\n\\nIt doesn't consume much energy — running fine at &bMV&r or &6HV&r — and requires &ano input materials&r.\\n\\nSo, what's the catch? \\nFinding the veins." + "{quests.high_voltage.bedrock_miner.desc.1}" "{@pagebreak}" - "You’ll need a &6HV&r Ore Prospector set to &oBedrock Ore Mode&r (&7Shift + Right Click&r), and a fair bit of patience. Once you find your target, you’ll also have to figure out how to bring the resources back to your outpost.\\n\\nOn the &fMoon&r, you can find 5 unique bedrock ore veins:\\n\\n&7- Copper and Tin&r: Contains &6Chalcopyrite&r, &eZeolite&r, &fCassiterite&r, and &cRealgar (Arsenic)&r\\n&7- Tin Vein&r: Contains mainly &fCassiterite&r and &fTin&r\\n&7- Asbestos&r\\n&7- Magnetite (Iron) and Gold&r: Very rare — don't actively search for it\\n&7- A mysterious, &dextremely rare&r one... \\nIf you find it, you’ll be thrilled. If not, just live in peace. Don’t worry." + "{quests.high_voltage.bedrock_miner.desc.2}" ] id: "2878C147D273F774" - subtitle: "Unlimited ores?" + subtitle: "{quests.high_voltage.bedrock_miner.subtitle}" tasks: [{ id: "55981710612D21D7" item: "gtceu:mv_bedrock_ore_miner" @@ -1189,20 +1219,6 @@ x: 2.5d y: -10.5d } - { - dependencies: ["05ABC370D7153350"] - description: ["Now that you unlocked the &6HV&r Mixer, it becomes possible to make &aCetane Boosted Diesel&r, granting a &e180%&r increase in potency.\\n\\nThe only tricky part is obtaining &bTetranitromethane&r. We recommend producing it by mixing &9Nitric Acid&r and &dEthenone&r. Ethenone itself isn’t hard to make if you combine &9Sulfuric Acid&r - which you should have plenty of by now - and &cAcetic Acid&r, easily produced from &3Oxygen&r and &5Ethylene&r.\\n\\n&cDon’t forget&r to set your machine on Circuit 2, or else you’ll end up producing &6Polyethylene&r instead!"] - id: "7401B47E24593AB2" - shape: "heart" - subtitle: "Much more powerful than Bio Diesel" - tasks: [{ - id: "54C63404B5CE7E5F" - item: "gtceu:cetane_boosted_diesel_bucket" - type: "item" - }] - x: 3.5d - y: -3.5d - } { description: ["{quests.high_voltage.kaolinite_powder.desc}"] disable_toast: true diff --git a/config/ftbquests/quests/chapters/lv__low_voltage.snbt b/config/ftbquests/quests/chapters/lv__low_voltage.snbt index 13e420b27..12d69cd73 100644 --- a/config/ftbquests/quests/chapters/lv__low_voltage.snbt +++ b/config/ftbquests/quests/chapters/lv__low_voltage.snbt @@ -513,6 +513,11 @@ "{quests.low_voltage.lv_ebf.desc.2}" ] id: "1E9BE8D3F8A602DC" + rewards: [{ + id: "5A3DDA916C125D0F" + item: "gtceu:terminal" + type: "item" + }] shape: "octagon" size: 2.0d subtitle: "{quests.low_voltage.lv_ebf.subtitle}" @@ -604,10 +609,7 @@ y: 0.5d } { - dependencies: [ - "5B2696206205CB2E" - "70432F650591353C" - ] + dependencies: ["6042514C8FC54334"] description: ["{quests.low_voltage.cupronickel_coil.desc}"] icon: { Count: 1 @@ -626,7 +628,7 @@ type: "item" }] title: "{quests.low_voltage.cupronickel_coil.title}" - x: -7.5d + x: -8.5d y: 6.5d } { @@ -913,7 +915,10 @@ y: 12.5d } { - dependencies: ["15928F50AE80A5CF"] + dependencies: [ + "15928F50AE80A5CF" + "5263F866638D875C" + ] dependency_requirement: "one_completed" description: [ "{quests.low_voltage.lv_oxygen.desc.1}" @@ -1538,6 +1543,21 @@ x: 5.5d y: 9.0d } + { + dependencies: ["5B2696206205CB2E"] + description: ["{quests.low_voltage.cupronickel_ingot.desc}"] + id: "6042514C8FC54334" + subtitle: "{quests.low_voltage.cupronickel_ingot.subtitle}" + tasks: [{ + count: 128L + id: "701DEB748320107C" + item: "gtceu:cupronickel_ingot" + type: "item" + }] + title: "{quests.low_voltage.cupronickel_ingot.title}" + x: -7.5d + y: 6.5d + } ] subtitle: ["{quests.low_voltage.subtitle}"] title: "{quests.low_voltage}" diff --git a/config/ftbquests/quests/chapters/progression.snbt b/config/ftbquests/quests/chapters/progression.snbt index 1ffc00165..af770543d 100644 --- a/config/ftbquests/quests/chapters/progression.snbt +++ b/config/ftbquests/quests/chapters/progression.snbt @@ -352,6 +352,12 @@ x: 13.5d y: -3.0d } + { + id: "5A5FBC9F634D16FA" + linked_quest: "6042514C8FC54334" + x: 11.0d + y: -3.0d + } ] quests: [ { @@ -684,19 +690,6 @@ x: -1.0d y: 8.0d } - { - dependencies: ["5B2696206205CB2E"] - id: "70432F650591353C" - shape: "square" - size: 1.0d - tasks: [{ - id: "77875BBDC0A937A9" - item: "gtceu:cupronickel_ingot" - type: "item" - }] - x: 11.0d - y: -3.0d - } { description: [ "{quests.development.explanation.desc.1}" diff --git a/config/ftbquests/quests/chapters/questsmetallurgy.snbt b/config/ftbquests/quests/chapters/questsmetallurgy.snbt index fa48fa874..d2ffcdfec 100644 --- a/config/ftbquests/quests/chapters/questsmetallurgy.snbt +++ b/config/ftbquests/quests/chapters/questsmetallurgy.snbt @@ -448,8 +448,8 @@ type: "dimension" } { - entity: "kaolinclayze:tfc" - icon: "kaolinclayze:tfc_spawn_egg" + entity: "primitive_creatures:tfc" + icon: "primitive_creatures:tfc_spawn_egg" id: "710B94F88C7078C9" optional_task: true type: "kill" @@ -743,8 +743,8 @@ type: "dimension" } { - entity: "kaolinclayze:golem_2" - icon: "kaolinclayze:golem_2_spawn_egg" + entity: "primitive_creatures:golem_2" + icon: "primitive_creatures:golem_2_spawn_egg" id: "0981F64F296CDDC5" optional_task: true type: "kill" diff --git a/config/ftbquests/quests/chapters/questssteam_age.snbt b/config/ftbquests/quests/chapters/questssteam_age.snbt index f0e555712..a256864da 100644 --- a/config/ftbquests/quests/chapters/questssteam_age.snbt +++ b/config/ftbquests/quests/chapters/questssteam_age.snbt @@ -34,6 +34,12 @@ x: -29.0d y: 0.0d } + { + id: "7C03FE015586C652" + linked_quest: "55213ACBF5F5D398" + x: -14.5d + y: 13.0d + } ] quests: [ { diff --git a/config/ftbquests/quests/chapters/queststfc_tips.snbt b/config/ftbquests/quests/chapters/queststfc_tips.snbt index e86f3a8c5..d4dc05675 100644 --- a/config/ftbquests/quests/chapters/queststfc_tips.snbt +++ b/config/ftbquests/quests/chapters/queststfc_tips.snbt @@ -70,15 +70,7 @@ } { dependencies: ["173F6FA60A5B280B"] - description: [ - "{quests.tfg_tips.beneath.desc}" - "DELETE:" - "# Beneath Must Haves" - "* How to go there" - "* Kaolin Claze" - "* Creation of Hellforge" - "* Juicer" - ] + description: ["{quests.tfg_tips.beneath.desc}"] disable_toast: true icon: "minecraft:netherrack" id: "4AA0EBFBA5D8788C" diff --git a/config/ftbquests/quests/chapters/space_survival.snbt b/config/ftbquests/quests/chapters/space_survival.snbt index 845b576ee..ba6b10416 100644 --- a/config/ftbquests/quests/chapters/space_survival.snbt +++ b/config/ftbquests/quests/chapters/space_survival.snbt @@ -145,6 +145,12 @@ x: -5.5d y: -5.5d } + { + id: "52ABE7722ABB3281" + linked_quest: "0585527D1854628B" + x: -2.5d + y: 1.0d + } ] quests: [ { @@ -276,23 +282,6 @@ x: -7.0d y: -3.0d } - { - dependencies: [ - "33374462FF07BC75" - "3FBDC8552F7D8008" - ] - dependency_requirement: "one_completed" - description: ["&6For each travel you will need Rocket Fuel&r, it seems complicated and it is quite a long process but you can make Rocket Fuel from &bChlorine&r, &bMethane&r, &bNitrogen&r, &bOxygen&r and &bWater&r. Nothing too bad, also if you already have your &5Large Chemical Reactor&r you could unlock some bypass.\\n\\n&7We advise you to use EMI Recipe Tree to have an easier time understanding each step. Simply click on the small icon with 4 squares on the right of the crafting recipe.&r"] - id: "60D903E9FA91DB42" - subtitle: "Easier than you think" - tasks: [{ - id: "6A00144D5C0E9FA8" - item: "gtceu:rocket_fuel_bucket" - type: "item" - }] - x: -7.0d - y: -5.5d - } { dependencies: ["00A2566109144D7F"] description: ["{quests.space_survival.solar_panels.desc}"] @@ -517,64 +506,21 @@ y: -6.5d } { - dependencies: ["5826EC76931359B8"] - description: [ - "{quests.gregtech_energy.large_solar.desc.1}" - "{@pagebreak}" - "{quests.gregtech_energy.large_solar.desc.2}" + dependencies: [ + "3FBDC8552F7D8008" + "33374462FF07BC75" ] - icon: "gtceu:large_solar_panel" - id: "0BBD6807505AA96E" - subtitle: "{quests.gregtech_energy.large_solar.subtitle}" - tasks: [ - { - id: "08F8A202DEFBD791" - item: "gtceu:large_solar_panel" - type: "item" - } - { - id: "33009033269EAD48" - item: "gtceu:lv_input_bus" - type: "item" - } - { - id: "3F0202755438BE30" - item: "gtceu:auto_maintenance_hatch" - type: "item" - } - { - id: "76E075BC64697885" - item: "gtceu:ev_energy_output_hatch" - type: "item" - } - { - count: 54L - id: "2D09546682F6DD20" - item: { Count: 32, id: "tfg:casings/machine_casing_iron_desh" } - type: "item" - } - { - count: 24L - id: "7F1A78AB02673FC8" - item: { Count: 24, id: "tfg:casings/machine_casing_red_solar_panel" } - type: "item" - } - { - count: 20L - id: "13DB8D7072DE7BEA" - item: { Count: 20, id: "ad_astra:iron_plateblock" } - type: "item" - } - { - count: 16L - id: "1D6554EA7A76178F" - item: { Count: 16, id: "gtceu:cleanroom_glass" } - type: "item" - } - ] - title: "{quests.gregtech_energy.large_solar.title}" - x: -2.5d - y: 1.0d + dependency_requirement: "one_completed" + description: ["&6For each travel you will need Rocket Fuel&r, it seems complicated and it is quite a long process but you can make Rocket Fuel from &bChlorine&r, &bMethane&r, &bNitrogen&r, &bOxygen&r and &bWater&r. Nothing too bad, also if you already have your &5Large Chemical Reactor&r you could unlock some bypass.\\n\\n&7We advise you to use EMI Recipe Tree to have an easier time understanding each step. Simply click on the small icon with 4 squares on the right of the crafting recipe.&r"] + id: "0B80972F50E08B8D" + subtitle: "Easier than you think" + tasks: [{ + id: "5FBF567FFC837BFA" + item: "gtceu:rocket_fuel_bucket" + type: "item" + }] + x: -7.0d + y: -5.5d } ] subtitle: ["{quests.space_survival.subtitle}"] diff --git a/config/ftbquests/quests/chapters/tips__tools.snbt b/config/ftbquests/quests/chapters/tips__tools.snbt index ea8dc2477..316e01471 100644 --- a/config/ftbquests/quests/chapters/tips__tools.snbt +++ b/config/ftbquests/quests/chapters/tips__tools.snbt @@ -568,26 +568,15 @@ ] dependency_requirement: "one_completed" description: [ - "This is a guide on how to automatically route &lall&r your Hot Ingots to your Chemical Bath, while keeping everything automated in tip-top shape." - "" - "The cheap way would be to use filters, and manually add Hot Ingots one by one... which is so boring! Let's try the fun option." - "" - "Install an &aItem Tag Filter&r Cover on the side of your &3Chemical Bath&r, open it and set it to whitelist \"&e&lhot_ingots&r\"." - "" - "From here, you can route with &9any logistics system&r of your choice." + "{quests.high_voltage.250_iq.desc.1}" "{@pagebreak}" - "Connect the output of your &3EBF(s)&r to the input of your &3Chemical Bath&r and the output dump (Chest or Crate)." - "You can also have a &dRestrictive Pipe&r in front of the output dump to ensure the Chemical Bath will be prioritized." - "" - "&l&9Note:&r If you wish to know more tags for more automation setups, they will display if you press Shift when hovering over an item. For instance, an item tagged with &e&o#forge:plates/copper&r would be filtered as &e&lplates/copper&r." - "" - "&9Other Note:&r The Item Tag Filter partially supports &dregex&r. Hover over the info icon for more information." + "{quests.high_voltage.250_iq.desc.2}" ] icon: "gtceu:item_tag_filter" id: "7C1FD81C5DCFB74E" shape: "square" size: 1.0d - subtitle: "Stop burning your darn hands!" + subtitle: "{quests.high_voltage.250_iq.subtitle}" tasks: [ { id: "34DEDF3B7F0DB3BC" @@ -600,7 +589,7 @@ type: "item" } ] - title: "250IQ" + title: "{quests.high_voltage.250_iq.title}" x: 10.0d y: 9.0d } @@ -2493,6 +2482,27 @@ x: 0.0d y: 5.0d } + { + dependencies: ["150B7C5CD152E1BA"] + description: ["{quests.tfg_tips.tools_tips.harvest_basket.desc}"] + id: "5B0A9757F1EF1B9E" + subtitle: "{quests.tfg_tips.tools_tips.harvest_basket.subtitle}" + tasks: [{ + id: "15C2F940F5A576D5" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "item_tag(tfg:harvester)" + } + } + title: "{quests.tfg_tips.tools_tips.harvest_basket.task}" + type: "item" + }] + title: "{quests.tfg_tips.tools_tips.harvest_basket.title}" + x: -6.0d + y: 10.0d + } ] subtitle: ["{quests.tfg_tips.tools_tips.subtitle}"] title: "Tips - Tools" diff --git a/config/jade/plugins.json b/config/jade/plugins.json index 91ce866aa..ccc7176e3 100644 --- a/config/jade/plugins.json +++ b/config/jade/plugins.json @@ -131,6 +131,7 @@ "cheese": true, "shelf": true, "oven_top": true, + "pumping_station": true, "solar_drier": true, "oven_bottom": true, "fruit_tree_sapling": true, diff --git a/config/jade/sort-order.json b/config/jade/sort-order.json index e12840532..3ae20eece 100644 --- a/config/jade/sort-order.json +++ b/config/jade/sort-order.json @@ -56,6 +56,7 @@ "firmalife:jarbnet": null, "firmalife:oven_bottom": null, "firmalife:oven_top": null, + "firmalife:pumping_station": null, "firmalife:shelf": null, "firmalife:solar_drier": null, "firmalife:string": null, diff --git a/config/jei/recipe-category-sort-order.ini b/config/jei/recipe-category-sort-order.ini index 9ab3cfa56..639058729 100644 --- a/config/jei/recipe-category-sort-order.ini +++ b/config/jei/recipe-category-sort-order.ini @@ -96,7 +96,6 @@ create:packing create:pressing create:sandpaper_polishing create:sawing -create:wood_cutting createaddition:charging createaddition:liquid_burning expatternprovider:circuit_cutter @@ -108,7 +107,6 @@ greate:automatic_packing greate:automatic_shapeless greate:fan_haunting greate:pressing -greate:wood_cutting jei:information jumbofurnace:jumbo_furnace_upgrade jumbofurnace:jumbo_smelting @@ -120,3 +118,18 @@ vintageimprovements:grinder_sandpaper_polishing vintageimprovements:leaves_vibrating vintageimprovements:polishing vintageimprovements:unpacking +ad_astra:alloying +ad_astra:compressing +ad_astra:cryo_freezing +ad_astra:nasa_workbench +ad_astra:oxygen_loading +ad_astra:refining +species:cruncher_pellet +species:goober_goo +tacz:attachment_query +tacz:gun_smith_table/applied_armorer_worckbench_applied_armorer +tacz:gun_smith_table/tacz_ammo_workbench +tacz:gun_smith_table/tacz_attachment_workbench +tacz:gun_smith_table/tacz_gun_smith_table +taczammoquery:ammo_query +tfclunchbox:fill_capsule diff --git a/config/modernfix-mixins.properties b/config/modernfix-mixins.properties index 15abb4d5a..a1b5d1927 100644 --- a/config/modernfix-mixins.properties +++ b/config/modernfix-mixins.properties @@ -86,6 +86,7 @@ # mixin.perf.forge_cap_retrieval=true # (default) # mixin.perf.forge_registry_alloc=true # (default) # mixin.perf.forge_registry_lambda=true # (default) +# mixin.perf.ingredient_item_deduplication=false # (default) # mixin.perf.kubejs=true # (default) # mixin.perf.lazy_search_tree_registry=true # (default) # mixin.perf.memoize_creative_tab_build=true # (default) diff --git a/config/moonlight-client.toml b/config/moonlight-client.toml index 5add87dc8..55024309e 100644 --- a/config/moonlight-client.toml +++ b/config/moonlight-client.toml @@ -10,4 +10,8 @@ #Fix minecraft entity shading to be exactly the same that blocks use. (1 for up,0.8 for north, 0.6 for west and 0.5 for down).This means that if you have a model and render it with a tile renderer or entity it will appear identical as one rendered via baked models.Using no gui will prevent it from changing item rendered in GUIs, in case you dont like that look.Note there is a known compat issue with Figura mod. Keep this True or False with that one #Allowed Values: FALSE, NO_GUI, TRUE consistent_entity_renderer_shading = "NO_GUI" + #ONLY for debugging purpose. blocktypes_debug.txt, the file can be found in ~/.minecraft/logs/... + blocktypes_debug = false + woodtypes_debug = false + leavestypes_debug = false diff --git a/config/packetfixer.properties b/config/packetfixer.properties index 193a22b4a..bf2f88ce1 100644 --- a/config/packetfixer.properties +++ b/config/packetfixer.properties @@ -1,7 +1,7 @@ #Packet Fixer config file. #Default values (minecraft default): nbtMaxSize 2097152, packetSize 1048576, decoderSize 8388608 and varInt21Size 3. #Max values are 2147483647 for packetSize/decoderSize/varInt21 and 9223372036854775807 for nbtMaxSize. -#Sun Jun 29 07:00:58 YEKT 2025 +#Sat Jul 19 21:52:19 YEKT 2025 utfSize=3276700 allSizesUnlimited=true forceUnlimitedNbtEnabled=false diff --git a/config/sophisticatedcore-common.toml b/config/sophisticatedcore-common.toml index 255324cde..df76caa9d 100644 --- a/config/sophisticatedcore-common.toml +++ b/config/sophisticatedcore-common.toml @@ -2,5 +2,5 @@ #Common Settings [common] #Disable / enable any items here (disables their recipes) - enabledItems = ["sophisticatedbackpacks:compacting_upgrade|false", "sophisticatedbackpacks:advanced_restock_upgrade|true", "sophisticatedbackpacks:diamond_backpack|true", "sophisticatedbackpacks:tank_upgrade|true", "sophisticatedbackpacks:auto_smoking_upgrade|false", "sophisticatedbackpacks:filter_upgrade|true", "sophisticatedbackpacks:advanced_compacting_upgrade|false", "sophisticatedbackpacks:feeding_upgrade|false", "sophisticatedbackpacks:advanced_pickup_upgrade|true", "sophisticatedbackpacks:smoking_upgrade|false", "sophisticatedbackpacks:everlasting_upgrade|true", "sophisticatedbackpacks:advanced_feeding_upgrade|false", "sophisticatedbackpacks:crafting_upgrade|true", "sophisticatedbackpacks:stack_upgrade_tier_4|false", "sophisticatedbackpacks:stack_upgrade_tier_2|false", "sophisticatedbackpacks:stack_upgrade_tier_3|false", "sophisticatedbackpacks:stack_upgrade_tier_1|true", "sophisticatedbackpacks:advanced_pump_upgrade|false", "sophisticatedbackpacks:refill_upgrade|true", "sophisticatedbackpacks:auto_blasting_upgrade|false", "sophisticatedbackpacks:void_upgrade|true", "sophisticatedbackpacks:advanced_refill_upgrade|true", "sophisticatedbackpacks:advanced_tool_swapper_upgrade|true", "sophisticatedbackpacks:smelting_upgrade|false", "sophisticatedbackpacks:battery_upgrade|false", "sophisticatedbackpacks:magnet_upgrade|true", "sophisticatedbackpacks:advanced_magnet_upgrade|true", "sophisticatedbackpacks:blasting_upgrade|false", "sophisticatedbackpacks:deposit_upgrade|true", "sophisticatedbackpacks:iron_backpack|true", "sophisticatedbackpacks:stonecutter_upgrade|false", "sophisticatedbackpacks:backpack|true", "sophisticatedbackpacks:tool_swapper_upgrade|true", "sophisticatedbackpacks:jukebox_upgrade|true", "sophisticatedbackpacks:advanced_filter_upgrade|true", "sophisticatedbackpacks:inception_upgrade|false", "sophisticatedbackpacks:anvil_upgrade|false", "sophisticatedbackpacks:xp_pump_upgrade|false", "sophisticatedbackpacks:auto_smelting_upgrade|false", "sophisticatedbackpacks:pickup_upgrade|true", "sophisticatedbackpacks:upgrade_base|true", "sophisticatedbackpacks:gold_backpack|true", "sophisticatedbackpacks:advanced_deposit_upgrade|true", "sophisticatedbackpacks:advanced_void_upgrade|true", "sophisticatedbackpacks:restock_upgrade|true", "sophisticatedbackpacks:pump_upgrade|false", "sophisticatedbackpacks:netherite_backpack|true", "sophisticatedbackpacks:copper_backpack|false", "sophisticatedbackpacks:stack_upgrade_starter_tier|true", "sophisticatedbackpacks:advanced_jukebox_upgrade|true", "sophisticatedbackpacks:smithing_upgrade|false", "sophisticatedbackpacks:stack_downgrade_tier_2|false", "sophisticatedbackpacks:stack_downgrade_tier_1|false", "sophisticatedbackpacks:stack_downgrade_tier_3|false", "sophisticatedbackpacks:stack_upgrade_omega_tier|false", "sophisticatedbackpacks:infinity_upgrade|false", "sophisticatedbackpacks:survival_infinity_upgrade|false"] + enabledItems = ["sophisticatedbackpacks:compacting_upgrade|false", "sophisticatedbackpacks:advanced_restock_upgrade|true", "sophisticatedbackpacks:diamond_backpack|true", "sophisticatedbackpacks:tank_upgrade|true", "sophisticatedbackpacks:auto_smoking_upgrade|false", "sophisticatedbackpacks:filter_upgrade|true", "sophisticatedbackpacks:advanced_compacting_upgrade|false", "sophisticatedbackpacks:feeding_upgrade|false", "sophisticatedbackpacks:advanced_pickup_upgrade|true", "sophisticatedbackpacks:smoking_upgrade|false", "sophisticatedbackpacks:everlasting_upgrade|true", "sophisticatedbackpacks:advanced_feeding_upgrade|false", "sophisticatedbackpacks:crafting_upgrade|true", "sophisticatedbackpacks:stack_upgrade_tier_4|false", "sophisticatedbackpacks:stack_upgrade_tier_2|false", "sophisticatedbackpacks:stack_upgrade_tier_3|false", "sophisticatedbackpacks:stack_upgrade_tier_1|true", "sophisticatedbackpacks:advanced_pump_upgrade|false", "sophisticatedbackpacks:refill_upgrade|true", "sophisticatedbackpacks:auto_blasting_upgrade|false", "sophisticatedbackpacks:void_upgrade|true", "sophisticatedbackpacks:advanced_refill_upgrade|true", "sophisticatedbackpacks:advanced_tool_swapper_upgrade|true", "sophisticatedbackpacks:smelting_upgrade|false", "sophisticatedbackpacks:battery_upgrade|false", "sophisticatedbackpacks:magnet_upgrade|true", "sophisticatedbackpacks:advanced_magnet_upgrade|true", "sophisticatedbackpacks:blasting_upgrade|false", "sophisticatedbackpacks:deposit_upgrade|true", "sophisticatedbackpacks:iron_backpack|true", "sophisticatedbackpacks:stonecutter_upgrade|false", "sophisticatedbackpacks:backpack|true", "sophisticatedbackpacks:tool_swapper_upgrade|true", "sophisticatedbackpacks:jukebox_upgrade|true", "sophisticatedbackpacks:advanced_filter_upgrade|true", "sophisticatedbackpacks:inception_upgrade|false", "sophisticatedbackpacks:anvil_upgrade|false", "sophisticatedbackpacks:xp_pump_upgrade|false", "sophisticatedbackpacks:auto_smelting_upgrade|false", "sophisticatedbackpacks:pickup_upgrade|true", "sophisticatedbackpacks:upgrade_base|true", "sophisticatedbackpacks:gold_backpack|true", "sophisticatedbackpacks:advanced_deposit_upgrade|true", "sophisticatedbackpacks:advanced_void_upgrade|true", "sophisticatedbackpacks:restock_upgrade|true", "sophisticatedbackpacks:pump_upgrade|false", "sophisticatedbackpacks:netherite_backpack|true", "sophisticatedbackpacks:copper_backpack|false", "sophisticatedbackpacks:stack_upgrade_starter_tier|true", "sophisticatedbackpacks:advanced_jukebox_upgrade|true", "sophisticatedbackpacks:smithing_upgrade|false", "sophisticatedbackpacks:stack_downgrade_tier_2|false", "sophisticatedbackpacks:stack_downgrade_tier_1|false", "sophisticatedbackpacks:stack_downgrade_tier_3|false", "sophisticatedbackpacks:stack_upgrade_omega_tier|false", "sophisticatedbackpacks:infinity_upgrade|false", "sophisticatedbackpacks:survival_infinity_upgrade|false", "sophisticatedbackpacks:advanced_alchemy_upgrade|true", "sophisticatedbackpacks:alchemy_upgrade|true"] diff --git a/defaultconfigs/computercraft-server.toml b/defaultconfigs/computercraft-server.toml index 5c053ac51..6816811a2 100644 --- a/defaultconfigs/computercraft-server.toml +++ b/defaultconfigs/computercraft-server.toml @@ -184,22 +184,28 @@ disabled_generic_methods = [] #Terminal size of computers. [term_sizes.computer] + #Width of computer terminal #Range: 1 ~ 255 width = 51 + #Height of computer terminal #Range: 1 ~ 255 height = 19 #Terminal size of pocket computers. [term_sizes.pocket_computer] + #Width of pocket computer terminal #Range: 1 ~ 255 width = 26 + #Height of pocket computer terminal #Range: 1 ~ 255 height = 20 #Maximum size of monitors (in blocks). [term_sizes.monitor] + #Maximum width of monitors #Range: 1 ~ 32 width = 8 + #Maximum height of monitors #Range: 1 ~ 32 height = 6 diff --git a/defaultconfigs/create-server.toml b/defaultconfigs/create-server.toml index d19b9dcc2..470bdf0e3 100644 --- a/defaultconfigs/create-server.toml +++ b/defaultconfigs/create-server.toml @@ -1,543 +1,543 @@ - -#. -#The Backbone of Create -[infrastructure] - #. - #[in Ticks] - #The amount of time a server waits before sending out tickrate synchronization packets. - #These packets help animations to be more accurate when tps is below 20. - #Range: > 5 - tickrateSyncTimer = 20 - -#. -#Packmakers' control panel for internal recipe compat -[recipes] - #. - #. - #Allow the Mechanical Press to process entire stacks at a time. - bulkPressing = false - #. - #Allow the Mechanical Saw to process entire stacks at a time. - bulkCutting = false - #. - #Allow supported potions to be brewed by a Mechanical Mixer + Basin. - allowBrewingInMixer = false - #. - #Allow any shapeless crafting recipes to be processed by a Mechanical Mixer + Basin. - allowShapelessInMixer = false - #. - #Allow any single-ingredient 2x2 or 3x3 crafting recipes to be processed by a Mechanical Press + Basin. - allowShapedSquareInPress = true - #. - #Allow any standard crafting recipes to be processed by Mechanical Crafters. - allowRegularCraftingInCrafter = true - #. - #The Maximum amount of ingredients that can be used to craft Firework Rockets using Mechanical Crafters. - #Range: > 1 - maxFireworkIngredientsInCrafter = 9 - #. - #Allow any stonecutting recipes to be processed by a Mechanical Saw. - allowStonecuttingOnSaw = true - #. - #Allow Spouts to interact with Casting Tables and Basins from Tinkers' Construct. - allowCastingBySpout = true - #. - #Display vanilla Log-stripping interactions in JEI. - displayLogStrippingRecipes = true - #. - #The amount of Light sources destroyed before Chromatic Compound turns into Refined Radiance. - #Range: > 1 - lightSourceCountForRefinedRadiance = 10 - #. - #Allow the standard in-world Refined Radiance recipes. - enableRefinedRadianceRecipe = false - #. - #Allow the standard in-world Shadow Steel recipe. - enableShadowSteelRecipe = false - -#. -#Parameters and abilities of Create's kinetic mechanisms -[kinetics] - #. - #. - #Disable the Stress mechanic altogether. - disableStress = false - #. - #Maximum length in blocks of mechanical belts. - #Range: > 5 - maxBeltLength = 5 - #. - #Damage dealt by active Crushing Wheels. - #Range: > 0 - crushingDamage = 4 - #. - #[in Revolutions per Minute] - #Maximum allowed rotation speed for any Kinetic Block. - #Range: > 64 - maxRotationSpeed = 256 - #. - #Select what mobs should ignore Deployers when attacked by them. - #Allowed Values: ALL, CREEPERS, NONE - ignoreDeployerAttacks = "CREEPERS" - #. - #Game ticks between Kinetic Blocks checking whether their source is still valid. - #Range: > 5 - kineticValidationFrequency = 60 - #. - #multiplier used for calculating exhaustion from speed when a crank is turned. - #Range: 0.0 ~ 1.0 - crankHungerMultiplier = 0.009999999776482582 - #. - #Amount of sail-type blocks required for a windmill to assemble successfully. - #Range: > 0 - minimumWindmillSails = 8 - #. - #Number of sail-type blocks required to increase windmill speed by 1RPM. - #Range: > 1 - windmillSailsPerRPM = 8 - #. - #Max Distance in blocks a Weighted Ejector can throw - #Range: > 0 - maxEjectorDistance = 32 - #. - #Time in ticks until the next item launched by an ejector scans blocks for potential collisions - #Range: > 10 - ejectorScanInterval = 120 - #. - #Maximum length in blocks of chain conveyor connections. - #Range: > 5 - maxChainConveyorLength = 32 - #. - #Maximum amount of connections each chain conveyor can have. - #Range: > 1 - maxChainConveyorConnections = 4 - - #. - #Encased Fan - [kinetics.encasedFan] - #. - #Maximum distance in blocks Fans can push entities. - #Range: > 5 - fanPushDistance = 20 - #. - #Maximum distance in blocks from where Fans can pull entities. - #Range: > 5 - fanPullDistance = 20 - #. - #Game ticks between Fans checking for anything blocking their air flow. - #Range: > 10 - fanBlockCheckRate = 30 - #. - #[in Revolutions per Minute] - #Rotation speed at which the maximum stats of fans are reached. - #Range: > 64 - fanRotationArgmax = 256 - #. - #Game ticks required for a Fan-based processing recipe to take effect. - #Range: > 0 - fanProcessingTime = 400 - - #. - #Moving Contraptions - [kinetics.contraptions] - #. - #Maximum amount of blocks in a structure movable by Pistons, Bearings or other means. - #Range: > 1 - maxBlocksMoved = 2048 - #. - #Maximum value of a chassis attachment range. - #Range: > 1 - maxChassisRange = 16 - #. - #Maximum amount of extension poles behind a Mechanical Piston. - #Range: > 1 - maxPistonPoles = 64 - #. - #Max length of rope available off a Rope Pulley. - #Range: > 1 - maxRopeLength = 256 - #. - #Maximum allowed distance of two coupled minecarts. - #Range: > 1 - maxCartCouplingLength = 32 - #. - #Maximum depth of blocks filled in using a Mechanical Roller. - #Range: > 1 - rollerFillDepth = 12 - #. - #Whether minecart contraptions can be picked up in survival mode. - survivalContraptionPickup = true - #. - #Configure how Spawner blocks can be moved by contraptions. - #Allowed Values: MOVABLE, NO_PICKUP, UNMOVABLE - movableSpawners = "NO_PICKUP" - #. - #Configure how Budding Amethyst can be moved by contraptions. - #Allowed Values: MOVABLE, NO_PICKUP, UNMOVABLE - amethystMovement = "NO_PICKUP" - #. - #Configure how Obsidian blocks can be moved by contraptions. - #Allowed Values: MOVABLE, NO_PICKUP, UNMOVABLE - movableObsidian = "UNMOVABLE" - #. - #Configure how Reinforced Deepslate blocks can be moved by contraptions. - #Allowed Values: MOVABLE, NO_PICKUP, UNMOVABLE - movableReinforcedDeepslate = "UNMOVABLE" - #. - #Whether items mined or harvested by contraptions should be placed in their mounted storage. - moveItemsToStorage = true - #. - #Whether harvesters should break crops that aren't fully grown. - harvestPartiallyGrown = false - #. - #Whether harvesters should replant crops after harvesting. - harvesterReplants = true - #. - #Whether minecart contraptions can be placed into container items. - minecartContraptionInContainers = false - #. - #Whether stabilised bearings create a separated entity even on non-rotating contraptions. - #[Technical] - stabiliseStableContraptions = false - #. - #Whether the players hitbox should be expanded to the size of the contraption hitbox. - #[Technical] - syncPlayerPickupHitboxWithContraptionHitbox = false - - #. - #Configure speed/capacity levels for requirements and indicators. - [kinetics.stats] - #. - #[in Revolutions per Minute] - #Minimum speed of rotation to be considered 'medium' - #Range: 0.0 ~ 4096.0 - mediumSpeed = 30.0 - #. - #[in Revolutions per Minute] - #Minimum speed of rotation to be considered 'fast' - #Range: 0.0 ~ 65535.0 - fastSpeed = 100.0 - #. - #[in Stress Units] - #Minimum stress impact to be considered 'medium' - #Range: 0.0 ~ 4096.0 - mediumStressImpact = 1.0 - #. - #[in Stress Units] - #Minimum stress impact to be considered 'high' - #Range: 0.0 ~ 65535.0 - highStressImpact = 2.0 - #. - #[in Stress Units] - #Minimum added Capacity by sources to be considered 'medium' - #Range: 0.0 ~ 4096.0 - mediumCapacity = 32.0 - #. - #[in Stress Units] - #Minimum added Capacity by sources to be considered 'high' - #Range: 0.0 ~ 65535.0 - highCapacity = 128.0 - - [kinetics.stressValues] - - #. - #Fine tune the kinetic stats of individual components - [kinetics.stressValues.v2] - large_water_wheel = 8.0 - windmill_bearing = 128.0 - hand_crank = 0.25 - creative_motor = 2097152.0 - water_wheel = 1.0 - copper_valve_handle = 0.25 - steam_engine = 256.0 - - #. - #. - #[in Stress Units] - #Configure the individual stress impact of mechanical blocks. Note that this cost is doubled for every speed increase it receives. - [kinetics.stressValues.v2.impact] - display_board = 0.0 - deployer = 0.25 - mechanical_piston = 0.5 - millstone = 65535.0 - mechanical_bearing = 0.5 - clockwork_bearing = 0.5 - cuckoo_clock = 0.125 - speedometer = 0.0 - copper_backtank = 0.5 - mechanical_saw = 65535.0 - flywheel = 0.0 - encased_chain_drive = 0.0 - clutch = 0.0 - encased_fan = 65535.0 - adjustable_chain_gearshift = 0.0 - mechanical_pump = 65535.0 - crushing_wheel = 65535.0 - mechanical_mixer = 65535.0 - gantry_shaft = 0.0 - rope_pulley = 0.5 - rotation_speed_controller = 0.0 - mechanical_arm = 0.5 - netherite_backtank = 0.5 - andesite_encased_shaft = 65535.0 - mechanical_press = 65535.0 - large_cogwheel = 65535.0 - mechanical_drill = 0.5 - andesite_encased_large_cogwheel = 65535.0 - brass_encased_large_cogwheel = 65535.0 - mysterious_cuckoo_clock = 0.125 - stressometer = 0.0 - shaft = 65535.0 - brass_encased_shaft = 65535.0 - gearshift = 0.0 - turntable = 0.5 - sticky_mechanical_piston = 0.5 - sequenced_gearshift = 0.0 - weighted_ejector = 0.25 - cogwheel = 65535.0 - andesite_encased_cogwheel = 65535.0 - belt = 65535.0 - brass_encased_cogwheel = 65535.0 - gearbox = 0.0 - hose_pulley = 0.5 - elevator_pulley = 0.5 - mechanical_crafter = 0.125 - chain_conveyor = 0.0 - - #. - #[in Stress Units] - #Configure how much stress a source can accommodate for. - [kinetics.stressValues.v2.capacity] - copper_valve_handle = 2.0 - hand_crank = 2.0 - steam_engine = 16.0 - creative_motor = 16384.0 - large_water_wheel = 16.0 - water_wheel = 4.0 - windmill_bearing = 32.0 - -#. -#Create's liquid manipulation tools -[fluids] - #. - #. - #[in Buckets] - #The amount of liquid a tank can hold per block. - #Range: > 1 - fluidTankCapacity = 16 - #. - #[in Blocks] - #The maximum height a fluid tank can reach. - #Range: > 1 - fluidTankMaxHeight = 32 - #. - #[in Blocks] - #The maximum distance a mechanical pump can push or pull liquids on either side. - #Range: > 1 - mechanicalPumpRange = 16 - #. - #[in Blocks] - #The maximum distance a hose pulley can draw fluid blocks from. - #Range: > 1 - hosePulleyRange = 256 - #. - #[in Blocks] - #[-1 to disable this behaviour] - #The minimum amount of fluid blocks the hose pulley needs to find before deeming it an infinite source. - #Range: > -1 - hosePulleyBlockThreshold = 2000 - #. - #Whether hose pulleys should continue filling up above-threshold sources. - fillInfinite = false - #. - #Configure which fluids can be drained infinitely. - #Allowed Values: ALLOW_ALL, DENY_ALL, ALLOW_BY_TAG, DENY_BY_TAG - bottomlessFluidMode = "ALLOW_BY_TAG" - #. - #Whether hose pulleys should be allowed to place fluid sources. - fluidFillPlaceFluidSourceBlocks = true - #. - #Whether open-ended pipes should be allowed to place fluid sources. - pipesPlaceFluidSourceBlocks = false - -#. -#Tweaks for logistical components -[logistics] - #. - #. - #The amount of ticks a funnel waits between item transferrals, when it is not re-activated by redstone. - #Range: > 1 - defaultExtractionTimer = 8 - #. - #The amount of ticks a portable storage interface waits for transfers until letting contraptions move along. - #Range: > 1 - psiTimeout = 60 - #. - #Maximum distance in blocks a Mechanical Arm can reach across. - #Range: > 1 - mechanicalArmRange = 5 - #. - #Maximum possible range in blocks of redstone link connections. - #Range: > 1 - linkRange = 256 - #. - #Maximum possible distance in blocks between display links and their target. - #Range: > 1 - displayLinkRange = 64 - #. - #The total amount of stacks a vault can hold per block in size. - #Range: 1 ~ 2048 - vaultCapacity = 20 - #. - #The amount of ticks a brass tunnel waits between distributions. - #Range: 1 ~ 10 - brassTunnelTimer = 10 - #. - #Whether hostile mobs walking near a seat will start riding it. - seatHostileMobs = true - #. - #Maximum distance in blocks a Package Port can be placed at from its target. - #Range: > 1 - packagePortRange = 5 - #. - #The amount of packages a chain conveyor can carry at a time. - #Range: > 1 - chainConveyorCapacity = 20 - #. - #The amount of ticks a factory gauge waits between requests. - #Range: > 5 - factoryGaugeTimer = 100 - -#. -#Everything related to Schematic tools -[schematics] - #. - #. - #Whether placing a Schematic directly in Creative Mode should replace world blocks with Air - creativePrintIncludesAir = false - #. - #The amount of Schematics a player can upload until previous ones are overwritten. - #Range: > 1 - maxSchematics = 256 - #. - #[in Bytes] - #The maximum packet size uploaded Schematics are split into. - #Range: 256 ~ 32767 - maxSchematicPacketSize = 1024 - #. - #Amount of game ticks without new packets arriving until an active schematic upload process is discarded. - #Range: > 100 - schematicIdleTimeout = 600 - #. - #[in KiloBytes] - #The maximum allowed file size of uploaded Schematics. - #Range: > 16 - maxTotalSchematicSize = 256 - - #. - #Schematicannon - [schematics.schematicannon] - #. - #Amount of game ticks between shots of the cannon. Higher => Slower - #Range: > 1 - schematicannonDelay = 10 - #. - #Amount of blocks a Schematicannon can print per Gunpowder item provided. - #Range: > 1 - schematicannonShotsPerGunpowder = 400 - -#. -#Equipment and gadgets added by Create -[equipment] - #. - #. - #The Maximum Distance to an active mirror for the symmetry wand to trigger. - #Range: > 10 - maxSymmetryWandRange = 50 - #. - #The Maximum Distance a Block placed by Create's placement assist will have to its interaction point. - #Range: > 3 - placementAssistRange = 12 - #. - #The Maximum Distance at which a Toolbox can interact with Players' Inventories. - #Range: > 1 - toolboxRange = 10 - #. - #The Maximum volume of Air that can be stored in a backtank = Seconds of underwater breathing - #Range: > 1 - airInBacktank = 1200 - #. - #The volume of Air added by each level of the backtanks Capacity Enchantment - #Range: > 1 - enchantedBacktankCapacity = 300 - #. - #Amount of free Extendo Grip actions provided by one filled Copper Backtank. Set to 0 makes Extendo Grips unbreakable - #Range: > 0 - maxExtendoGripActions = 1000 - #. - #Amount of free Potato Cannon shots provided by one filled Copper Backtank. Set to 0 makes Potato Cannons unbreakable - #Range: > 0 - maxPotatoCannonShots = 200 - -#. -#Create's builtin Railway systems -[trains] - #. - #. - #Whether moving Trains can hurt colliding mobs and players. - trainsCauseDamage = true - #. - #Maximum length of track that can be placed as one batch or turn. - #Range: 16 ~ 128 - maxTrackPlacementLength = 32 - #. - #Maximum length of a Train Stations' assembly track. - #Range: > 5 - maxAssemblyLength = 128 - #. - #Maximum amount of bogeys assembled as a single Train. - #Range: > 1 - maxBogeyCount = 20 - #. - #Relative speed of a manually controlled Train compared to a Scheduled one. - #Range: 0.0 ~ 3.4028234663852886E38 - manualTrainSpeedModifier = 1 - - #. - #Standard Trains - [trains.trainStats] - #. - #[in Blocks/Second] - #The top speed of any assembled Train. - #Range: 0.0 ~ 3.4028234663852886E38 - trainTopSpeed = 28.0 - #. - #[in Blocks/Second] - #The top speed of Trains during a turn. - #Range: 0.0 ~ 3.4028234663852886E38 - trainTurningTopSpeed = 14.0 - #. - #[in Blocks/Second²] - #The acceleration of any assembled Train. - #Range: 0.0 ~ 3.4028234663852886E38 - trainAcceleration = 3.0 - - #. - #Powered Trains - [trains.poweredTrainStats] - #. - #[in Blocks/Second] - #The top speed of powered Trains. - #Range: 0.0 ~ 3.4028234663852886E38 - poweredTrainTopSpeed = 40.0 - #. - #[in Blocks/Second] - #The top speed of powered Trains during a turn. - #Range: 0.0 ~ 3.4028234663852886E38 - poweredTrainTurningTopSpeed = 20.0 - #. - #[in Blocks/Second²] - #The acceleration of powered Trains. - #Range: 0.0 ~ 3.4028234663852886E38 - poweredTrainAcceleration = 3.0 - + +#. +#The Backbone of Create +[infrastructure] + #. + #[in Ticks] + #The amount of time a server waits before sending out tickrate synchronization packets. + #These packets help animations to be more accurate when tps is below 20. + #Range: > 5 + tickrateSyncTimer = 20 + +#. +#Packmakers' control panel for internal recipe compat +[recipes] + #. + #. + #Allow the Mechanical Press to process entire stacks at a time. + bulkPressing = false + #. + #Allow the Mechanical Saw to process entire stacks at a time. + bulkCutting = false + #. + #Allow supported potions to be brewed by a Mechanical Mixer + Basin. + allowBrewingInMixer = false + #. + #Allow any shapeless crafting recipes to be processed by a Mechanical Mixer + Basin. + allowShapelessInMixer = false + #. + #Allow any single-ingredient 2x2 or 3x3 crafting recipes to be processed by a Mechanical Press + Basin. + allowShapedSquareInPress = true + #. + #Allow any standard crafting recipes to be processed by Mechanical Crafters. + allowRegularCraftingInCrafter = true + #. + #The Maximum amount of ingredients that can be used to craft Firework Rockets using Mechanical Crafters. + #Range: > 1 + maxFireworkIngredientsInCrafter = 9 + #. + #Allow any stonecutting recipes to be processed by a Mechanical Saw. + allowStonecuttingOnSaw = true + #. + #Allow Spouts to interact with Casting Tables and Basins from Tinkers' Construct. + allowCastingBySpout = true + #. + #Display vanilla Log-stripping interactions in JEI. + displayLogStrippingRecipes = true + #. + #The amount of Light sources destroyed before Chromatic Compound turns into Refined Radiance. + #Range: > 1 + lightSourceCountForRefinedRadiance = 10 + #. + #Allow the standard in-world Refined Radiance recipes. + enableRefinedRadianceRecipe = false + #. + #Allow the standard in-world Shadow Steel recipe. + enableShadowSteelRecipe = false + +#. +#Parameters and abilities of Create's kinetic mechanisms +[kinetics] + #. + #. + #Disable the Stress mechanic altogether. + disableStress = false + #. + #Maximum length in blocks of mechanical belts. + #Range: > 5 + maxBeltLength = 5 + #. + #Damage dealt by active Crushing Wheels. + #Range: > 0 + crushingDamage = 4 + #. + #[in Revolutions per Minute] + #Maximum allowed rotation speed for any Kinetic Block. + #Range: > 64 + maxRotationSpeed = 256 + #. + #Select what mobs should ignore Deployers when attacked by them. + #Allowed Values: ALL, CREEPERS, NONE + ignoreDeployerAttacks = "CREEPERS" + #. + #Game ticks between Kinetic Blocks checking whether their source is still valid. + #Range: > 5 + kineticValidationFrequency = 60 + #. + #multiplier used for calculating exhaustion from speed when a crank is turned. + #Range: 0.0 ~ 1.0 + crankHungerMultiplier = 0.009999999776482582 + #. + #Amount of sail-type blocks required for a windmill to assemble successfully. + #Range: > 0 + minimumWindmillSails = 8 + #. + #Number of sail-type blocks required to increase windmill speed by 1RPM. + #Range: > 1 + windmillSailsPerRPM = 8 + #. + #Max Distance in blocks a Weighted Ejector can throw + #Range: > 0 + maxEjectorDistance = 32 + #. + #Time in ticks until the next item launched by an ejector scans blocks for potential collisions + #Range: > 10 + ejectorScanInterval = 120 + #. + #Maximum length in blocks of chain conveyor connections. + #Range: > 5 + maxChainConveyorLength = 32 + #. + #Maximum amount of connections each chain conveyor can have. + #Range: > 1 + maxChainConveyorConnections = 4 + + #. + #Encased Fan + [kinetics.encasedFan] + #. + #Maximum distance in blocks Fans can push entities. + #Range: > 5 + fanPushDistance = 20 + #. + #Maximum distance in blocks from where Fans can pull entities. + #Range: > 5 + fanPullDistance = 20 + #. + #Game ticks between Fans checking for anything blocking their air flow. + #Range: > 10 + fanBlockCheckRate = 30 + #. + #[in Revolutions per Minute] + #Rotation speed at which the maximum stats of fans are reached. + #Range: > 64 + fanRotationArgmax = 256 + #. + #Game ticks required for a Fan-based processing recipe to take effect. + #Range: > 0 + fanProcessingTime = 400 + + #. + #Moving Contraptions + [kinetics.contraptions] + #. + #Maximum amount of blocks in a structure movable by Pistons, Bearings or other means. + #Range: > 1 + maxBlocksMoved = 2048 + #. + #Maximum value of a chassis attachment range. + #Range: > 1 + maxChassisRange = 16 + #. + #Maximum amount of extension poles behind a Mechanical Piston. + #Range: > 1 + maxPistonPoles = 64 + #. + #Max length of rope available off a Rope Pulley. + #Range: > 1 + maxRopeLength = 400 + #. + #Maximum allowed distance of two coupled minecarts. + #Range: > 1 + maxCartCouplingLength = 32 + #. + #Maximum depth of blocks filled in using a Mechanical Roller. + #Range: > 1 + rollerFillDepth = 12 + #. + #Whether minecart contraptions can be picked up in survival mode. + survivalContraptionPickup = true + #. + #Configure how Spawner blocks can be moved by contraptions. + #Allowed Values: MOVABLE, NO_PICKUP, UNMOVABLE + movableSpawners = "NO_PICKUP" + #. + #Configure how Budding Amethyst can be moved by contraptions. + #Allowed Values: MOVABLE, NO_PICKUP, UNMOVABLE + amethystMovement = "NO_PICKUP" + #. + #Configure how Obsidian blocks can be moved by contraptions. + #Allowed Values: MOVABLE, NO_PICKUP, UNMOVABLE + movableObsidian = "UNMOVABLE" + #. + #Configure how Reinforced Deepslate blocks can be moved by contraptions. + #Allowed Values: MOVABLE, NO_PICKUP, UNMOVABLE + movableReinforcedDeepslate = "UNMOVABLE" + #. + #Whether items mined or harvested by contraptions should be placed in their mounted storage. + moveItemsToStorage = true + #. + #Whether harvesters should break crops that aren't fully grown. + harvestPartiallyGrown = false + #. + #Whether harvesters should replant crops after harvesting. + harvesterReplants = true + #. + #Whether minecart contraptions can be placed into container items. + minecartContraptionInContainers = false + #. + #Whether stabilised bearings create a separated entity even on non-rotating contraptions. + #[Technical] + stabiliseStableContraptions = false + #. + #Whether the players hitbox should be expanded to the size of the contraption hitbox. + #[Technical] + syncPlayerPickupHitboxWithContraptionHitbox = false + + #. + #Configure speed/capacity levels for requirements and indicators. + [kinetics.stats] + #. + #[in Revolutions per Minute] + #Minimum speed of rotation to be considered 'medium' + #Range: 0.0 ~ 4096.0 + mediumSpeed = 30.0 + #. + #[in Revolutions per Minute] + #Minimum speed of rotation to be considered 'fast' + #Range: 0.0 ~ 65535.0 + fastSpeed = 100.0 + #. + #[in Stress Units] + #Minimum stress impact to be considered 'medium' + #Range: 0.0 ~ 4096.0 + mediumStressImpact = 1.0 + #. + #[in Stress Units] + #Minimum stress impact to be considered 'high' + #Range: 0.0 ~ 65535.0 + highStressImpact = 2.0 + #. + #[in Stress Units] + #Minimum added Capacity by sources to be considered 'medium' + #Range: 0.0 ~ 4096.0 + mediumCapacity = 32.0 + #. + #[in Stress Units] + #Minimum added Capacity by sources to be considered 'high' + #Range: 0.0 ~ 65535.0 + highCapacity = 128.0 + + [kinetics.stressValues] + + #. + #Fine tune the kinetic stats of individual components + [kinetics.stressValues.v2] + large_water_wheel = 16.0 + windmill_bearing = 32.0 + hand_crank = 0.25 + creative_motor = 2097152.0 + water_wheel = 4.0 + copper_valve_handle = 2.0 + steam_engine = 16.0 + + #. + #. + #[in Stress Units] + #Configure the individual stress impact of mechanical blocks. Note that this cost is doubled for every speed increase it receives. + [kinetics.stressValues.v2.impact] + display_board = 0.0 + deployer = 0.25 + mechanical_piston = 0.5 + millstone = 65535.0 + mechanical_bearing = 0.5 + clockwork_bearing = 0.5 + cuckoo_clock = 0.125 + speedometer = 0.0 + copper_backtank = 0.25 + mechanical_saw = 65535.0 + flywheel = 0.0 + encased_chain_drive = 0.0 + clutch = 0.0 + encased_fan = 65535.0 + adjustable_chain_gearshift = 0.0 + mechanical_pump = 65535.0 + crushing_wheel = 65535.0 + mechanical_mixer = 65535.0 + gantry_shaft = 0.0 + rope_pulley = 0.25 + rotation_speed_controller = 0.0 + mechanical_arm = 0.25 + netherite_backtank = 0.25 + andesite_encased_shaft = 65535.0 + mechanical_press = 65535.0 + large_cogwheel = 65535.0 + mechanical_drill = 0.5 + andesite_encased_large_cogwheel = 65535.0 + brass_encased_large_cogwheel = 65535.0 + mysterious_cuckoo_clock = 0.125 + stressometer = 0.0 + shaft = 65535.0 + brass_encased_shaft = 65535.0 + gearshift = 0.0 + turntable = 0.25 + sticky_mechanical_piston = 0.5 + sequenced_gearshift = 0.0 + weighted_ejector = 0.25 + cogwheel = 65535.0 + andesite_encased_cogwheel = 65535.0 + belt = 65535.0 + brass_encased_cogwheel = 65535.0 + gearbox = 0.0 + hose_pulley = 0.25 + elevator_pulley = 0.25 + mechanical_crafter = 0.125 + chain_conveyor = 0.0 + + #. + #[in Stress Units] + #Configure how much stress a source can accommodate for. + [kinetics.stressValues.v2.capacity] + copper_valve_handle = 2.0 + hand_crank = 2.0 + steam_engine = 16.0 + creative_motor = 16384.0 + large_water_wheel = 16.0 + water_wheel = 4.0 + windmill_bearing = 32.0 + +#. +#Create's liquid manipulation tools +[fluids] + #. + #. + #[in Buckets] + #The amount of liquid a tank can hold per block. + #Range: > 1 + fluidTankCapacity = 16 + #. + #[in Blocks] + #The maximum height a fluid tank can reach. + #Range: > 1 + fluidTankMaxHeight = 32 + #. + #[in Blocks] + #The maximum distance a mechanical pump can push or pull liquids on either side. + #Range: > 1 + mechanicalPumpRange = 16 + #. + #[in Blocks] + #The maximum distance a hose pulley can draw fluid blocks from. + #Range: > 1 + hosePulleyRange = 256 + #. + #[in Blocks] + #[-1 to disable this behaviour] + #The minimum amount of fluid blocks the hose pulley needs to find before deeming it an infinite source. + #Range: > -1 + hosePulleyBlockThreshold = 2000 + #. + #Whether hose pulleys should continue filling up above-threshold sources. + fillInfinite = false + #. + #Configure which fluids can be drained infinitely. + #Allowed Values: ALLOW_ALL, DENY_ALL, ALLOW_BY_TAG, DENY_BY_TAG + bottomlessFluidMode = "ALLOW_BY_TAG" + #. + #Whether hose pulleys should be allowed to place fluid sources. + fluidFillPlaceFluidSourceBlocks = true + #. + #Whether open-ended pipes should be allowed to place fluid sources. + pipesPlaceFluidSourceBlocks = false + +#. +#Tweaks for logistical components +[logistics] + #. + #. + #The amount of ticks a funnel waits between item transferrals, when it is not re-activated by redstone. + #Range: > 1 + defaultExtractionTimer = 8 + #. + #The amount of ticks a portable storage interface waits for transfers until letting contraptions move along. + #Range: > 1 + psiTimeout = 60 + #. + #Maximum distance in blocks a Mechanical Arm can reach across. + #Range: > 1 + mechanicalArmRange = 5 + #. + #Maximum possible range in blocks of redstone link connections. + #Range: > 1 + linkRange = 256 + #. + #Maximum possible distance in blocks between display links and their target. + #Range: > 1 + displayLinkRange = 64 + #. + #The total amount of stacks a vault can hold per block in size. + #Range: 1 ~ 2048 + vaultCapacity = 20 + #. + #The amount of ticks a brass tunnel waits between distributions. + #Range: 1 ~ 10 + brassTunnelTimer = 10 + #. + #Whether hostile mobs walking near a seat will start riding it. + seatHostileMobs = true + #. + #Maximum distance in blocks a Package Port can be placed at from its target. + #Range: > 1 + packagePortRange = 5 + #. + #The amount of packages a chain conveyor can carry at a time. + #Range: > 1 + chainConveyorCapacity = 20 + #. + #The amount of ticks a factory gauge waits between requests. + #Range: > 5 + factoryGaugeTimer = 100 + +#. +#Everything related to Schematic tools +[schematics] + #. + #. + #Whether placing a Schematic directly in Creative Mode should replace world blocks with Air + creativePrintIncludesAir = false + #. + #The amount of Schematics a player can upload until previous ones are overwritten. + #Range: > 1 + maxSchematics = 256 + #. + #[in Bytes] + #The maximum packet size uploaded Schematics are split into. + #Range: 256 ~ 32767 + maxSchematicPacketSize = 1024 + #. + #Amount of game ticks without new packets arriving until an active schematic upload process is discarded. + #Range: > 100 + schematicIdleTimeout = 600 + #. + #[in KiloBytes] + #The maximum allowed file size of uploaded Schematics. + #Range: > 16 + maxTotalSchematicSize = 256 + + #. + #Schematicannon + [schematics.schematicannon] + #. + #Amount of game ticks between shots of the cannon. Higher => Slower + #Range: > 1 + schematicannonDelay = 10 + #. + #Amount of blocks a Schematicannon can print per Gunpowder item provided. + #Range: > 1 + schematicannonShotsPerGunpowder = 400 + +#. +#Equipment and gadgets added by Create +[equipment] + #. + #. + #The Maximum Distance to an active mirror for the symmetry wand to trigger. + #Range: > 10 + maxSymmetryWandRange = 50 + #. + #The Maximum Distance a Block placed by Create's placement assist will have to its interaction point. + #Range: > 3 + placementAssistRange = 12 + #. + #The Maximum Distance at which a Toolbox can interact with Players' Inventories. + #Range: > 1 + toolboxRange = 10 + #. + #The Maximum volume of Air that can be stored in a backtank = Seconds of underwater breathing + #Range: > 1 + airInBacktank = 1200 + #. + #The volume of Air added by each level of the backtanks Capacity Enchantment + #Range: > 1 + enchantedBacktankCapacity = 300 + #. + #Amount of free Extendo Grip actions provided by one filled Copper Backtank. Set to 0 makes Extendo Grips unbreakable + #Range: > 0 + maxExtendoGripActions = 1000 + #. + #Amount of free Potato Cannon shots provided by one filled Copper Backtank. Set to 0 makes Potato Cannons unbreakable + #Range: > 0 + maxPotatoCannonShots = 200 + +#. +#Create's builtin Railway systems +[trains] + #. + #. + #Whether moving Trains can hurt colliding mobs and players. + trainsCauseDamage = true + #. + #Maximum length of track that can be placed as one batch or turn. + #Range: 16 ~ 128 + maxTrackPlacementLength = 32 + #. + #Maximum length of a Train Stations' assembly track. + #Range: > 5 + maxAssemblyLength = 128 + #. + #Maximum amount of bogeys assembled as a single Train. + #Range: > 1 + maxBogeyCount = 20 + #. + #Relative speed of a manually controlled Train compared to a Scheduled one. + #Range: 0.0 ~ 3.4028234663852886E38 + manualTrainSpeedModifier = 1 + + #. + #Standard Trains + [trains.trainStats] + #. + #[in Blocks/Second] + #The top speed of any assembled Train. + #Range: 0.0 ~ 3.4028234663852886E38 + trainTopSpeed = 28.0 + #. + #[in Blocks/Second] + #The top speed of Trains during a turn. + #Range: 0.0 ~ 3.4028234663852886E38 + trainTurningTopSpeed = 14.0 + #. + #[in Blocks/Second²] + #The acceleration of any assembled Train. + #Range: 0.0 ~ 3.4028234663852886E38 + trainAcceleration = 3.0 + + #. + #Powered Trains + [trains.poweredTrainStats] + #. + #[in Blocks/Second] + #The top speed of powered Trains. + #Range: 0.0 ~ 3.4028234663852886E38 + poweredTrainTopSpeed = 40.0 + #. + #[in Blocks/Second] + #The top speed of powered Trains during a turn. + #Range: 0.0 ~ 3.4028234663852886E38 + poweredTrainTurningTopSpeed = 20.0 + #. + #[in Blocks/Second²] + #The acceleration of powered Trains. + #Range: 0.0 ~ 3.4028234663852886E38 + poweredTrainAcceleration = 3.0 + diff --git a/defaultconfigs/create_connected-server.toml b/defaultconfigs/create_connected-server.toml index 8afdc2f14..c3cb8d073 100644 --- a/defaultconfigs/create_connected-server.toml +++ b/defaultconfigs/create_connected-server.toml @@ -17,12 +17,23 @@ vesselHeatMultiplier = 0.5 #Limit the max boiler level achievable with a Fluid Vessel #Range: 0 ~ 18 vesselMaxLevel = 18 +#. +#RPM of a Kinetic Battery when discharging +#Range: 0 ~ 256 +batteryDischargeRPM = 64 +#. +#Max capacity of a Kinetic Battery in su-hours +#Range: 0.0 ~ 8192.0 +batteryCapacity = 512.0 +#. +#Allow Redstone Links to have wildcards in both slots [restart required] +allowDualWildcardLink = false [stressValues] #. #Fine tune the kinetic stats of individual components - [stressValues.v2] + [stressValues.v1] #. #Stress impact of a powered brake [in Stress Units] #Range: -Infinity ~ Infinity @@ -32,23 +43,25 @@ vesselMaxLevel = 18 #. #[in Stress Units] #Configure the individual stress impact of mechanical blocks. Note that this cost is doubled for every speed increase it receives. - [stressValues.v2.impact] - inverted_gearshift = 0.0 - six_way_gearbox = 0.0 + [stressValues.v1.impact] + brass_gearbox = 0.0 centrifugal_clutch = 0.0 - overstress_clutch = 0.0 brake = 0.0 encased_chain_cogwheel = 0.0 - inverted_clutch = 0.0 - parallel_gearbox = 0.0 - freewheel_clutch = 0.0 - brass_gearbox = 0.0 + kinetic_battery = 64.0 + six_way_gearbox = 0.0 shear_pin = 0.0 + parallel_gearbox = 0.0 + inverted_gearshift = 0.0 + freewheel_clutch = 0.0 + overstress_clutch = 0.0 + inverted_clutch = 0.0 #. #[in Stress Units] #Configure how much stress a source can accommodate for. - [stressValues.v2.capacity] - crank_wheel = 2.0 - large_crank_wheel = 2.0 + [stressValues.v1.capacity] + crank_wheel = 8.0 + kinetic_battery = 32.0 + large_crank_wheel = 8.0 diff --git a/defaultconfigs/forge-server.toml b/defaultconfigs/forge-server.toml index 13772cf52..a7364c57f 100644 --- a/defaultconfigs/forge-server.toml +++ b/defaultconfigs/forge-server.toml @@ -17,4 +17,6 @@ permissionHandler = "forge:default_handler" #Set this to true to enable advertising the dedicated server to local LAN clients so that it shows up in the Multiplayer screen automatically. advertiseDedicatedServerToLan = true + #Set this to true to enable living entities to use items with durations of 0. Fixes being able to use Eyes of Ender repeatedly by holding down the use button. Disabled by default as it could change interactions with items of existing mods. + useItemWithDurationZero = false diff --git a/defaultconfigs/greate-server.toml b/defaultconfigs/greate-server.toml index a32cdb429..39338548d 100644 --- a/defaultconfigs/greate-server.toml +++ b/defaultconfigs/greate-server.toml @@ -1,399 +1,425 @@ -#. -#Multiplier used for calculating how many ticks should initially be removed in fan processing recipes, based on how fast the fan is spinning. -#Range: 0.0 ~ 3.4028234663852886E38 -fanSpeedMultiplier = 0.75 - -#. -#Parameters and abilities of Greate's kinetic mechanisms -[kinetics] - - #. - #. - #Fine tune settings related to belts - [kinetics.belts] - - #. - #. - #Rubber Belt Settings - [kinetics.belts.rubber] - #. - #Maximum length in blocks of rubber mechanical belts - #Range: > 5 - rubberMaxBeltLength = 20 - - #. - #Silicone Rubber Belt Settings - [kinetics.belts.silicone] - #. - #Maximum length in blocks of silicone mechanical belts - #Range: > 5 - siliconeMaxBeltLength = 25 - - #. - #Polyethylene Belt Settings - [kinetics.belts.polyethylene] - #. - #Maximum length in blocks of polyethylene mechanical belts - #Range: > 5 - polyethyleneMaxBeltLength = 30 - - #. - #Polytetrafluoroethylene Belt Settings - [kinetics.belts.polytetrafluoroethylene] - #. - #Maximum length in blocks of polytetrafluoroethylene mechanical belts - #Range: > 5 - polytetrafluoroethyleneMaxBeltLength = 35 - - #. - #Polybenzimidazole Belt Settings - [kinetics.belts.polybenzimidazole] - #. - #Maximum length in blocks of polybenzimidazole mechanical belts - #Range: > 5 - polybenzimidazoleMaxBeltLength = 40 - - [kinetics.stressValues] - - #. - #Fine tune the kinetic stats of individual components - [kinetics.stressValues.v1] - - #. - #.[in Stress Units]Configure the individual stress impact of mechanical blocks. Note that this cost is doubled for every speed increase it receives - [kinetics.stressValues.v1.impact] - - [kinetics.stressValues.v1.impact.andesite_alloy] - andesite_alloy_shaft = 0.0 - andesite_encased_andesite_alloy_shaft = 0.0 - brass_encased_andesite_alloy_shaft = 0.0 - andesite_alloy_cogwheel = 0.0 - large_andesite_alloy_cogwheel = 0.0 - andesite_encased_andesite_alloy_cogwheel = 0.0 - andesite_encased_large_andesite_alloy_cogwheel = 0.0 - brass_encased_andesite_alloy_cogwheel = 0.0 - brass_encased_large_andesite_alloy_cogwheel = 0.0 - andesite_alloy_crushing_wheel = 0.5 - andesite_alloy_encased_fan = 0.5 - andesite_alloy_gearbox = 0.0 - andesite_alloy_mechanical_press = 0.5 - andesite_alloy_mechanical_mixer = 0.5 - andesite_alloy_millstone = 0.5 - andesite_alloy_mechanical_saw = 0.5 - andesite_alloy_mechanical_pump = 0.5 - - [kinetics.stressValues.v1.impact.steel] - steel_shaft = 0.0 - andesite_encased_steel_shaft = 0.0 - brass_encased_steel_shaft = 0.0 - steel_cogwheel = 0.0 - large_steel_cogwheel = 0.0 - andesite_encased_steel_cogwheel = 0.0 - andesite_encased_large_steel_cogwheel = 0.0 - brass_encased_steel_cogwheel = 0.0 - brass_encased_large_steel_cogwheel = 0.0 - steel_crushing_wheel = 1.0 - steel_encased_fan = 1.0 - steel_gearbox = 0.0 - steel_mechanical_press = 1.0 - steel_mechanical_mixer = 1.0 - steel_millstone = 1.0 - steel_mechanical_saw = 1.0 - steel_mechanical_pump = 1.0 - - [kinetics.stressValues.v1.impact.aluminium] - aluminium_shaft = 0.0 - andesite_encased_aluminium_shaft = 0.0 - brass_encased_aluminium_shaft = 0.0 - aluminium_cogwheel = 0.0 - large_aluminium_cogwheel = 0.0 - andesite_encased_aluminium_cogwheel = 0.0 - andesite_encased_large_aluminium_cogwheel = 0.0 - brass_encased_aluminium_cogwheel = 0.0 - brass_encased_large_aluminium_cogwheel = 0.0 - aluminium_crushing_wheel = 1.5 - aluminium_encased_fan = 1.5 - aluminium_gearbox = 0.0 - aluminium_mechanical_press = 1.5 - aluminium_mechanical_mixer = 1.5 - aluminium_millstone = 1.5 - aluminium_mechanical_saw = 1.5 - aluminium_mechanical_pump = 1.5 - - [kinetics.stressValues.v1.impact.stainless_steel] - stainless_steel_shaft = 0.0 - andesite_encased_stainless_steel_shaft = 0.0 - brass_encased_stainless_steel_shaft = 0.0 - stainless_steel_cogwheel = 0.0 - large_stainless_steel_cogwheel = 0.0 - andesite_encased_stainless_steel_cogwheel = 0.0 - andesite_encased_large_stainless_steel_cogwheel = 0.0 - brass_encased_stainless_steel_cogwheel = 0.0 - brass_encased_large_stainless_steel_cogwheel = 0.0 - stainless_steel_crushing_wheel = 2.0 - stainless_steel_encased_fan = 2.0 - stainless_steel_gearbox = 0.0 - stainless_steel_mechanical_press = 2.0 - stainless_steel_mechanical_mixer = 2.0 - stainless_steel_millstone = 2.0 - stainless_steel_mechanical_saw = 2.0 - stainless_steel_mechanical_pump = 2.0 - - [kinetics.stressValues.v1.impact.titanium] - titanium_shaft = 0.0 - andesite_encased_titanium_shaft = 0.0 - brass_encased_titanium_shaft = 0.0 - titanium_cogwheel = 0.0 - large_titanium_cogwheel = 0.0 - andesite_encased_titanium_cogwheel = 0.0 - andesite_encased_large_titanium_cogwheel = 0.0 - brass_encased_titanium_cogwheel = 0.0 - brass_encased_large_titanium_cogwheel = 0.0 - titanium_crushing_wheel = 2.5 - titanium_encased_fan = 2.5 - titanium_gearbox = 0.0 - titanium_mechanical_press = 2.5 - titanium_mechanical_mixer = 2.5 - titanium_millstone = 2.5 - titanium_mechanical_saw = 2.5 - titanium_mechanical_pump = 2.5 - - [kinetics.stressValues.v1.impact.tungsten_steel] - tungsten_steel_shaft = 0.0 - andesite_encased_tungsten_steel_shaft = 0.0 - brass_encased_tungsten_steel_shaft = 0.0 - tungsten_steel_cogwheel = 0.0 - large_tungsten_steel_cogwheel = 0.0 - andesite_encased_tungsten_steel_cogwheel = 0.0 - andesite_encased_large_tungsten_steel_cogwheel = 0.0 - brass_encased_tungsten_steel_cogwheel = 0.0 - brass_encased_large_tungsten_steel_cogwheel = 0.0 - tungsten_steel_crushing_wheel = 3.0 - tungsten_steel_encased_fan = 3.0 - tungsten_steel_gearbox = 0.0 - tungsten_steel_mechanical_press = 3.0 - tungsten_steel_mechanical_mixer = 3.0 - tungsten_steel_millstone = 3.0 - tungsten_steel_mechanical_saw = 3.0 - tungsten_steel_mechanical_pump = 3.0 - - [kinetics.stressValues.v1.impact.rhodium_plated_palladium] - rhodium_plated_palladium_shaft = 0.0 - andesite_encased_rhodium_plated_palladium_shaft = 0.0 - brass_encased_rhodium_plated_palladium_shaft = 0.0 - rhodium_plated_palladium_cogwheel = 0.0 - large_rhodium_plated_palladium_cogwheel = 0.0 - andesite_encased_rhodium_plated_palladium_cogwheel = 0.0 - andesite_encased_large_rhodium_plated_palladium_cogwheel = 0.0 - brass_encased_rhodium_plated_palladium_cogwheel = 0.0 - brass_encased_large_rhodium_plated_palladium_cogwheel = 0.0 - rhodium_plated_palladium_crushing_wheel = 3.5 - rhodium_plated_palladium_encased_fan = 3.5 - rhodium_plated_palladium_gearbox = 0.0 - rhodium_plated_palladium_mechanical_press = 3.5 - rhodium_plated_palladium_mechanical_mixer = 3.5 - rhodium_plated_palladium_millstone = 3.5 - rhodium_plated_palladium_mechanical_saw = 3.5 - rhodium_plated_palladium_mechanical_pump = 3.5 - - [kinetics.stressValues.v1.impact.naquadah_alloy] - naquadah_alloy_shaft = 0.0 - andesite_encased_naquadah_alloy_shaft = 0.0 - brass_encased_naquadah_alloy_shaft = 0.0 - naquadah_alloy_cogwheel = 0.0 - large_naquadah_alloy_cogwheel = 0.0 - andesite_encased_naquadah_alloy_cogwheel = 0.0 - andesite_encased_large_naquadah_alloy_cogwheel = 0.0 - brass_encased_naquadah_alloy_cogwheel = 0.0 - brass_encased_large_naquadah_alloy_cogwheel = 0.0 - naquadah_alloy_crushing_wheel = 4.0 - naquadah_alloy_encased_fan = 4.0 - naquadah_alloy_gearbox = 0.0 - naquadah_alloy_mechanical_press = 4.0 - naquadah_alloy_mechanical_mixer = 4.0 - naquadah_alloy_millstone = 4.0 - naquadah_alloy_mechanical_saw = 4.0 - naquadah_alloy_mechanical_pump = 4.0 - - [kinetics.stressValues.v1.impact.darmstadtium] - darmstadtium_shaft = 0.0 - andesite_encased_darmstadtium_shaft = 0.0 - brass_encased_darmstadtium_shaft = 0.0 - darmstadtium_cogwheel = 0.0 - large_darmstadtium_cogwheel = 0.0 - andesite_encased_darmstadtium_cogwheel = 0.0 - andesite_encased_large_darmstadtium_cogwheel = 0.0 - brass_encased_darmstadtium_cogwheel = 0.0 - brass_encased_large_darmstadtium_cogwheel = 0.0 - darmstadtium_crushing_wheel = 4.5 - darmstadtium_encased_fan = 4.5 - darmstadtium_gearbox = 0.0 - darmstadtium_mechanical_press = 4.5 - darmstadtium_mechanical_mixer = 4.5 - darmstadtium_millstone = 4.5 - darmstadtium_mechanical_saw = 4.5 - darmstadtium_mechanical_pump = 4.5 - - [kinetics.stressValues.v1.impact.neutronium] - neutronium_shaft = 0.0 - andesite_encased_neutronium_shaft = 0.0 - brass_encased_neutronium_shaft = 0.0 - neutronium_cogwheel = 0.0 - large_neutronium_cogwheel = 0.0 - andesite_encased_neutronium_cogwheel = 0.0 - andesite_encased_large_neutronium_cogwheel = 0.0 - brass_encased_neutronium_cogwheel = 0.0 - brass_encased_large_neutronium_cogwheel = 0.0 - neutronium_crushing_wheel = 5.0 - neutronium_encased_fan = 5.6 - neutronium_gearbox = 0.0 - neutronium_mechanical_press = 5.0 - neutronium_mechanical_mixer = 5.0 - neutronium_millstone = 5.0 - neutronium_mechanical_saw = 5.0 - neutronium_mechanical_pump = 5.0 - - [kinetics.stressValues.v1.impact."gtceu:rubber"] - rubber_belt_andesite_alloy = 0.0 - rubber_belt_steel = 0.0 - - [kinetics.stressValues.v1.impact."gtceu:silicone_rubber"] - silicone_rubber_belt_aluminium = 0.0 - silicone_rubber_belt_stainless_steel = 0.0 - - [kinetics.stressValues.v1.impact."gtceu:polyethylene"] - polyethylene_belt_titanium = 0.0 - polyethylene_belt_tungsten_steel = 0.0 - - [kinetics.stressValues.v1.impact."gtceu:polytetrafluoroethylene"] - polytetrafluoroethylene_belt_rhodium_plated_palladium = 0.0 - polytetrafluoroethylene_belt_naquadah_alloy = 0.0 - - [kinetics.stressValues.v1.impact."gtceu:polybenzimidazole"] - polybenzimidazole_belt_darmstadtium = 0.0 - polybenzimidazole_belt_neutronium = 0.0 - - #. - #Fine tune settings related to tiers - [kinetics.stressValues.v1.maxCapacity] - - #. - #. - #Settings related to andesite tier machines - [kinetics.stressValues.v1.maxCapacity.andesite] - #. - #Configure the max stress a kinetic block of this tier can support. - #Range: > -2147483648 - andesiteMaxCapacity = 32 - - #. - #Settings related to steel tier machines - [kinetics.stressValues.v1.maxCapacity.steel] - #. - #Configure the max stress a kinetic block of this tier can support. - #Range: > -2147483648 - steelMaxCapacity = 128 - - #. - #Settings related to aluminium tier machines - [kinetics.stressValues.v1.maxCapacity.aluminium] - #. - #Configure the max stress a kinetic block of this tier can support. - #Range: > -2147483648 - aluminiumMaxCapacity = 512 - - #. - #Settings related to stainless steel tier machines - [kinetics.stressValues.v1.maxCapacity.stainlessSteel] - #. - #Configure the max stress a kinetic block of this tier can support. - #Range: > -2147483648 - stainlessSteelMaxCapacity = 2048 - - #. - #Settings related to titanium tier machines - [kinetics.stressValues.v1.maxCapacity.titanium] - #. - #Configure the max stress a kinetic block of this tier can support. - #Range: > -2147483648 - titaniumMaxCapacity = 8192 - - #. - #Settings related to tungstensteel tier machines - [kinetics.stressValues.v1.maxCapacity.tungstensteel] - #. - #Configure the max stress a kinetic block of this tier can support. - #Range: > -2147483648 - tungstensteelMaxCapacity = 32768 - - #. - #Settings related to palladium tier machines - [kinetics.stressValues.v1.maxCapacity.palladium] - #. - #Configure the max stress a kinetic block of this tier can support. - #Range: > -2147483648 - palladiumMaxCapacity = 131072 - - #. - #Settings related to naquadah tier machines - [kinetics.stressValues.v1.maxCapacity.naquadah] - #. - #Configure the max stress a kinetic block of this tier can support. - #Range: > -2147483648 - naquadahMaxCapacity = 524288 - - #. - #Settings related to darmstadtium tier machines - [kinetics.stressValues.v1.maxCapacity.darmstadtium] - #. - #Configure the max stress a kinetic block of this tier can support. - #Range: > -2147483648 - darmstadtiumMaxCapacity = 2097152 - - #. - #Settings related to neutronium tier machines - [kinetics.stressValues.v1.maxCapacity.neutronium] - #. - #Configure the max stress a kinetic block of this tier can support. - #Range: > -2147483648 - neutroniumMaxCapacity = 8388608 - - #. - #Fine tune settings related to pumps - [kinetics.pumps] - - #. - #. - #Configure the individual pressure of pumps. Note that pressure is multiplied by the speed of the pump - [kinetics.pumps.pressure] - #. - #Range: 0.0 ~ 3.4028234663852886E38 - andesitePressure = 8.0 - #. - #Range: 0.0 ~ 3.4028234663852886E38 - steelPressure = 32.0 - #. - #Range: 0.0 ~ 3.4028234663852886E38 - aluminiumPressure = 128.0 - #. - #Range: 0.0 ~ 3.4028234663852886E38 - stainlessSteelPressure = 512.0 - #. - #Range: 0.0 ~ 3.4028234663852886E38 - titaniumPressure = 2048.0 - #. - #Range: 0.0 ~ 3.4028234663852886E38 - tungstensteelPressure = 8192.0 - #. - #Range: 0.0 ~ 3.4028234663852886E38 - palladiumPressure = 16384.0 - #. - #Range: 0.0 ~ 3.4028234663852886E38 - naquadahPressure = 32768.0 - #. - #Range: 0.0 ~ 3.4028234663852886E38 - darmstadtiumPressure = 131072.0 - #. - #Range: 0.0 ~ 3.4028234663852886E38 - neutroniumPressure = 524288.0 - +#. +#Multiplier used for calculating how many ticks should initially be removed in fan processing recipes, based on how fast the fan is spinning. +#Range: 0.0 ~ 3.4028234663852886E38 +fanSpeedMultiplier = 0.75 + +#. +#Parameters and abilities of Greate's kinetic mechanisms +[kinetics] + + #. + #. + #Fine tune settings related to belts + [kinetics.belts] + + #. + #. + #Rubber Belt Settings + [kinetics.belts.rubber] + #. + #Maximum length in blocks of rubber mechanical belts + #Range: > 5 + rubberMaxBeltLength = 20 + + #. + #Silicone Rubber Belt Settings + [kinetics.belts.silicone] + #. + #Maximum length in blocks of silicone mechanical belts + #Range: > 5 + siliconeMaxBeltLength = 25 + + #. + #Polyethylene Belt Settings + [kinetics.belts.polyethylene] + #. + #Maximum length in blocks of polyethylene mechanical belts + #Range: > 5 + polyethyleneMaxBeltLength = 30 + + #. + #Polytetrafluoroethylene Belt Settings + [kinetics.belts.polytetrafluoroethylene] + #. + #Maximum length in blocks of polytetrafluoroethylene mechanical belts + #Range: > 5 + polytetrafluoroethyleneMaxBeltLength = 35 + + #. + #Polybenzimidazole Belt Settings + [kinetics.belts.polybenzimidazole] + #. + #Maximum length in blocks of polybenzimidazole mechanical belts + #Range: > 5 + polybenzimidazoleMaxBeltLength = 40 + + [kinetics.stressValues] + + #. + #Fine tune the kinetic stats of individual components + [kinetics.stressValues.v2] + + #. + #.[in Stress Units]Configure the individual stress impact of mechanical blocks. Note that this cost is doubled for every speed increase it receives + [kinetics.stressValues.v2.impact] + + [kinetics.stressValues.v2.impact.andesite_alloy] + rubber_belt_andesite_alloy = 0.0 + andesite_alloy_shaft = 0.0 + andesite_encased_andesite_alloy_shaft = 0.0 + brass_encased_andesite_alloy_shaft = 0.0 + andesite_alloy_cogwheel = 0.0 + large_andesite_alloy_cogwheel = 0.0 + andesite_encased_andesite_alloy_cogwheel = 0.0 + andesite_encased_large_andesite_alloy_cogwheel = 0.0 + brass_encased_andesite_alloy_cogwheel = 0.0 + brass_encased_large_andesite_alloy_cogwheel = 0.0 + andesite_alloy_crushing_wheel = 0.5 + andesite_alloy_encased_fan = 0.5 + andesite_alloy_gearbox = 0.0 + andesite_alloy_mechanical_press = 0.5 + andesite_alloy_mechanical_mixer = 0.5 + andesite_alloy_millstone = 0.5 + andesite_alloy_mechanical_saw = 0.5 + andesite_alloy_mechanical_pump = 0.5 + + [kinetics.stressValues.v2.impact.steel] + rubber_belt_steel = 0.0 + steel_shaft = 0.0 + andesite_encased_steel_shaft = 0.0 + brass_encased_steel_shaft = 0.0 + steel_cogwheel = 0.0 + large_steel_cogwheel = 0.0 + andesite_encased_steel_cogwheel = 0.0 + andesite_encased_large_steel_cogwheel = 0.0 + brass_encased_steel_cogwheel = 0.0 + brass_encased_large_steel_cogwheel = 0.0 + steel_crushing_wheel = 1.0 + steel_encased_fan = 1.0 + steel_gearbox = 0.0 + steel_mechanical_press = 1.0 + steel_mechanical_mixer = 1.0 + steel_millstone = 1.0 + steel_mechanical_saw = 1.0 + steel_mechanical_pump = 1.0 + tungsten_steel_gearbox = 0.0 + tungsten_steel_crushing_wheel = 3.0 + brass_encased_tungsten_steel_shaft = 0.0 + silicone_rubber_belt_stainless_steel = 0.0 + andesite_encased_large_tungsten_steel_cogwheel = 0.0 + andesite_encased_tungsten_steel_cogwheel = 0.0 + stainless_steel_mechanical_saw = 4.0 + stainless_steel_cogwheel = 0.0 + andesite_encased_stainless_steel_shaft = 0.0 + tungsten_steel_encased_fan = 3.0 + andesite_encased_large_stainless_steel_cogwheel = 0.0 + large_tungsten_steel_cogwheel = 0.0 + stainless_steel_shaft = 0.0 + tungsten_steel_cogwheel = 0.0 + stainless_steel_mechanical_press = 4.0 + large_stainless_steel_cogwheel = 0.0 + brass_encased_large_tungsten_steel_cogwheel = 0.0 + stainless_steel_mechanical_pump = 2.0 + brass_encased_large_stainless_steel_cogwheel = 0.0 + stainless_steel_encased_fan = 2.0 + stainless_steel_millstone = 2.0 + stainless_steel_gearbox = 0.0 + tungsten_steel_millstone = 3.0 + brass_encased_stainless_steel_shaft = 0.0 + tungsten_steel_mechanical_press = 6.0 + polyethylene_belt_tungsten_steel = 0.0 + tungsten_steel_shaft = 0.0 + stainless_steel_mechanical_mixer = 2.0 + andesite_encased_stainless_steel_cogwheel = 0.0 + andesite_encased_tungsten_steel_shaft = 0.0 + tungsten_steel_mechanical_saw = 6.0 + brass_encased_tungsten_steel_cogwheel = 0.0 + brass_encased_stainless_steel_cogwheel = 0.0 + stainless_steel_crushing_wheel = 2.0 + tungsten_steel_mechanical_mixer = 3.0 + tungsten_steel_mechanical_pump = 3.0 + + [kinetics.stressValues.v2.impact.aluminium] + silicone_rubber_belt_aluminium = 0.0 + aluminium_shaft = 0.0 + andesite_encased_aluminium_shaft = 0.0 + brass_encased_aluminium_shaft = 0.0 + aluminium_cogwheel = 0.0 + large_aluminium_cogwheel = 0.0 + andesite_encased_aluminium_cogwheel = 0.0 + andesite_encased_large_aluminium_cogwheel = 0.0 + brass_encased_aluminium_cogwheel = 0.0 + brass_encased_large_aluminium_cogwheel = 0.0 + aluminium_crushing_wheel = 1.5 + aluminium_encased_fan = 1.5 + aluminium_gearbox = 0.0 + aluminium_mechanical_press = 1.5 + aluminium_mechanical_mixer = 1.5 + aluminium_millstone = 1.5 + aluminium_mechanical_saw = 1.5 + aluminium_mechanical_pump = 1.5 + + [kinetics.stressValues.v2.impact.stainless_steel] + silicone_rubber_belt_stainless_steel = 0.0 + stainless_steel_shaft = 0.0 + andesite_encased_stainless_steel_shaft = 0.0 + brass_encased_stainless_steel_shaft = 0.0 + stainless_steel_cogwheel = 0.0 + large_stainless_steel_cogwheel = 0.0 + andesite_encased_stainless_steel_cogwheel = 0.0 + andesite_encased_large_stainless_steel_cogwheel = 0.0 + brass_encased_stainless_steel_cogwheel = 0.0 + brass_encased_large_stainless_steel_cogwheel = 0.0 + stainless_steel_crushing_wheel = 2.0 + stainless_steel_encased_fan = 2.0 + stainless_steel_gearbox = 0.0 + stainless_steel_mechanical_press = 2.0 + stainless_steel_mechanical_mixer = 2.0 + stainless_steel_millstone = 2.0 + stainless_steel_mechanical_saw = 2.0 + stainless_steel_mechanical_pump = 2.0 + + [kinetics.stressValues.v2.impact.titanium] + polyethylene_belt_titanium = 0.0 + titanium_shaft = 0.0 + andesite_encased_titanium_shaft = 0.0 + brass_encased_titanium_shaft = 0.0 + titanium_cogwheel = 0.0 + large_titanium_cogwheel = 0.0 + andesite_encased_titanium_cogwheel = 0.0 + andesite_encased_large_titanium_cogwheel = 0.0 + brass_encased_titanium_cogwheel = 0.0 + brass_encased_large_titanium_cogwheel = 0.0 + titanium_crushing_wheel = 2.5 + titanium_encased_fan = 2.5 + titanium_gearbox = 0.0 + titanium_mechanical_press = 2.5 + titanium_mechanical_mixer = 2.5 + titanium_millstone = 2.5 + titanium_mechanical_saw = 2.5 + titanium_mechanical_pump = 2.5 + + [kinetics.stressValues.v2.impact.tungsten_steel] + polyethylene_belt_tungsten_steel = 0.0 + tungsten_steel_shaft = 0.0 + andesite_encased_tungsten_steel_shaft = 0.0 + brass_encased_tungsten_steel_shaft = 0.0 + tungsten_steel_cogwheel = 0.0 + large_tungsten_steel_cogwheel = 0.0 + andesite_encased_tungsten_steel_cogwheel = 0.0 + andesite_encased_large_tungsten_steel_cogwheel = 0.0 + brass_encased_tungsten_steel_cogwheel = 0.0 + brass_encased_large_tungsten_steel_cogwheel = 0.0 + tungsten_steel_crushing_wheel = 3.0 + tungsten_steel_encased_fan = 3.0 + tungsten_steel_gearbox = 0.0 + tungsten_steel_mechanical_press = 3.0 + tungsten_steel_mechanical_mixer = 3.0 + tungsten_steel_millstone = 3.0 + tungsten_steel_mechanical_saw = 3.0 + tungsten_steel_mechanical_pump = 3.0 + + [kinetics.stressValues.v2.impact.rhodium_plated_palladium] + polytetrafluoroethylene_belt_rhodium_plated_palladium = 0.0 + rhodium_plated_palladium_shaft = 0.0 + andesite_encased_rhodium_plated_palladium_shaft = 0.0 + brass_encased_rhodium_plated_palladium_shaft = 0.0 + rhodium_plated_palladium_cogwheel = 0.0 + large_rhodium_plated_palladium_cogwheel = 0.0 + andesite_encased_rhodium_plated_palladium_cogwheel = 0.0 + andesite_encased_large_rhodium_plated_palladium_cogwheel = 0.0 + brass_encased_rhodium_plated_palladium_cogwheel = 0.0 + brass_encased_large_rhodium_plated_palladium_cogwheel = 0.0 + rhodium_plated_palladium_crushing_wheel = 3.5 + rhodium_plated_palladium_encased_fan = 3.5 + rhodium_plated_palladium_gearbox = 0.0 + rhodium_plated_palladium_mechanical_press = 3.5 + rhodium_plated_palladium_mechanical_mixer = 3.5 + rhodium_plated_palladium_millstone = 3.5 + rhodium_plated_palladium_mechanical_saw = 3.5 + rhodium_plated_palladium_mechanical_pump = 3.5 + + [kinetics.stressValues.v2.impact.naquadah_alloy] + polytetrafluoroethylene_belt_naquadah_alloy = 0.0 + naquadah_alloy_shaft = 0.0 + andesite_encased_naquadah_alloy_shaft = 0.0 + brass_encased_naquadah_alloy_shaft = 0.0 + naquadah_alloy_cogwheel = 0.0 + large_naquadah_alloy_cogwheel = 0.0 + andesite_encased_naquadah_alloy_cogwheel = 0.0 + andesite_encased_large_naquadah_alloy_cogwheel = 0.0 + brass_encased_naquadah_alloy_cogwheel = 0.0 + brass_encased_large_naquadah_alloy_cogwheel = 0.0 + naquadah_alloy_crushing_wheel = 4.0 + naquadah_alloy_encased_fan = 4.0 + naquadah_alloy_gearbox = 0.0 + naquadah_alloy_mechanical_press = 4.0 + naquadah_alloy_mechanical_mixer = 4.0 + naquadah_alloy_millstone = 4.0 + naquadah_alloy_mechanical_saw = 4.0 + naquadah_alloy_mechanical_pump = 4.0 + + [kinetics.stressValues.v2.impact.darmstadtium] + polybenzimidazole_belt_darmstadtium = 0.0 + darmstadtium_shaft = 0.0 + andesite_encased_darmstadtium_shaft = 0.0 + brass_encased_darmstadtium_shaft = 0.0 + darmstadtium_cogwheel = 0.0 + large_darmstadtium_cogwheel = 0.0 + andesite_encased_darmstadtium_cogwheel = 0.0 + andesite_encased_large_darmstadtium_cogwheel = 0.0 + brass_encased_darmstadtium_cogwheel = 0.0 + brass_encased_large_darmstadtium_cogwheel = 0.0 + darmstadtium_crushing_wheel = 4.5 + darmstadtium_encased_fan = 4.5 + darmstadtium_gearbox = 0.0 + darmstadtium_mechanical_press = 4.5 + darmstadtium_mechanical_mixer = 4.5 + darmstadtium_millstone = 4.5 + darmstadtium_mechanical_saw = 4.5 + darmstadtium_mechanical_pump = 4.5 + + [kinetics.stressValues.v2.impact.neutronium] + polybenzimidazole_belt_neutronium = 0.0 + neutronium_shaft = 0.0 + andesite_encased_neutronium_shaft = 0.0 + brass_encased_neutronium_shaft = 0.0 + neutronium_cogwheel = 0.0 + large_neutronium_cogwheel = 0.0 + andesite_encased_neutronium_cogwheel = 0.0 + andesite_encased_large_neutronium_cogwheel = 0.0 + brass_encased_neutronium_cogwheel = 0.0 + brass_encased_large_neutronium_cogwheel = 0.0 + neutronium_crushing_wheel = 5.0 + neutronium_encased_fan = 5.6 + neutronium_gearbox = 0.0 + neutronium_mechanical_press = 5.0 + neutronium_mechanical_mixer = 5.0 + neutronium_millstone = 5.0 + neutronium_mechanical_saw = 5.0 + neutronium_mechanical_pump = 5.0 + + #. + #Fine tune settings related to tiers + [kinetics.stressValues.v2.maxCapacity] + + #. + #. + #Settings related to andesite tier machines + [kinetics.stressValues.v2.maxCapacity.andesite] + #. + #Configure the max stress a kinetic block of this tier can support. + #Range: > -2147483648 + andesiteMaxCapacity = 32 + + #. + #Settings related to steel tier machines + [kinetics.stressValues.v2.maxCapacity.steel] + #. + #Configure the max stress a kinetic block of this tier can support. + #Range: > -2147483648 + steelMaxCapacity = 128 + + #. + #Settings related to aluminium tier machines + [kinetics.stressValues.v2.maxCapacity.aluminium] + #. + #Configure the max stress a kinetic block of this tier can support. + #Range: > -2147483648 + aluminiumMaxCapacity = 512 + + #. + #Settings related to stainless steel tier machines + [kinetics.stressValues.v2.maxCapacity.stainlessSteel] + #. + #Configure the max stress a kinetic block of this tier can support. + #Range: > -2147483648 + stainlessSteelMaxCapacity = 2048 + + #. + #Settings related to titanium tier machines + [kinetics.stressValues.v2.maxCapacity.titanium] + #. + #Configure the max stress a kinetic block of this tier can support. + #Range: > -2147483648 + titaniumMaxCapacity = 8192 + + #. + #Settings related to tungstensteel tier machines + [kinetics.stressValues.v2.maxCapacity.tungstensteel] + #. + #Configure the max stress a kinetic block of this tier can support. + #Range: > -2147483648 + tungstensteelMaxCapacity = 32768 + + #. + #Settings related to palladium tier machines + [kinetics.stressValues.v2.maxCapacity.palladium] + #. + #Configure the max stress a kinetic block of this tier can support. + #Range: > -2147483648 + palladiumMaxCapacity = 131072 + + #. + #Settings related to naquadah tier machines + [kinetics.stressValues.v2.maxCapacity.naquadah] + #. + #Configure the max stress a kinetic block of this tier can support. + #Range: > -2147483648 + naquadahMaxCapacity = 524288 + + #. + #Settings related to darmstadtium tier machines + [kinetics.stressValues.v2.maxCapacity.darmstadtium] + #. + #Configure the max stress a kinetic block of this tier can support. + #Range: > -2147483648 + darmstadtiumMaxCapacity = 2097152 + + #. + #Settings related to neutronium tier machines + [kinetics.stressValues.v2.maxCapacity.neutronium] + #. + #Configure the max stress a kinetic block of this tier can support. + #Range: > -2147483648 + neutroniumMaxCapacity = 8388608 + + #. + #Fine tune settings related to pumps + [kinetics.pumps] + + #. + #. + #Configure the individual pressure of pumps. Note that pressure is multiplied by the speed of the pump + [kinetics.pumps.pressure] + #. + #Range: 0.0 ~ 3.4028234663852886E38 + andesitePressure = 8.0 + #. + #Range: 0.0 ~ 3.4028234663852886E38 + steelPressure = 32.0 + #. + #Range: 0.0 ~ 3.4028234663852886E38 + aluminiumPressure = 128.0 + #. + #Range: 0.0 ~ 3.4028234663852886E38 + stainlessSteelPressure = 512.0 + #. + #Range: 0.0 ~ 3.4028234663852886E38 + titaniumPressure = 2048.0 + #. + #Range: 0.0 ~ 3.4028234663852886E38 + tungstensteelPressure = 8192.0 + #. + #Range: 0.0 ~ 3.4028234663852886E38 + palladiumPressure = 16384.0 + #. + #Range: 0.0 ~ 3.4028234663852886E38 + naquadahPressure = 32768.0 + #. + #Range: 0.0 ~ 3.4028234663852886E38 + darmstadtiumPressure = 131072.0 + #. + #Range: 0.0 ~ 3.4028234663852886E38 + neutroniumPressure = 524288.0 + diff --git a/defaultconfigs/sophisticatedbackpacks-server.toml b/defaultconfigs/sophisticatedbackpacks-server.toml index a2eb12c09..c937a3214 100644 --- a/defaultconfigs/sophisticatedbackpacks-server.toml +++ b/defaultconfigs/sophisticatedbackpacks-server.toml @@ -446,3 +446,15 @@ #Range: 1 ~ 6 slotsInRow = 4 + #Alchemy Upgrade Settings + [server.alchemyUpgrade] + #Number of Alchemy Upgrade's filter slots + #Range: 1 ~ 20 + filterSlots = 4 + + #Advanced Alchemy Upgrade Settings + [server.advancedAlchemyUpgrade] + #Number of Advanced Alchemy Upgrade's filter slots + #Range: 1 ~ 20 + filterSlots = 8 + diff --git a/kubejs/assets/ad_astra/models/item/aeronos_stem.json b/kubejs/assets/ad_astra/models/item/aeronos_stem.json new file mode 100644 index 000000000..da775f84b --- /dev/null +++ b/kubejs/assets/ad_astra/models/item/aeronos_stem.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "ad_astra:item/aeronos_stem" + } +} \ No newline at end of file diff --git a/kubejs/assets/ad_astra/models/item/glacian_log.json b/kubejs/assets/ad_astra/models/item/glacian_log.json new file mode 100644 index 000000000..195fdca45 --- /dev/null +++ b/kubejs/assets/ad_astra/models/item/glacian_log.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "ad_astra:item/glacian_log" + } +} \ No newline at end of file diff --git a/kubejs/assets/ad_astra/models/item/stripped_glacian_log.json b/kubejs/assets/ad_astra/models/item/stripped_glacian_log.json new file mode 100644 index 000000000..ee96860d2 --- /dev/null +++ b/kubejs/assets/ad_astra/models/item/stripped_glacian_log.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "ad_astra:item/glacian_stripped" + } +} \ No newline at end of file diff --git a/kubejs/assets/ad_astra/models/item/strophar_stem.json b/kubejs/assets/ad_astra/models/item/strophar_stem.json new file mode 100644 index 000000000..8e07cc64c --- /dev/null +++ b/kubejs/assets/ad_astra/models/item/strophar_stem.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "ad_astra:item/strophar_stem" + } +} \ No newline at end of file diff --git a/kubejs/assets/ad_astra/textures/item/aeronos_stem.png b/kubejs/assets/ad_astra/textures/item/aeronos_stem.png new file mode 100644 index 000000000..411e5f772 Binary files /dev/null and b/kubejs/assets/ad_astra/textures/item/aeronos_stem.png differ diff --git a/kubejs/assets/ad_astra/textures/item/glacian_log.png b/kubejs/assets/ad_astra/textures/item/glacian_log.png new file mode 100644 index 000000000..2cbd873a7 Binary files /dev/null and b/kubejs/assets/ad_astra/textures/item/glacian_log.png differ diff --git a/kubejs/assets/ad_astra/textures/item/glacian_stripped.png b/kubejs/assets/ad_astra/textures/item/glacian_stripped.png new file mode 100644 index 000000000..3655423e0 Binary files /dev/null and b/kubejs/assets/ad_astra/textures/item/glacian_stripped.png differ diff --git a/kubejs/assets/ad_astra/textures/item/strophar_stem.png b/kubejs/assets/ad_astra/textures/item/strophar_stem.png new file mode 100644 index 000000000..bff9e8f0a Binary files /dev/null and b/kubejs/assets/ad_astra/textures/item/strophar_stem.png differ diff --git a/kubejs/assets/create/models/block/mechanical_pump/block.json b/kubejs/assets/create/models/block/mechanical_pump/block.json new file mode 100644 index 000000000..8dd3ab9b7 --- /dev/null +++ b/kubejs/assets/create/models/block/mechanical_pump/block.json @@ -0,0 +1,146 @@ +{ + "credit": "Made with Blockbench", + "parent": "create:block/block", + "textures": { + "2": "create:block/pipes", + "4": "create:block/pump", + "particle": "create:block/pump" + }, + "elements": [ + { + "name": "middle", + "from": [4, 4, 4], + "to": [12, 12, 12], + "rotation": {"angle": 0, "axis": "z", "origin": [8.33333, 8.5, 8]}, + "faces": { + "north": {"uv": [0, 6.5, 4, 2.5], "rotation": 90, "texture": "#2"}, + "east": {"uv": [0, 6.5, 4, 2.5], "rotation": 90, "texture": "#2"}, + "south": {"uv": [0, 6.5, 4, 2.5], "rotation": 90, "texture": "#2"}, + "west": {"uv": [0, 6.5, 4, 2.5], "rotation": 90, "texture": "#2"}, + "up": {"uv": [0, 6.5, 4, 2.5], "rotation": 90, "texture": "#2"}, + "down": {"uv": [0, 6.5, 4, 2.5], "rotation": 90, "texture": "#2"} + } + }, + { + "name": "back", + "from": [2, 0, 2], + "to": [14, 5, 14], + "rotation": {"angle": 0, "axis": "z", "origin": [8.33333, 8.5, 8]}, + "faces": { + "north": {"uv": [13.5, 2, 16, 8], "rotation": 270, "texture": "#2"}, + "east": {"uv": [13.5, 2, 16, 8], "rotation": 270, "texture": "#2"}, + "south": {"uv": [13.5, 2, 16, 8], "rotation": 270, "texture": "#2"}, + "west": {"uv": [13.5, 2, 16, 8], "rotation": 270, "texture": "#2"}, + "up": {"uv": [0, 0, 12, 12], "rotation": 180, "texture": "#4"}, + "down": {"uv": [0, 0, 12, 12], "texture": "#4"} + } + }, + { + "name": "front", + "from": [3, 11, 3], + "to": [13, 16, 13], + "rotation": {"angle": 0, "axis": "z", "origin": [8.33333, 8.5, 8]}, + "faces": { + "north": {"uv": [10.5, 2.5, 13, 7.5], "rotation": 90, "texture": "#2"}, + "east": {"uv": [10.5, 2.5, 13, 7.5], "rotation": 90, "texture": "#2"}, + "south": {"uv": [10.5, 2.5, 13, 7.5], "rotation": 90, "texture": "#2"}, + "west": {"uv": [10.5, 2.5, 13, 7.5], "rotation": 90, "texture": "#2"}, + "up": {"uv": [11, 11, 16, 16], "texture": "#2"}, + "down": {"uv": [6, 11, 11, 16], "texture": "#2"} + } + }, + { + "from": [5.85355, 13.25, 1.75], + "to": [9.85355, 15.25, 13.75], + "rotation": {"angle": 45, "axis": "z", "origin": [8.35355, 13.25, 7.75]}, + "faces": { + "north": {"uv": [16, 0, 12, 2], "texture": "#4"}, + "east": {"uv": [15, 0, 16, 2], "texture": "#4"}, + "south": {"uv": [12, 0, 16, 2], "texture": "#4"}, + "west": {"uv": [12, 0, 13, 2], "texture": "#4"}, + "up": {"uv": [12, 0, 16, 1], "texture": "#4"}, + "down": {"uv": [12, 1, 16, 2], "texture": "#4"} + } + }, + { + "from": [7.85355, 11.25, 1.75], + "to": [9.85355, 13.25, 13.75], + "rotation": {"angle": 45, "axis": "z", "origin": [8.35355, 13.25, 7.75]}, + "faces": { + "north": {"uv": [16, 2, 14, 4], "texture": "#4"}, + "east": {"uv": [15, 2, 16, 4], "texture": "#4"}, + "south": {"uv": [14, 2, 16, 4], "texture": "#4"}, + "west": {"uv": [14, 2, 15, 4], "texture": "#4"}, + "down": {"uv": [14, 3, 16, 4], "texture": "#4"} + } + }, + { + "from": [2.35355, 10.75, 7.75], + "to": [14.35355, 12.75, 9.75], + "rotation": {"angle": -45, "axis": "x", "origin": [8.35355, 13.25, 7.75]}, + "faces": { + "north": {"uv": [14, 2, 15, 4], "texture": "#4"}, + "east": {"uv": [16, 2, 14, 4], "texture": "#4"}, + "south": {"uv": [15, 2, 16, 4], "texture": "#4"}, + "west": {"uv": [14, 2, 16, 4], "texture": "#4"}, + "down": {"uv": [14, 3, 16, 4], "rotation": 270, "texture": "#4"} + } + }, + { + "from": [2.35355, 12.75, 5.75], + "to": [14.35355, 14.75, 9.75], + "rotation": {"angle": -45, "axis": "x", "origin": [8.35355, 13.25, 7.75]}, + "faces": { + "north": {"uv": [12, 0, 13, 2], "texture": "#4"}, + "east": {"uv": [16, 0, 12, 2], "texture": "#4"}, + "south": {"uv": [15, 0, 16, 2], "texture": "#4"}, + "west": {"uv": [12, 0, 16, 2], "texture": "#4"}, + "up": {"uv": [12, 0, 16, 1], "rotation": 90, "texture": "#4"}, + "down": {"uv": [12, 1, 16, 2], "rotation": 270, "texture": "#4"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "thirdperson_lefthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, 225, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [30, 135, 0], + "scale": [0.625, 0.625, 0.625] + }, + "fixed": { + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + { + "name": "pump", + "origin": [8, 8, 8], + "color": 0, + "children": [0, 1, 2] + }, + 3, + 4, + 5, + 6 + ] +} \ No newline at end of file diff --git a/kubejs/assets/create/models/block/mechanical_pump/cog.json b/kubejs/assets/create/models/block/mechanical_pump/cog.json new file mode 100644 index 000000000..d9f2d4c46 --- /dev/null +++ b/kubejs/assets/create/models/block/mechanical_pump/cog.json @@ -0,0 +1,123 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "texture_size": [32, 32], + "textures": { + "5": "create:block/millstone", + "particle": "create:block/palettes/stone_types/cut/andesite_cut" + }, + "elements": [ + { + "name": "Gear6", + "from": [6.5, -1, 5], + "to": [9.5, 17, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 6.5]}, + "faces": { + "north": {"uv": [0, 8.5, 9, 10], "rotation": 90, "texture": "#5"}, + "east": {"uv": [0, 10, 9, 13], "rotation": 270, "texture": "#5"}, + "south": {"uv": [0, 8.5, 9, 10], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0, 10, 9, 13], "rotation": 90, "texture": "#5"}, + "up": {"uv": [9, 10, 10.5, 13], "rotation": 180, "texture": "#5"}, + "down": {"uv": [9, 10, 10.5, 13], "texture": "#5"} + } + }, + { + "name": "Gear7", + "from": [6.5, -1, 5], + "to": [9.5, 17, 11], + "rotation": {"angle": 45, "axis": "z", "origin": [8, 8, 6.5]}, + "faces": { + "north": {"uv": [0, 8.5, 9, 10], "rotation": 90, "texture": "#5"}, + "east": {"uv": [0, 10, 9, 13], "rotation": 270, "texture": "#5"}, + "south": {"uv": [0, 8.5, 9, 10], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0, 10, 9, 13], "rotation": 90, "texture": "#5"}, + "up": {"uv": [9, 10, 10.5, 13], "rotation": 180, "texture": "#5"}, + "down": {"uv": [9, 10, 10.5, 13], "texture": "#5"} + } + }, + { + "name": "Gear8", + "from": [-1, 6.5, 5], + "to": [17, 9.5, 11], + "rotation": {"angle": 45, "axis": "z", "origin": [8, 8, 6.5]}, + "faces": { + "north": {"uv": [0, 8.5, 9, 10], "texture": "#5"}, + "east": {"uv": [9, 10, 10.5, 13], "rotation": 270, "texture": "#5"}, + "south": {"uv": [0, 8.5, 9, 10], "texture": "#5"}, + "west": {"uv": [9, 10, 10.5, 13], "rotation": 90, "texture": "#5"}, + "up": {"uv": [0, 10, 9, 13], "rotation": 180, "texture": "#5"}, + "down": {"uv": [0, 10, 9, 13], "texture": "#5"} + } + }, + { + "name": "Gear8", + "from": [-1, 6.5, 5], + "to": [17, 9.5, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 6.5]}, + "faces": { + "north": {"uv": [0, 8.5, 9, 10], "texture": "#5"}, + "east": {"uv": [9, 10, 10.5, 13], "rotation": 270, "texture": "#5"}, + "south": {"uv": [0, 8.5, 9, 10], "texture": "#5"}, + "west": {"uv": [9, 10, 10.5, 13], "rotation": 90, "texture": "#5"}, + "up": {"uv": [0, 10, 9, 13], "rotation": 180, "texture": "#5"}, + "down": {"uv": [0, 10, 9, 13], "texture": "#5"} + } + }, + { + "name": "GearCaseInner", + "from": [2, 2, 5.5], + "to": [14, 14, 10.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 7]}, + "faces": { + "north": {"uv": [0, 0, 6, 6], "rotation": 180, "texture": "#5"}, + "east": {"uv": [0, 6, 6, 8.5], "rotation": 270, "texture": "#5"}, + "south": {"uv": [0, 0, 6, 6], "texture": "#5"}, + "west": {"uv": [0, 6, 6, 8.5], "rotation": 90, "texture": "#5"}, + "up": {"uv": [0, 6, 6, 8.5], "rotation": 180, "texture": "#5"}, + "down": {"uv": [0, 6, 6, 8.5], "texture": "#5"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [75, -149, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "thirdperson_lefthand": { + "rotation": [75, -149, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, -55, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, -55, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 1, 1.25], + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [30, 45, 0], + "translation": [2.5, -0.5, 0], + "scale": [0.625, 0.625, 0.625] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 1.75, -4.5], + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + { + "name": "cogwheel", + "origin": [8, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/create/models/block/mechanical_pump/item.json b/kubejs/assets/create/models/block/mechanical_pump/item.json new file mode 100644 index 000000000..161c4910c --- /dev/null +++ b/kubejs/assets/create/models/block/mechanical_pump/item.json @@ -0,0 +1,225 @@ +{ + "credit": "Made with Blockbench", + "parent": "create:block/block", + "textures": { + "2": "create:block/pipes", + "4": "create:block/pump", + "5": "create:block/millstone", + "particle": "create:block/pump" + }, + "elements": [ + { + "name": "Gear5", + "from": [5.5, 7, -1], + "to": [11.5, 10, 17], + "rotation": {"angle": 0, "axis": "y", "origin": [8.5, 8.5, 8]}, + "faces": { + "north": {"uv": [9, 10, 10.5, 13], "rotation": 90, "texture": "#5"}, + "east": {"uv": [0, 8.5, 9, 10], "texture": "#5"}, + "south": {"uv": [9, 10, 10.5, 13], "rotation": 270, "texture": "#5"}, + "west": {"uv": [0, 8.5, 9, 10], "texture": "#5"}, + "up": {"uv": [0, 10, 9, 13], "rotation": 270, "texture": "#5"}, + "down": {"uv": [0, 10, 9, 13], "rotation": 270, "texture": "#5"} + } + }, + { + "name": "Gear6", + "from": [5.5, 7, -1], + "to": [11.5, 10, 17], + "rotation": {"angle": -45, "axis": "x", "origin": [8.5, 8.5, 8]}, + "faces": { + "north": {"uv": [9, 10, 10.5, 13], "rotation": 90, "texture": "#5"}, + "east": {"uv": [0, 8.5, 9, 10], "texture": "#5"}, + "south": {"uv": [9, 10, 10.5, 13], "rotation": 270, "texture": "#5"}, + "west": {"uv": [0, 8.5, 9, 10], "texture": "#5"}, + "up": {"uv": [0, 10, 9, 13], "rotation": 270, "texture": "#5"}, + "down": {"uv": [0, 10, 9, 13], "rotation": 270, "texture": "#5"} + } + }, + { + "name": "Gear7", + "from": [5.5, -0.5, 6.5], + "to": [11.5, 17.5, 9.5], + "rotation": {"angle": -45, "axis": "x", "origin": [8.5, 8.5, 8]}, + "faces": { + "north": {"uv": [0, 10, 9, 13], "rotation": 90, "texture": "#5"}, + "east": {"uv": [0, 8.5, 9, 10], "rotation": 90, "texture": "#5"}, + "south": {"uv": [0, 10, 9, 13], "rotation": 270, "texture": "#5"}, + "west": {"uv": [0, 8.5, 9, 10], "rotation": 270, "texture": "#5"}, + "up": {"uv": [9, 10, 10.5, 13], "rotation": 270, "texture": "#5"}, + "down": {"uv": [9, 10, 10.5, 13], "rotation": 270, "texture": "#5"} + } + }, + { + "name": "Gear7", + "from": [5.5, -0.5, 6.5], + "to": [11.5, 17.5, 9.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8.5, 8.5, 8]}, + "faces": { + "north": {"uv": [0, 10, 9, 13], "rotation": 90, "texture": "#5"}, + "east": {"uv": [0, 8.5, 9, 10], "rotation": 90, "texture": "#5"}, + "south": {"uv": [0, 10, 9, 13], "rotation": 270, "texture": "#5"}, + "west": {"uv": [0, 8.5, 9, 10], "rotation": 270, "texture": "#5"}, + "up": {"uv": [9, 10, 10.5, 13], "rotation": 270, "texture": "#5"}, + "down": {"uv": [9, 10, 10.5, 13], "rotation": 270, "texture": "#5"} + } + }, + { + "name": "GearCaseInner", + "from": [6, 2.5, 2], + "to": [11, 14.5, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8.5, 8.5, 8]}, + "faces": { + "north": {"uv": [0, 6, 6, 8.5], "rotation": 90, "texture": "#5"}, + "east": {"uv": [0, 0, 6, 6], "rotation": 270, "texture": "#5"}, + "south": {"uv": [0, 6, 6, 8.5], "rotation": 270, "texture": "#5"}, + "west": {"uv": [0, 0, 6, 6], "rotation": 270, "texture": "#5"}, + "up": {"uv": [0, 6, 6, 8.5], "rotation": 270, "texture": "#5"}, + "down": {"uv": [0, 6, 6, 8.5], "rotation": 270, "texture": "#5"} + } + }, + { + "name": "middle", + "from": [4.5, 4.5, 4], + "to": [12.5, 12.5, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8.5, 8.5, 8]}, + "faces": { + "north": {"uv": [11.5, 15.5, 15.5, 11.5], "texture": "#2"}, + "east": {"uv": [11.5, 15.5, 15.5, 11.5], "texture": "#2"}, + "south": {"uv": [11.5, 15.5, 15.5, 11.5], "texture": "#2"}, + "west": {"uv": [11.5, 15.5, 15.5, 11.5], "texture": "#2"}, + "up": {"uv": [11.5, 15.5, 15.5, 11.5], "texture": "#2"}, + "down": {"uv": [11.5, 15.5, 15.5, 11.5], "texture": "#2"} + } + }, + { + "name": "front", + "from": [0.5, 3.5, 3], + "to": [5.5, 13.5, 13], + "rotation": {"angle": 0, "axis": "z", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10.5, 2.5, 13, 7.5], "rotation": 180, "texture": "#2"}, + "east": {"uv": [6, 11, 11, 16], "rotation": 270, "texture": "#2"}, + "south": {"uv": [10.5, 2.5, 13, 7.5], "texture": "#2"}, + "west": {"uv": [11, 11, 16, 16], "rotation": 270, "texture": "#2"}, + "up": {"uv": [10.5, 2.5, 13, 7.5], "texture": "#2"}, + "down": {"uv": [10.5, 2.5, 13, 7.5], "texture": "#2"} + } + }, + { + "name": "back", + "from": [11.5, 2.5, 2], + "to": [16.5, 14.5, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8.5, 11.5, 8]}, + "faces": { + "north": {"uv": [13.5, 2, 16, 8], "texture": "#2"}, + "east": {"uv": [0, 0, 12, 12], "rotation": 270, "texture": "#4"}, + "south": {"uv": [13.5, 2, 16, 8], "rotation": 180, "texture": "#2"}, + "west": {"uv": [0, 0, 12, 12], "rotation": 90, "texture": "#4"}, + "up": {"uv": [13.5, 2, 16, 8], "rotation": 180, "texture": "#2"}, + "down": {"uv": [13.5, 2, 16, 8], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [1.70355, 6.15, 2], + "to": [3.70355, 10.15, 14], + "rotation": {"angle": 45, "axis": "z", "origin": [3.35355, 8.25, 7.75]}, + "faces": { + "north": {"uv": [16, 0, 12, 2], "rotation": 90, "texture": "#4"}, + "east": {"uv": [12, 1, 16, 2], "rotation": 270, "texture": "#4"}, + "south": {"uv": [12, 0, 16, 2], "rotation": 270, "texture": "#4"}, + "west": {"uv": [12, 0, 16, 1], "rotation": 270, "texture": "#4"}, + "up": {"uv": [15, 0, 16, 2], "rotation": 270, "texture": "#4"}, + "down": {"uv": [12, 0, 13, 2], "rotation": 270, "texture": "#4"} + } + }, + { + "from": [3.70355, 8.15, 2], + "to": [5.70355, 10.15, 14], + "rotation": {"angle": 45, "axis": "z", "origin": [3.35355, 8.25, 7.75]}, + "faces": { + "north": {"uv": [16, 2, 14, 4], "rotation": 90, "texture": "#4"}, + "east": {"uv": [14, 3, 16, 4], "rotation": 270, "texture": "#4"}, + "south": {"uv": [14, 2, 16, 4], "rotation": 270, "texture": "#4"}, + "up": {"uv": [15, 2, 16, 4], "rotation": 270, "texture": "#4"}, + "down": {"uv": [14, 2, 15, 4], "rotation": 270, "texture": "#4"} + } + }, + { + "from": [3.85355, 2.5, 7.75], + "to": [5.85355, 14.5, 9.75], + "rotation": {"angle": -45, "axis": "y", "origin": [3.35355, 8.25, 7.75]}, + "faces": { + "north": {"uv": [14, 2, 15, 4], "rotation": 90, "texture": "#4"}, + "east": {"uv": [14, 3, 16, 4], "rotation": 180, "texture": "#4"}, + "south": {"uv": [15, 2, 16, 4], "rotation": 270, "texture": "#4"}, + "up": {"uv": [16, 2, 14, 4], "rotation": 270, "texture": "#4"}, + "down": {"uv": [14, 2, 16, 4], "rotation": 270, "texture": "#4"} + } + }, + { + "from": [1.85355, 2.5, 5.75], + "to": [3.85355, 14.5, 9.75], + "rotation": {"angle": -45, "axis": "y", "origin": [3.35355, 8.25, 7.75]}, + "faces": { + "north": {"uv": [12, 0, 13, 2], "rotation": 90, "texture": "#4"}, + "east": {"uv": [12, 1, 16, 2], "rotation": 180, "texture": "#4"}, + "south": {"uv": [15, 0, 16, 2], "rotation": 270, "texture": "#4"}, + "west": {"uv": [12, 0, 16, 1], "texture": "#4"}, + "up": {"uv": [16, 0, 12, 2], "rotation": 270, "texture": "#4"}, + "down": {"uv": [12, 0, 16, 2], "rotation": 270, "texture": "#4"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "thirdperson_lefthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, 225, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [30, 135, 0], + "scale": [0.625, 0.625, 0.625] + }, + "fixed": { + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + { + "name": "cogwheel", + "origin": [8, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4] + }, + { + "name": "pump", + "origin": [8, 8, 8], + "color": 0, + "children": [5, 6, 7] + }, + { + "name": "Arrow", + "origin": [8, 8, 8], + "color": 0, + "children": [8, 9, 10, 11] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/lang/en_us.json b/kubejs/assets/gtceu/lang/en_us.json index fa5f11b90..1bdc5c9dc 100644 --- a/kubejs/assets/gtceu/lang/en_us.json +++ b/kubejs/assets/gtceu/lang/en_us.json @@ -6,6 +6,7 @@ "block.gtceu.greenhouse": "Greenhouse", "block.gtceu.steam_bloomery": "Steam Bloomery", "block.gtceu.large_solar_panel": "Large Solar Panel", + "block.gtceu.gas_pressurizer": "Gas Pressurizer", "block.gtceu.copper_crate": "Copper Crate", "block.gtceu.copper_drum": "Copper Drum", "block.gtceu.black_bronze_crate": "Black Bronze Crate", @@ -21,6 +22,7 @@ "gtceu.food_oven": "Food Oven", "gtceu.food_processor": "Food Processor", "gtceu.large_solar_panel": "Large Solar Panel", + "gtceu.gas_pressurizer": "Gas Pressurizer", "item.gtceu.tiny_wood_dust": "Tiny Pile of Softwood Pulp", "item.gtceu.small_wood_dust": "Small Pile of Softwood Pulp", "item.gtceu.wood_dust": "Softwood Pulp", diff --git a/kubejs/assets/kaolinclayze/lang/en_us.json b/kubejs/assets/kaolinclayze/lang/en_us.json deleted file mode 100644 index 33324601f..000000000 --- a/kubejs/assets/kaolinclayze/lang/en_us.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", - "entity.kaolinclayze.tfc": "Kaolin Klayze", - "entity.terramod.tfc": "Kaolin Klayze", - "entity.kaolinclayze.golem_2": "Graphite Glayze", - "item.kaolinclayze.tfc_spawn_egg": "Kaolin Klayze Spawn Egg", - "item.kaolinclayze.golem_2_spawn_egg": "Graphite Glayze Spawn Egg", - "item.terramod.tfc_spawn_egg": "Kaolin Klayze Spawn Egg" -} \ No newline at end of file diff --git a/kubejs/assets/kaolinclayze/lang/uk_ua.json b/kubejs/assets/kaolinclayze/lang/uk_ua.json deleted file mode 100644 index 93d549278..000000000 --- a/kubejs/assets/kaolinclayze/lang/uk_ua.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", - "entity.kaolinclayze.tfc": "Каоліновий Клейз", - "entity.terramod.tfc": "Каоліновий Клейз", - "entity.kaolinclayze.golem_2": "Графітовий Глейз", - "item.kaolinclayze.tfc_spawn_egg": "Яйце спавну Каолінового Клейза", - "item.kaolinclayze.golem_2_spawn_egg": "Яйце спавну Графітового Глейза", - "item.terramod.tfc_spawn_egg": "Яйце спавну Каолінового Клейза" -} \ No newline at end of file diff --git a/kubejs/assets/primitive_creatures/lang/en_us.json b/kubejs/assets/primitive_creatures/lang/en_us.json new file mode 100644 index 000000000..a4bde0679 --- /dev/null +++ b/kubejs/assets/primitive_creatures/lang/en_us.json @@ -0,0 +1,23 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "entity.primitive_creatures.tfc": "Kaolin Klayze", + "entity.primitive_creatures.golem_2": "Graphite Glayze", + "entity.primitive_creatures.iloger_4": "Ambusher", + "entity.primitive_creatures.wiloger": "Beast Tamer", + "entity.primitive_creatures.iloger_2": "Herbalist", + "entity.primitive_creatures.iloger_1": "Forager", + "item.primitive_creatures.tfc_spawn_egg": "Kaolin Klayze Spawn Egg", + "item.primitive_creatures.golem_2_spawn_egg": "Graphite Glayze Spawn Egg", + "item.primitive_creatures.iloger_4_spawn_egg": "Ambusher Spawn Egg", + "item.primitive_creatures.wiloger_spawn_egg": "Beast Tamer Spawn Egg", + "item.primitive_creatures.iloger_2_spawn_egg": "Herbalist Spawn Egg", + "item.primitive_creatures.iloger_1_spawn_egg": "Forager Spawn Egg", + "item.primitive_creatures.yhgi": "Flint Club", + "item.primitive_creatures.reh": "Fortified Flint Club", + "item.primitive_creatures.grh": "Battered Wool", + "item.primitive_creatures.totem_0": "Small Clay Idol", + "item.primitive_creatures.totem_2": "Wooden Lion-Man Idol", + "item.primitive_creatures.totem_3": "Hardened Mud Idol", + "item.primitive_creatures.tt_5": "Small Shard", + "item.primitive_creatures.f_1": "Primitive Explosives" +} \ No newline at end of file diff --git a/kubejs/assets/primitive_creatures/lang/uk_ua.json b/kubejs/assets/primitive_creatures/lang/uk_ua.json new file mode 100644 index 000000000..d38dae7b6 --- /dev/null +++ b/kubejs/assets/primitive_creatures/lang/uk_ua.json @@ -0,0 +1,7 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "entity.primitive_creatures.tfc": "Каоліновий Клейз", + "entity.primitive_creatures.golem_2": "Графітовий Глейз", + "item.primitive_creatures.tfc_spawn_egg": "Яйце спавну Каолінового Клейза", + "item.primitive_creatures.golem_2_spawn_egg": "Яйце спавну Графітового Глейза" +} \ No newline at end of file diff --git a/kubejs/assets/tfc/lang/en_us.json b/kubejs/assets/tfc/lang/en_us.json index 733c9f510..04c21efd3 100644 --- a/kubejs/assets/tfc/lang/en_us.json +++ b/kubejs/assets/tfc/lang/en_us.json @@ -1,2660 +1,2661 @@ { - "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", - "block.tfc.fluid.salt_water": "Sea Water", - "block.tfc.cauldron.salt_water": "Sea Water Cauldron", - "block.gtceu.andesite_almandine_ore.prospected": "Almandine", - "block.gtceu.andesite_aluminium_ore.prospected": "Aluminium", - "block.gtceu.andesite_alunite_ore.prospected": "Alunite", - "block.gtceu.andesite_amethyst_ore.prospected": "Amethyst", - "block.gtceu.andesite_apatite_ore.prospected": "Apatite", - "block.gtceu.andesite_asbestos_ore.prospected": "Asbestos", - "block.gtceu.andesite_barite_ore.prospected": "Barite", - "block.gtceu.andesite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.andesite_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.andesite_bauxite_ore.prospected": "Bauxite", - "block.gtceu.andesite_bentonite_ore.prospected": "Bentonite", - "block.gtceu.andesite_beryllium_ore.prospected": "Beryllium", - "block.gtceu.andesite_bismuth_ore.prospected": "Bismuth", - "block.gtceu.andesite_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.andesite_borax_ore.prospected": "Borax", - "block.gtceu.andesite_bornite_ore.prospected": "Bornite", - "block.gtceu.andesite_calcite_ore.prospected": "Calcite", - "block.gtceu.andesite_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.andesite_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.andesite_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.andesite_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.andesite_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.andesite_chromite_ore.prospected": "Chromite", - "block.gtceu.andesite_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.andesite_coal_ore.prospected": "Coal", - "block.gtceu.andesite_cobalt_ore.prospected": "Cobalt", - "block.gtceu.andesite_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.andesite_cooperite_ore.prospected": "Cooperite", - "block.gtceu.andesite_copper_ore.prospected": "Copper", - "block.gtceu.andesite_diamond_ore.prospected": "Diamond", - "block.gtceu.andesite_diatomite_ore.prospected": "Diatomite", - "block.gtceu.andesite_electrotine_ore.prospected": "Electrotine", - "block.gtceu.andesite_emerald_ore.prospected": "Emerald", - "block.gtceu.andesite_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.andesite_galena_ore.prospected": "Galena", - "block.gtceu.andesite_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.andesite_garnierite_ore.prospected": "Garnierite", - "block.gtceu.andesite_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.andesite_goethite_ore.prospected": "Goethite", - "block.gtceu.andesite_gold_ore.prospected": "Gold", - "block.gtceu.andesite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.andesite_graphite_ore.prospected": "Graphite", - "block.gtceu.andesite_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.andesite_grossular_ore.prospected": "Grossular", - "block.gtceu.andesite_gypsum_ore.prospected": "Gypsum", - "block.gtceu.andesite_hematite_ore.prospected": "Hematite", - "block.gtceu.andesite_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.andesite_iron_ore.prospected": "Iron", - "block.gtceu.andesite_kyanite_ore.prospected": "Kyanite", - "block.gtceu.andesite_lapis_ore.prospected": "Lapis", - "block.gtceu.andesite_lazurite_ore.prospected": "Lazurite", - "block.gtceu.andesite_lead_ore.prospected": "Lead", - "block.gtceu.andesite_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.andesite_lithium_ore.prospected": "Lithium", - "block.gtceu.andesite_magnesite_ore.prospected": "Magnesite", - "block.gtceu.andesite_magnetite_ore.prospected": "Magnetite", - "block.gtceu.andesite_malachite_ore.prospected": "Malachite", - "block.gtceu.andesite_mica_ore.prospected": "Mica", - "block.gtceu.andesite_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.andesite_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.andesite_monazite_ore.prospected": "Monazite", - "block.gtceu.andesite_naquadah_ore.prospected": "Naquadah", - "block.gtceu.andesite_neodymium_ore.prospected": "Neodymium", - "block.gtceu.andesite_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.andesite_nickel_ore.prospected": "Nickel", - "block.gtceu.andesite_oilsands_ore.prospected": "Oilsands", - "block.gtceu.andesite_olivine_ore.prospected": "Olivine", - "block.gtceu.andesite_opal_ore.prospected": "Opal", - "block.gtceu.andesite_palladium_ore.prospected": "Palladium", - "block.gtceu.andesite_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.andesite_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.andesite_platinum_ore.prospected": "Platinum", - "block.gtceu.andesite_plutonium_ore.prospected": "Plutonium", - "block.gtceu.andesite_pollucite_ore.prospected": "Pollucite", - "block.gtceu.andesite_powellite_ore.prospected": "Powellite", - "block.gtceu.andesite_pyrite_ore.prospected": "Pyrite", - "block.gtceu.andesite_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.andesite_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.andesite_pyrope_ore.prospected": "Pyrope", - "block.gtceu.andesite_quartzite_ore.prospected": "Quartzite", - "block.gtceu.andesite_realgar_ore.prospected": "Realgar", - "block.gtceu.andesite_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.andesite_redstone_ore.prospected": "Redstone", - "block.gtceu.andesite_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.andesite_ruby_ore.prospected": "Ruby", - "block.gtceu.andesite_salt_ore.prospected": "Salt", - "block.gtceu.andesite_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.andesite_sapphire_ore.prospected": "Sapphire", - "block.gtceu.andesite_scheelite_ore.prospected": "Scheelite", - "block.gtceu.andesite_silver_ore.prospected": "Silver", - "block.gtceu.andesite_soapstone_ore.prospected": "Soapstone", - "block.gtceu.andesite_sodalite_ore.prospected": "Sodalite", - "block.gtceu.andesite_spessartine_ore.prospected": "Spessartine", - "block.gtceu.andesite_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.andesite_spodumene_ore.prospected": "Spodumene", - "block.gtceu.andesite_stibnite_ore.prospected": "Stibnite", - "block.gtceu.andesite_sulfur_ore.prospected": "Sulfur", - "block.gtceu.andesite_sylvite_ore.prospected": "Sylvite", - "block.gtceu.andesite_talc_ore.prospected": "Talc", - "block.gtceu.andesite_tantalite_ore.prospected": "Tantalite", - "block.gtceu.andesite_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.andesite_thorium_ore.prospected": "Thorium", - "block.gtceu.andesite_tin_ore.prospected": "Tin", - "block.gtceu.andesite_topaz_ore.prospected": "Topaz", - "block.gtceu.andesite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.andesite_trona_ore.prospected": "Trona", - "block.gtceu.andesite_tungstate_ore.prospected": "Tungstate", - "block.gtceu.andesite_uraninite_ore.prospected": "Uraninite", - "block.gtceu.andesite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.andesite_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.andesite_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.andesite_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.andesite_zeolite_ore.prospected": "Zeolite", - "block.gtceu.basalt_almandine_ore.prospected": "Almandine", - "block.gtceu.basalt_aluminium_ore.prospected": "Aluminium", - "block.gtceu.basalt_alunite_ore.prospected": "Alunite", - "block.gtceu.basalt_amethyst_ore.prospected": "Amethyst", - "block.gtceu.basalt_apatite_ore.prospected": "Apatite", - "block.gtceu.basalt_asbestos_ore.prospected": "Asbestos", - "block.gtceu.basalt_barite_ore.prospected": "Barite", - "block.gtceu.basalt_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.basalt_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.basalt_bauxite_ore.prospected": "Bauxite", - "block.gtceu.basalt_bentonite_ore.prospected": "Bentonite", - "block.gtceu.basalt_beryllium_ore.prospected": "Beryllium", - "block.gtceu.basalt_bismuth_ore.prospected": "Bismuth", - "block.gtceu.basalt_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.basalt_borax_ore.prospected": "Borax", - "block.gtceu.basalt_bornite_ore.prospected": "Bornite", - "block.gtceu.basalt_calcite_ore.prospected": "Calcite", - "block.gtceu.basalt_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.basalt_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.basalt_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.basalt_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.basalt_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.basalt_chromite_ore.prospected": "Chromite", - "block.gtceu.basalt_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.basalt_coal_ore.prospected": "Coal", - "block.gtceu.basalt_cobalt_ore.prospected": "Cobalt", - "block.gtceu.basalt_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.basalt_cooperite_ore.prospected": "Cooperite", - "block.gtceu.basalt_copper_ore.prospected": "Copper", - "block.gtceu.basalt_diamond_ore.prospected": "Diamond", - "block.gtceu.basalt_diatomite_ore.prospected": "Diatomite", - "block.gtceu.basalt_electrotine_ore.prospected": "Electrotine", - "block.gtceu.basalt_emerald_ore.prospected": "Emerald", - "block.gtceu.basalt_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.basalt_galena_ore.prospected": "Galena", - "block.gtceu.basalt_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.basalt_garnierite_ore.prospected": "Garnierite", - "block.gtceu.basalt_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.basalt_goethite_ore.prospected": "Goethite", - "block.gtceu.basalt_gold_ore.prospected": "Gold", - "block.gtceu.basalt_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.basalt_graphite_ore.prospected": "Graphite", - "block.gtceu.basalt_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.basalt_grossular_ore.prospected": "Grossular", - "block.gtceu.basalt_gypsum_ore.prospected": "Gypsum", - "block.gtceu.basalt_hematite_ore.prospected": "Hematite", - "block.gtceu.basalt_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.basalt_iron_ore.prospected": "Iron", - "block.gtceu.basalt_kyanite_ore.prospected": "Kyanite", - "block.gtceu.basalt_lapis_ore.prospected": "Lapis", - "block.gtceu.basalt_lazurite_ore.prospected": "Lazurite", - "block.gtceu.basalt_lead_ore.prospected": "Lead", - "block.gtceu.basalt_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.basalt_lithium_ore.prospected": "Lithium", - "block.gtceu.basalt_magnesite_ore.prospected": "Magnesite", - "block.gtceu.basalt_magnetite_ore.prospected": "Magnetite", - "block.gtceu.basalt_malachite_ore.prospected": "Malachite", - "block.gtceu.basalt_mica_ore.prospected": "Mica", - "block.gtceu.basalt_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.basalt_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.basalt_monazite_ore.prospected": "Monazite", - "block.gtceu.basalt_naquadah_ore.prospected": "Naquadah", - "block.gtceu.basalt_neodymium_ore.prospected": "Neodymium", - "block.gtceu.basalt_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.basalt_nickel_ore.prospected": "Nickel", - "block.gtceu.basalt_oilsands_ore.prospected": "Oilsands", - "block.gtceu.basalt_olivine_ore.prospected": "Olivine", - "block.gtceu.basalt_opal_ore.prospected": "Opal", - "block.gtceu.basalt_palladium_ore.prospected": "Palladium", - "block.gtceu.basalt_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.basalt_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.basalt_platinum_ore.prospected": "Platinum", - "block.gtceu.basalt_plutonium_ore.prospected": "Plutonium", - "block.gtceu.basalt_pollucite_ore.prospected": "Pollucite", - "block.gtceu.basalt_powellite_ore.prospected": "Powellite", - "block.gtceu.basalt_pyrite_ore.prospected": "Pyrite", - "block.gtceu.basalt_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.basalt_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.basalt_pyrope_ore.prospected": "Pyrope", - "block.gtceu.basalt_quartzite_ore.prospected": "Quartzite", - "block.gtceu.basalt_realgar_ore.prospected": "Realgar", - "block.gtceu.basalt_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.basalt_redstone_ore.prospected": "Redstone", - "block.gtceu.basalt_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.basalt_ruby_ore.prospected": "Ruby", - "block.gtceu.basalt_salt_ore.prospected": "Salt", - "block.gtceu.basalt_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.basalt_sapphire_ore.prospected": "Sapphire", - "block.gtceu.basalt_scheelite_ore.prospected": "Scheelite", - "block.gtceu.basalt_silver_ore.prospected": "Silver", - "block.gtceu.basalt_soapstone_ore.prospected": "Soapstone", - "block.gtceu.basalt_sodalite_ore.prospected": "Sodalite", - "block.gtceu.basalt_spessartine_ore.prospected": "Spessartine", - "block.gtceu.basalt_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.basalt_spodumene_ore.prospected": "Spodumene", - "block.gtceu.basalt_stibnite_ore.prospected": "Stibnite", - "block.gtceu.basalt_sulfur_ore.prospected": "Sulfur", - "block.gtceu.basalt_sylvite_ore.prospected": "Sylvite", - "block.gtceu.basalt_talc_ore.prospected": "Talc", - "block.gtceu.basalt_tantalite_ore.prospected": "Tantalite", - "block.gtceu.basalt_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.basalt_thorium_ore.prospected": "Thorium", - "block.gtceu.basalt_tin_ore.prospected": "Tin", - "block.gtceu.basalt_topaz_ore.prospected": "Topaz", - "block.gtceu.basalt_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.basalt_trona_ore.prospected": "Trona", - "block.gtceu.basalt_tungstate_ore.prospected": "Tungstate", - "block.gtceu.basalt_uraninite_ore.prospected": "Uraninite", - "block.gtceu.basalt_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.basalt_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.basalt_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.basalt_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.basalt_zeolite_ore.prospected": "Zeolite", - "block.gtceu.chalk_almandine_ore.prospected": "Almandine", - "block.gtceu.chalk_aluminium_ore.prospected": "Aluminium", - "block.gtceu.chalk_alunite_ore.prospected": "Alunite", - "block.gtceu.chalk_amethyst_ore.prospected": "Amethyst", - "block.gtceu.chalk_apatite_ore.prospected": "Apatite", - "block.gtceu.chalk_asbestos_ore.prospected": "Asbestos", - "block.gtceu.chalk_barite_ore.prospected": "Barite", - "block.gtceu.chalk_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.chalk_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.chalk_bauxite_ore.prospected": "Bauxite", - "block.gtceu.chalk_bentonite_ore.prospected": "Bentonite", - "block.gtceu.chalk_beryllium_ore.prospected": "Beryllium", - "block.gtceu.chalk_bismuth_ore.prospected": "Bismuth", - "block.gtceu.chalk_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.chalk_borax_ore.prospected": "Borax", - "block.gtceu.chalk_bornite_ore.prospected": "Bornite", - "block.gtceu.chalk_calcite_ore.prospected": "Calcite", - "block.gtceu.chalk_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.chalk_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.chalk_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.chalk_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.chalk_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.chalk_chromite_ore.prospected": "Chromite", - "block.gtceu.chalk_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.chalk_coal_ore.prospected": "Coal", - "block.gtceu.chalk_cobalt_ore.prospected": "Cobalt", - "block.gtceu.chalk_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.chalk_cooperite_ore.prospected": "Cooperite", - "block.gtceu.chalk_copper_ore.prospected": "Copper", - "block.gtceu.chalk_diamond_ore.prospected": "Diamond", - "block.gtceu.chalk_diatomite_ore.prospected": "Diatomite", - "block.gtceu.chalk_electrotine_ore.prospected": "Electrotine", - "block.gtceu.chalk_emerald_ore.prospected": "Emerald", - "block.gtceu.chalk_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.chalk_galena_ore.prospected": "Galena", - "block.gtceu.chalk_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.chalk_garnierite_ore.prospected": "Garnierite", - "block.gtceu.chalk_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.chalk_goethite_ore.prospected": "Goethite", - "block.gtceu.chalk_gold_ore.prospected": "Gold", - "block.gtceu.chalk_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.chalk_graphite_ore.prospected": "Graphite", - "block.gtceu.chalk_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.chalk_grossular_ore.prospected": "Grossular", - "block.gtceu.chalk_gypsum_ore.prospected": "Gypsum", - "block.gtceu.chalk_hematite_ore.prospected": "Hematite", - "block.gtceu.chalk_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.chalk_iron_ore.prospected": "Iron", - "block.gtceu.chalk_kyanite_ore.prospected": "Kyanite", - "block.gtceu.chalk_lapis_ore.prospected": "Lapis", - "block.gtceu.chalk_lazurite_ore.prospected": "Lazurite", - "block.gtceu.chalk_lead_ore.prospected": "Lead", - "block.gtceu.chalk_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.chalk_lithium_ore.prospected": "Lithium", - "block.gtceu.chalk_magnesite_ore.prospected": "Magnesite", - "block.gtceu.chalk_magnetite_ore.prospected": "Magnetite", - "block.gtceu.chalk_malachite_ore.prospected": "Malachite", - "block.gtceu.chalk_mica_ore.prospected": "Mica", - "block.gtceu.chalk_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.chalk_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.chalk_monazite_ore.prospected": "Monazite", - "block.gtceu.chalk_naquadah_ore.prospected": "Naquadah", - "block.gtceu.chalk_neodymium_ore.prospected": "Neodymium", - "block.gtceu.chalk_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.chalk_nickel_ore.prospected": "Nickel", - "block.gtceu.chalk_oilsands_ore.prospected": "Oilsands", - "block.gtceu.chalk_olivine_ore.prospected": "Olivine", - "block.gtceu.chalk_opal_ore.prospected": "Opal", - "block.gtceu.chalk_palladium_ore.prospected": "Palladium", - "block.gtceu.chalk_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.chalk_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.chalk_platinum_ore.prospected": "Platinum", - "block.gtceu.chalk_plutonium_ore.prospected": "Plutonium", - "block.gtceu.chalk_pollucite_ore.prospected": "Pollucite", - "block.gtceu.chalk_powellite_ore.prospected": "Powellite", - "block.gtceu.chalk_pyrite_ore.prospected": "Pyrite", - "block.gtceu.chalk_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.chalk_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.chalk_pyrope_ore.prospected": "Pyrope", - "block.gtceu.chalk_quartzite_ore.prospected": "Quartzite", - "block.gtceu.chalk_realgar_ore.prospected": "Realgar", - "block.gtceu.chalk_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.chalk_redstone_ore.prospected": "Redstone", - "block.gtceu.chalk_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.chalk_ruby_ore.prospected": "Ruby", - "block.gtceu.chalk_salt_ore.prospected": "Salt", - "block.gtceu.chalk_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.chalk_sapphire_ore.prospected": "Sapphire", - "block.gtceu.chalk_scheelite_ore.prospected": "Scheelite", - "block.gtceu.chalk_silver_ore.prospected": "Silver", - "block.gtceu.chalk_soapstone_ore.prospected": "Soapstone", - "block.gtceu.chalk_sodalite_ore.prospected": "Sodalite", - "block.gtceu.chalk_spessartine_ore.prospected": "Spessartine", - "block.gtceu.chalk_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.chalk_spodumene_ore.prospected": "Spodumene", - "block.gtceu.chalk_stibnite_ore.prospected": "Stibnite", - "block.gtceu.chalk_sulfur_ore.prospected": "Sulfur", - "block.gtceu.chalk_sylvite_ore.prospected": "Sylvite", - "block.gtceu.chalk_talc_ore.prospected": "Talc", - "block.gtceu.chalk_tantalite_ore.prospected": "Tantalite", - "block.gtceu.chalk_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.chalk_thorium_ore.prospected": "Thorium", - "block.gtceu.chalk_tin_ore.prospected": "Tin", - "block.gtceu.chalk_topaz_ore.prospected": "Topaz", - "block.gtceu.chalk_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.chalk_trona_ore.prospected": "Trona", - "block.gtceu.chalk_tungstate_ore.prospected": "Tungstate", - "block.gtceu.chalk_uraninite_ore.prospected": "Uraninite", - "block.gtceu.chalk_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.chalk_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.chalk_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.chalk_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.chalk_zeolite_ore.prospected": "Zeolite", - "block.gtceu.chert_almandine_ore.prospected": "Almandine", - "block.gtceu.chert_aluminium_ore.prospected": "Aluminium", - "block.gtceu.chert_alunite_ore.prospected": "Alunite", - "block.gtceu.chert_amethyst_ore.prospected": "Amethyst", - "block.gtceu.chert_apatite_ore.prospected": "Apatite", - "block.gtceu.chert_asbestos_ore.prospected": "Asbestos", - "block.gtceu.chert_barite_ore.prospected": "Barite", - "block.gtceu.chert_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.chert_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.chert_bauxite_ore.prospected": "Bauxite", - "block.gtceu.chert_bentonite_ore.prospected": "Bentonite", - "block.gtceu.chert_beryllium_ore.prospected": "Beryllium", - "block.gtceu.chert_bismuth_ore.prospected": "Bismuth", - "block.gtceu.chert_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.chert_borax_ore.prospected": "Borax", - "block.gtceu.chert_bornite_ore.prospected": "Bornite", - "block.gtceu.chert_calcite_ore.prospected": "Calcite", - "block.gtceu.chert_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.chert_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.chert_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.chert_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.chert_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.chert_chromite_ore.prospected": "Chromite", - "block.gtceu.chert_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.chert_coal_ore.prospected": "Coal", - "block.gtceu.chert_cobalt_ore.prospected": "Cobalt", - "block.gtceu.chert_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.chert_cooperite_ore.prospected": "Cooperite", - "block.gtceu.chert_copper_ore.prospected": "Copper", - "block.gtceu.chert_diamond_ore.prospected": "Diamond", - "block.gtceu.chert_diatomite_ore.prospected": "Diatomite", - "block.gtceu.chert_electrotine_ore.prospected": "Electrotine", - "block.gtceu.chert_emerald_ore.prospected": "Emerald", - "block.gtceu.chert_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.chert_galena_ore.prospected": "Galena", - "block.gtceu.chert_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.chert_garnierite_ore.prospected": "Garnierite", - "block.gtceu.chert_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.chert_goethite_ore.prospected": "Goethite", - "block.gtceu.chert_gold_ore.prospected": "Gold", - "block.gtceu.chert_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.chert_graphite_ore.prospected": "Graphite", - "block.gtceu.chert_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.chert_grossular_ore.prospected": "Grossular", - "block.gtceu.chert_gypsum_ore.prospected": "Gypsum", - "block.gtceu.chert_hematite_ore.prospected": "Hematite", - "block.gtceu.chert_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.chert_iron_ore.prospected": "Iron", - "block.gtceu.chert_kyanite_ore.prospected": "Kyanite", - "block.gtceu.chert_lapis_ore.prospected": "Lapis", - "block.gtceu.chert_lazurite_ore.prospected": "Lazurite", - "block.gtceu.chert_lead_ore.prospected": "Lead", - "block.gtceu.chert_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.chert_lithium_ore.prospected": "Lithium", - "block.gtceu.chert_magnesite_ore.prospected": "Magnesite", - "block.gtceu.chert_magnetite_ore.prospected": "Magnetite", - "block.gtceu.chert_malachite_ore.prospected": "Malachite", - "block.gtceu.chert_mica_ore.prospected": "Mica", - "block.gtceu.chert_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.chert_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.chert_monazite_ore.prospected": "Monazite", - "block.gtceu.chert_naquadah_ore.prospected": "Naquadah", - "block.gtceu.chert_neodymium_ore.prospected": "Neodymium", - "block.gtceu.chert_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.chert_nickel_ore.prospected": "Nickel", - "block.gtceu.chert_oilsands_ore.prospected": "Oilsands", - "block.gtceu.chert_olivine_ore.prospected": "Olivine", - "block.gtceu.chert_opal_ore.prospected": "Opal", - "block.gtceu.chert_palladium_ore.prospected": "Palladium", - "block.gtceu.chert_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.chert_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.chert_platinum_ore.prospected": "Platinum", - "block.gtceu.chert_plutonium_ore.prospected": "Plutonium", - "block.gtceu.chert_pollucite_ore.prospected": "Pollucite", - "block.gtceu.chert_powellite_ore.prospected": "Powellite", - "block.gtceu.chert_pyrite_ore.prospected": "Pyrite", - "block.gtceu.chert_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.chert_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.chert_pyrope_ore.prospected": "Pyrope", - "block.gtceu.chert_quartzite_ore.prospected": "Quartzite", - "block.gtceu.chert_realgar_ore.prospected": "Realgar", - "block.gtceu.chert_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.chert_redstone_ore.prospected": "Redstone", - "block.gtceu.chert_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.chert_ruby_ore.prospected": "Ruby", - "block.gtceu.chert_salt_ore.prospected": "Salt", - "block.gtceu.chert_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.chert_sapphire_ore.prospected": "Sapphire", - "block.gtceu.chert_scheelite_ore.prospected": "Scheelite", - "block.gtceu.chert_silver_ore.prospected": "Silver", - "block.gtceu.chert_soapstone_ore.prospected": "Soapstone", - "block.gtceu.chert_sodalite_ore.prospected": "Sodalite", - "block.gtceu.chert_spessartine_ore.prospected": "Spessartine", - "block.gtceu.chert_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.chert_spodumene_ore.prospected": "Spodumene", - "block.gtceu.chert_stibnite_ore.prospected": "Stibnite", - "block.gtceu.chert_sulfur_ore.prospected": "Sulfur", - "block.gtceu.chert_sylvite_ore.prospected": "Sylvite", - "block.gtceu.chert_talc_ore.prospected": "Talc", - "block.gtceu.chert_tantalite_ore.prospected": "Tantalite", - "block.gtceu.chert_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.chert_thorium_ore.prospected": "Thorium", - "block.gtceu.chert_tin_ore.prospected": "Tin", - "block.gtceu.chert_topaz_ore.prospected": "Topaz", - "block.gtceu.chert_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.chert_trona_ore.prospected": "Trona", - "block.gtceu.chert_tungstate_ore.prospected": "Tungstate", - "block.gtceu.chert_uraninite_ore.prospected": "Uraninite", - "block.gtceu.chert_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.chert_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.chert_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.chert_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.chert_zeolite_ore.prospected": "Zeolite", - "block.gtceu.claystone_almandine_ore.prospected": "Almandine", - "block.gtceu.claystone_aluminium_ore.prospected": "Aluminium", - "block.gtceu.claystone_alunite_ore.prospected": "Alunite", - "block.gtceu.claystone_amethyst_ore.prospected": "Amethyst", - "block.gtceu.claystone_apatite_ore.prospected": "Apatite", - "block.gtceu.claystone_asbestos_ore.prospected": "Asbestos", - "block.gtceu.claystone_barite_ore.prospected": "Barite", - "block.gtceu.claystone_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.claystone_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.claystone_bauxite_ore.prospected": "Bauxite", - "block.gtceu.claystone_bentonite_ore.prospected": "Bentonite", - "block.gtceu.claystone_beryllium_ore.prospected": "Beryllium", - "block.gtceu.claystone_bismuth_ore.prospected": "Bismuth", - "block.gtceu.claystone_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.claystone_borax_ore.prospected": "Borax", - "block.gtceu.claystone_bornite_ore.prospected": "Bornite", - "block.gtceu.claystone_calcite_ore.prospected": "Calcite", - "block.gtceu.claystone_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.claystone_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.claystone_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.claystone_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.claystone_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.claystone_chromite_ore.prospected": "Chromite", - "block.gtceu.claystone_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.claystone_coal_ore.prospected": "Coal", - "block.gtceu.claystone_cobalt_ore.prospected": "Cobalt", - "block.gtceu.claystone_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.claystone_cooperite_ore.prospected": "Cooperite", - "block.gtceu.claystone_copper_ore.prospected": "Copper", - "block.gtceu.claystone_diamond_ore.prospected": "Diamond", - "block.gtceu.claystone_diatomite_ore.prospected": "Diatomite", - "block.gtceu.claystone_electrotine_ore.prospected": "Electrotine", - "block.gtceu.claystone_emerald_ore.prospected": "Emerald", - "block.gtceu.claystone_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.claystone_galena_ore.prospected": "Galena", - "block.gtceu.claystone_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.claystone_garnierite_ore.prospected": "Garnierite", - "block.gtceu.claystone_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.claystone_goethite_ore.prospected": "Goethite", - "block.gtceu.claystone_gold_ore.prospected": "Gold", - "block.gtceu.claystone_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.claystone_graphite_ore.prospected": "Graphite", - "block.gtceu.claystone_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.claystone_grossular_ore.prospected": "Grossular", - "block.gtceu.claystone_gypsum_ore.prospected": "Gypsum", - "block.gtceu.claystone_hematite_ore.prospected": "Hematite", - "block.gtceu.claystone_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.claystone_iron_ore.prospected": "Iron", - "block.gtceu.claystone_kyanite_ore.prospected": "Kyanite", - "block.gtceu.claystone_lapis_ore.prospected": "Lapis", - "block.gtceu.claystone_lazurite_ore.prospected": "Lazurite", - "block.gtceu.claystone_lead_ore.prospected": "Lead", - "block.gtceu.claystone_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.claystone_lithium_ore.prospected": "Lithium", - "block.gtceu.claystone_magnesite_ore.prospected": "Magnesite", - "block.gtceu.claystone_magnetite_ore.prospected": "Magnetite", - "block.gtceu.claystone_malachite_ore.prospected": "Malachite", - "block.gtceu.claystone_mica_ore.prospected": "Mica", - "block.gtceu.claystone_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.claystone_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.claystone_monazite_ore.prospected": "Monazite", - "block.gtceu.claystone_naquadah_ore.prospected": "Naquadah", - "block.gtceu.claystone_neodymium_ore.prospected": "Neodymium", - "block.gtceu.claystone_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.claystone_nickel_ore.prospected": "Nickel", - "block.gtceu.claystone_oilsands_ore.prospected": "Oilsands", - "block.gtceu.claystone_olivine_ore.prospected": "Olivine", - "block.gtceu.claystone_opal_ore.prospected": "Opal", - "block.gtceu.claystone_palladium_ore.prospected": "Palladium", - "block.gtceu.claystone_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.claystone_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.claystone_platinum_ore.prospected": "Platinum", - "block.gtceu.claystone_plutonium_ore.prospected": "Plutonium", - "block.gtceu.claystone_pollucite_ore.prospected": "Pollucite", - "block.gtceu.claystone_powellite_ore.prospected": "Powellite", - "block.gtceu.claystone_pyrite_ore.prospected": "Pyrite", - "block.gtceu.claystone_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.claystone_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.claystone_pyrope_ore.prospected": "Pyrope", - "block.gtceu.claystone_quartzite_ore.prospected": "Quartzite", - "block.gtceu.claystone_realgar_ore.prospected": "Realgar", - "block.gtceu.claystone_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.claystone_redstone_ore.prospected": "Redstone", - "block.gtceu.claystone_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.claystone_ruby_ore.prospected": "Ruby", - "block.gtceu.claystone_salt_ore.prospected": "Salt", - "block.gtceu.claystone_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.claystone_sapphire_ore.prospected": "Sapphire", - "block.gtceu.claystone_scheelite_ore.prospected": "Scheelite", - "block.gtceu.claystone_silver_ore.prospected": "Silver", - "block.gtceu.claystone_soapstone_ore.prospected": "Soapstone", - "block.gtceu.claystone_sodalite_ore.prospected": "Sodalite", - "block.gtceu.claystone_spessartine_ore.prospected": "Spessartine", - "block.gtceu.claystone_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.claystone_spodumene_ore.prospected": "Spodumene", - "block.gtceu.claystone_stibnite_ore.prospected": "Stibnite", - "block.gtceu.claystone_sulfur_ore.prospected": "Sulfur", - "block.gtceu.claystone_sylvite_ore.prospected": "Sylvite", - "block.gtceu.claystone_talc_ore.prospected": "Talc", - "block.gtceu.claystone_tantalite_ore.prospected": "Tantalite", - "block.gtceu.claystone_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.claystone_thorium_ore.prospected": "Thorium", - "block.gtceu.claystone_tin_ore.prospected": "Tin", - "block.gtceu.claystone_topaz_ore.prospected": "Topaz", - "block.gtceu.claystone_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.claystone_trona_ore.prospected": "Trona", - "block.gtceu.claystone_tungstate_ore.prospected": "Tungstate", - "block.gtceu.claystone_uraninite_ore.prospected": "Uraninite", - "block.gtceu.claystone_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.claystone_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.claystone_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.claystone_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.claystone_zeolite_ore.prospected": "Zeolite", - "block.gtceu.conglomerate_almandine_ore.prospected": "Almandine", - "block.gtceu.conglomerate_aluminium_ore.prospected": "Aluminium", - "block.gtceu.conglomerate_alunite_ore.prospected": "Alunite", - "block.gtceu.conglomerate_amethyst_ore.prospected": "Amethyst", - "block.gtceu.conglomerate_apatite_ore.prospected": "Apatite", - "block.gtceu.conglomerate_asbestos_ore.prospected": "Asbestos", - "block.gtceu.conglomerate_barite_ore.prospected": "Barite", - "block.gtceu.conglomerate_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.conglomerate_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.conglomerate_bauxite_ore.prospected": "Bauxite", - "block.gtceu.conglomerate_bentonite_ore.prospected": "Bentonite", - "block.gtceu.conglomerate_beryllium_ore.prospected": "Beryllium", - "block.gtceu.conglomerate_bismuth_ore.prospected": "Bismuth", - "block.gtceu.conglomerate_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.conglomerate_borax_ore.prospected": "Borax", - "block.gtceu.conglomerate_bornite_ore.prospected": "Bornite", - "block.gtceu.conglomerate_calcite_ore.prospected": "Calcite", - "block.gtceu.conglomerate_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.conglomerate_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.conglomerate_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.conglomerate_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.conglomerate_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.conglomerate_chromite_ore.prospected": "Chromite", - "block.gtceu.conglomerate_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.conglomerate_coal_ore.prospected": "Coal", - "block.gtceu.conglomerate_cobalt_ore.prospected": "Cobalt", - "block.gtceu.conglomerate_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.conglomerate_cooperite_ore.prospected": "Cooperite", - "block.gtceu.conglomerate_copper_ore.prospected": "Copper", - "block.gtceu.conglomerate_diamond_ore.prospected": "Diamond", - "block.gtceu.conglomerate_diatomite_ore.prospected": "Diatomite", - "block.gtceu.conglomerate_electrotine_ore.prospected": "Electrotine", - "block.gtceu.conglomerate_emerald_ore.prospected": "Emerald", - "block.gtceu.conglomerate_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.conglomerate_galena_ore.prospected": "Galena", - "block.gtceu.conglomerate_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.conglomerate_garnierite_ore.prospected": "Garnierite", - "block.gtceu.conglomerate_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.conglomerate_goethite_ore.prospected": "Goethite", - "block.gtceu.conglomerate_gold_ore.prospected": "Gold", - "block.gtceu.conglomerate_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.conglomerate_graphite_ore.prospected": "Graphite", - "block.gtceu.conglomerate_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.conglomerate_grossular_ore.prospected": "Grossular", - "block.gtceu.conglomerate_gypsum_ore.prospected": "Gypsum", - "block.gtceu.conglomerate_hematite_ore.prospected": "Hematite", - "block.gtceu.conglomerate_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.conglomerate_iron_ore.prospected": "Iron", - "block.gtceu.conglomerate_kyanite_ore.prospected": "Kyanite", - "block.gtceu.conglomerate_lapis_ore.prospected": "Lapis", - "block.gtceu.conglomerate_lazurite_ore.prospected": "Lazurite", - "block.gtceu.conglomerate_lead_ore.prospected": "Lead", - "block.gtceu.conglomerate_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.conglomerate_lithium_ore.prospected": "Lithium", - "block.gtceu.conglomerate_magnesite_ore.prospected": "Magnesite", - "block.gtceu.conglomerate_magnetite_ore.prospected": "Magnetite", - "block.gtceu.conglomerate_malachite_ore.prospected": "Malachite", - "block.gtceu.conglomerate_mica_ore.prospected": "Mica", - "block.gtceu.conglomerate_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.conglomerate_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.conglomerate_monazite_ore.prospected": "Monazite", - "block.gtceu.conglomerate_naquadah_ore.prospected": "Naquadah", - "block.gtceu.conglomerate_neodymium_ore.prospected": "Neodymium", - "block.gtceu.conglomerate_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.conglomerate_nickel_ore.prospected": "Nickel", - "block.gtceu.conglomerate_oilsands_ore.prospected": "Oilsands", - "block.gtceu.conglomerate_olivine_ore.prospected": "Olivine", - "block.gtceu.conglomerate_opal_ore.prospected": "Opal", - "block.gtceu.conglomerate_palladium_ore.prospected": "Palladium", - "block.gtceu.conglomerate_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.conglomerate_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.conglomerate_platinum_ore.prospected": "Platinum", - "block.gtceu.conglomerate_plutonium_ore.prospected": "Plutonium", - "block.gtceu.conglomerate_pollucite_ore.prospected": "Pollucite", - "block.gtceu.conglomerate_powellite_ore.prospected": "Powellite", - "block.gtceu.conglomerate_pyrite_ore.prospected": "Pyrite", - "block.gtceu.conglomerate_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.conglomerate_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.conglomerate_pyrope_ore.prospected": "Pyrope", - "block.gtceu.conglomerate_quartzite_ore.prospected": "Quartzite", - "block.gtceu.conglomerate_realgar_ore.prospected": "Realgar", - "block.gtceu.conglomerate_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.conglomerate_redstone_ore.prospected": "Redstone", - "block.gtceu.conglomerate_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.conglomerate_ruby_ore.prospected": "Ruby", - "block.gtceu.conglomerate_salt_ore.prospected": "Salt", - "block.gtceu.conglomerate_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.conglomerate_sapphire_ore.prospected": "Sapphire", - "block.gtceu.conglomerate_scheelite_ore.prospected": "Scheelite", - "block.gtceu.conglomerate_silver_ore.prospected": "Silver", - "block.gtceu.conglomerate_soapstone_ore.prospected": "Soapstone", - "block.gtceu.conglomerate_sodalite_ore.prospected": "Sodalite", - "block.gtceu.conglomerate_spessartine_ore.prospected": "Spessartine", - "block.gtceu.conglomerate_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.conglomerate_spodumene_ore.prospected": "Spodumene", - "block.gtceu.conglomerate_stibnite_ore.prospected": "Stibnite", - "block.gtceu.conglomerate_sulfur_ore.prospected": "Sulfur", - "block.gtceu.conglomerate_sylvite_ore.prospected": "Sylvite", - "block.gtceu.conglomerate_talc_ore.prospected": "Talc", - "block.gtceu.conglomerate_tantalite_ore.prospected": "Tantalite", - "block.gtceu.conglomerate_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.conglomerate_thorium_ore.prospected": "Thorium", - "block.gtceu.conglomerate_tin_ore.prospected": "Tin", - "block.gtceu.conglomerate_topaz_ore.prospected": "Topaz", - "block.gtceu.conglomerate_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.conglomerate_trona_ore.prospected": "Trona", - "block.gtceu.conglomerate_tungstate_ore.prospected": "Tungstate", - "block.gtceu.conglomerate_uraninite_ore.prospected": "Uraninite", - "block.gtceu.conglomerate_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.conglomerate_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.conglomerate_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.conglomerate_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.conglomerate_zeolite_ore.prospected": "Zeolite", - "block.gtceu.dacite_almandine_ore.prospected": "Almandine", - "block.gtceu.dacite_aluminium_ore.prospected": "Aluminium", - "block.gtceu.dacite_alunite_ore.prospected": "Alunite", - "block.gtceu.dacite_amethyst_ore.prospected": "Amethyst", - "block.gtceu.dacite_apatite_ore.prospected": "Apatite", - "block.gtceu.dacite_asbestos_ore.prospected": "Asbestos", - "block.gtceu.dacite_barite_ore.prospected": "Barite", - "block.gtceu.dacite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.dacite_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.dacite_bauxite_ore.prospected": "Bauxite", - "block.gtceu.dacite_bentonite_ore.prospected": "Bentonite", - "block.gtceu.dacite_beryllium_ore.prospected": "Beryllium", - "block.gtceu.dacite_bismuth_ore.prospected": "Bismuth", - "block.gtceu.dacite_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.dacite_borax_ore.prospected": "Borax", - "block.gtceu.dacite_bornite_ore.prospected": "Bornite", - "block.gtceu.dacite_calcite_ore.prospected": "Calcite", - "block.gtceu.dacite_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.dacite_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.dacite_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.dacite_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.dacite_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.dacite_chromite_ore.prospected": "Chromite", - "block.gtceu.dacite_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.dacite_coal_ore.prospected": "Coal", - "block.gtceu.dacite_cobalt_ore.prospected": "Cobalt", - "block.gtceu.dacite_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.dacite_cooperite_ore.prospected": "Cooperite", - "block.gtceu.dacite_copper_ore.prospected": "Copper", - "block.gtceu.dacite_diamond_ore.prospected": "Diamond", - "block.gtceu.dacite_diatomite_ore.prospected": "Diatomite", - "block.gtceu.dacite_electrotine_ore.prospected": "Electrotine", - "block.gtceu.dacite_emerald_ore.prospected": "Emerald", - "block.gtceu.dacite_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.dacite_galena_ore.prospected": "Galena", - "block.gtceu.dacite_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.dacite_garnierite_ore.prospected": "Garnierite", - "block.gtceu.dacite_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.dacite_goethite_ore.prospected": "Goethite", - "block.gtceu.dacite_gold_ore.prospected": "Gold", - "block.gtceu.dacite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.dacite_graphite_ore.prospected": "Graphite", - "block.gtceu.dacite_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.dacite_grossular_ore.prospected": "Grossular", - "block.gtceu.dacite_gypsum_ore.prospected": "Gypsum", - "block.gtceu.dacite_hematite_ore.prospected": "Hematite", - "block.gtceu.dacite_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.dacite_iron_ore.prospected": "Iron", - "block.gtceu.dacite_kyanite_ore.prospected": "Kyanite", - "block.gtceu.dacite_lapis_ore.prospected": "Lapis", - "block.gtceu.dacite_lazurite_ore.prospected": "Lazurite", - "block.gtceu.dacite_lead_ore.prospected": "Lead", - "block.gtceu.dacite_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.dacite_lithium_ore.prospected": "Lithium", - "block.gtceu.dacite_magnesite_ore.prospected": "Magnesite", - "block.gtceu.dacite_magnetite_ore.prospected": "Magnetite", - "block.gtceu.dacite_malachite_ore.prospected": "Malachite", - "block.gtceu.dacite_mica_ore.prospected": "Mica", - "block.gtceu.dacite_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.dacite_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.dacite_monazite_ore.prospected": "Monazite", - "block.gtceu.dacite_naquadah_ore.prospected": "Naquadah", - "block.gtceu.dacite_neodymium_ore.prospected": "Neodymium", - "block.gtceu.dacite_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.dacite_nickel_ore.prospected": "Nickel", - "block.gtceu.dacite_oilsands_ore.prospected": "Oilsands", - "block.gtceu.dacite_olivine_ore.prospected": "Olivine", - "block.gtceu.dacite_opal_ore.prospected": "Opal", - "block.gtceu.dacite_palladium_ore.prospected": "Palladium", - "block.gtceu.dacite_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.dacite_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.dacite_platinum_ore.prospected": "Platinum", - "block.gtceu.dacite_plutonium_ore.prospected": "Plutonium", - "block.gtceu.dacite_pollucite_ore.prospected": "Pollucite", - "block.gtceu.dacite_powellite_ore.prospected": "Powellite", - "block.gtceu.dacite_pyrite_ore.prospected": "Pyrite", - "block.gtceu.dacite_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.dacite_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.dacite_pyrope_ore.prospected": "Pyrope", - "block.gtceu.dacite_quartzite_ore.prospected": "Quartzite", - "block.gtceu.dacite_realgar_ore.prospected": "Realgar", - "block.gtceu.dacite_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.dacite_redstone_ore.prospected": "Redstone", - "block.gtceu.dacite_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.dacite_ruby_ore.prospected": "Ruby", - "block.gtceu.dacite_salt_ore.prospected": "Salt", - "block.gtceu.dacite_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.dacite_sapphire_ore.prospected": "Sapphire", - "block.gtceu.dacite_scheelite_ore.prospected": "Scheelite", - "block.gtceu.dacite_silver_ore.prospected": "Silver", - "block.gtceu.dacite_soapstone_ore.prospected": "Soapstone", - "block.gtceu.dacite_sodalite_ore.prospected": "Sodalite", - "block.gtceu.dacite_spessartine_ore.prospected": "Spessartine", - "block.gtceu.dacite_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.dacite_spodumene_ore.prospected": "Spodumene", - "block.gtceu.dacite_stibnite_ore.prospected": "Stibnite", - "block.gtceu.dacite_sulfur_ore.prospected": "Sulfur", - "block.gtceu.dacite_sylvite_ore.prospected": "Sylvite", - "block.gtceu.dacite_talc_ore.prospected": "Talc", - "block.gtceu.dacite_tantalite_ore.prospected": "Tantalite", - "block.gtceu.dacite_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.dacite_thorium_ore.prospected": "Thorium", - "block.gtceu.dacite_tin_ore.prospected": "Tin", - "block.gtceu.dacite_topaz_ore.prospected": "Topaz", - "block.gtceu.dacite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.dacite_trona_ore.prospected": "Trona", - "block.gtceu.dacite_tungstate_ore.prospected": "Tungstate", - "block.gtceu.dacite_uraninite_ore.prospected": "Uraninite", - "block.gtceu.dacite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.dacite_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.dacite_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.dacite_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.dacite_zeolite_ore.prospected": "Zeolite", - "block.gtceu.diorite_almandine_ore.prospected": "Almandine", - "block.gtceu.diorite_aluminium_ore.prospected": "Aluminium", - "block.gtceu.diorite_alunite_ore.prospected": "Alunite", - "block.gtceu.diorite_amethyst_ore.prospected": "Amethyst", - "block.gtceu.diorite_apatite_ore.prospected": "Apatite", - "block.gtceu.diorite_asbestos_ore.prospected": "Asbestos", - "block.gtceu.diorite_barite_ore.prospected": "Barite", - "block.gtceu.diorite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.diorite_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.diorite_bauxite_ore.prospected": "Bauxite", - "block.gtceu.diorite_bentonite_ore.prospected": "Bentonite", - "block.gtceu.diorite_beryllium_ore.prospected": "Beryllium", - "block.gtceu.diorite_bismuth_ore.prospected": "Bismuth", - "block.gtceu.diorite_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.diorite_borax_ore.prospected": "Borax", - "block.gtceu.diorite_bornite_ore.prospected": "Bornite", - "block.gtceu.diorite_calcite_ore.prospected": "Calcite", - "block.gtceu.diorite_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.diorite_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.diorite_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.diorite_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.diorite_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.diorite_chromite_ore.prospected": "Chromite", - "block.gtceu.diorite_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.diorite_coal_ore.prospected": "Coal", - "block.gtceu.diorite_cobalt_ore.prospected": "Cobalt", - "block.gtceu.diorite_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.diorite_cooperite_ore.prospected": "Cooperite", - "block.gtceu.diorite_copper_ore.prospected": "Copper", - "block.gtceu.diorite_diamond_ore.prospected": "Diamond", - "block.gtceu.diorite_diatomite_ore.prospected": "Diatomite", - "block.gtceu.diorite_electrotine_ore.prospected": "Electrotine", - "block.gtceu.diorite_emerald_ore.prospected": "Emerald", - "block.gtceu.diorite_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.diorite_galena_ore.prospected": "Galena", - "block.gtceu.diorite_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.diorite_garnierite_ore.prospected": "Garnierite", - "block.gtceu.diorite_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.diorite_goethite_ore.prospected": "Goethite", - "block.gtceu.diorite_gold_ore.prospected": "Gold", - "block.gtceu.diorite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.diorite_graphite_ore.prospected": "Graphite", - "block.gtceu.diorite_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.diorite_grossular_ore.prospected": "Grossular", - "block.gtceu.diorite_gypsum_ore.prospected": "Gypsum", - "block.gtceu.diorite_hematite_ore.prospected": "Hematite", - "block.gtceu.diorite_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.diorite_iron_ore.prospected": "Iron", - "block.gtceu.diorite_kyanite_ore.prospected": "Kyanite", - "block.gtceu.diorite_lapis_ore.prospected": "Lapis", - "block.gtceu.diorite_lazurite_ore.prospected": "Lazurite", - "block.gtceu.diorite_lead_ore.prospected": "Lead", - "block.gtceu.diorite_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.diorite_lithium_ore.prospected": "Lithium", - "block.gtceu.diorite_magnesite_ore.prospected": "Magnesite", - "block.gtceu.diorite_magnetite_ore.prospected": "Magnetite", - "block.gtceu.diorite_malachite_ore.prospected": "Malachite", - "block.gtceu.diorite_mica_ore.prospected": "Mica", - "block.gtceu.diorite_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.diorite_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.diorite_monazite_ore.prospected": "Monazite", - "block.gtceu.diorite_naquadah_ore.prospected": "Naquadah", - "block.gtceu.diorite_neodymium_ore.prospected": "Neodymium", - "block.gtceu.diorite_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.diorite_nickel_ore.prospected": "Nickel", - "block.gtceu.diorite_oilsands_ore.prospected": "Oilsands", - "block.gtceu.diorite_olivine_ore.prospected": "Olivine", - "block.gtceu.diorite_opal_ore.prospected": "Opal", - "block.gtceu.diorite_palladium_ore.prospected": "Palladium", - "block.gtceu.diorite_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.diorite_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.diorite_platinum_ore.prospected": "Platinum", - "block.gtceu.diorite_plutonium_ore.prospected": "Plutonium", - "block.gtceu.diorite_pollucite_ore.prospected": "Pollucite", - "block.gtceu.diorite_powellite_ore.prospected": "Powellite", - "block.gtceu.diorite_pyrite_ore.prospected": "Pyrite", - "block.gtceu.diorite_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.diorite_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.diorite_pyrope_ore.prospected": "Pyrope", - "block.gtceu.diorite_quartzite_ore.prospected": "Quartzite", - "block.gtceu.diorite_realgar_ore.prospected": "Realgar", - "block.gtceu.diorite_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.diorite_redstone_ore.prospected": "Redstone", - "block.gtceu.diorite_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.diorite_ruby_ore.prospected": "Ruby", - "block.gtceu.diorite_salt_ore.prospected": "Salt", - "block.gtceu.diorite_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.diorite_sapphire_ore.prospected": "Sapphire", - "block.gtceu.diorite_scheelite_ore.prospected": "Scheelite", - "block.gtceu.diorite_silver_ore.prospected": "Silver", - "block.gtceu.diorite_soapstone_ore.prospected": "Soapstone", - "block.gtceu.diorite_sodalite_ore.prospected": "Sodalite", - "block.gtceu.diorite_spessartine_ore.prospected": "Spessartine", - "block.gtceu.diorite_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.diorite_spodumene_ore.prospected": "Spodumene", - "block.gtceu.diorite_stibnite_ore.prospected": "Stibnite", - "block.gtceu.diorite_sulfur_ore.prospected": "Sulfur", - "block.gtceu.diorite_sylvite_ore.prospected": "Sylvite", - "block.gtceu.diorite_talc_ore.prospected": "Talc", - "block.gtceu.diorite_tantalite_ore.prospected": "Tantalite", - "block.gtceu.diorite_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.diorite_thorium_ore.prospected": "Thorium", - "block.gtceu.diorite_tin_ore.prospected": "Tin", - "block.gtceu.diorite_topaz_ore.prospected": "Topaz", - "block.gtceu.diorite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.diorite_trona_ore.prospected": "Trona", - "block.gtceu.diorite_tungstate_ore.prospected": "Tungstate", - "block.gtceu.diorite_uraninite_ore.prospected": "Uraninite", - "block.gtceu.diorite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.diorite_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.diorite_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.diorite_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.diorite_zeolite_ore.prospected": "Zeolite", - "block.gtceu.dolomite_almandine_ore.prospected": "Almandine", - "block.gtceu.dolomite_aluminium_ore.prospected": "Aluminium", - "block.gtceu.dolomite_alunite_ore.prospected": "Alunite", - "block.gtceu.dolomite_amethyst_ore.prospected": "Amethyst", - "block.gtceu.dolomite_apatite_ore.prospected": "Apatite", - "block.gtceu.dolomite_asbestos_ore.prospected": "Asbestos", - "block.gtceu.dolomite_barite_ore.prospected": "Barite", - "block.gtceu.dolomite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.dolomite_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.dolomite_bauxite_ore.prospected": "Bauxite", - "block.gtceu.dolomite_bentonite_ore.prospected": "Bentonite", - "block.gtceu.dolomite_beryllium_ore.prospected": "Beryllium", - "block.gtceu.dolomite_bismuth_ore.prospected": "Bismuth", - "block.gtceu.dolomite_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.dolomite_borax_ore.prospected": "Borax", - "block.gtceu.dolomite_bornite_ore.prospected": "Bornite", - "block.gtceu.dolomite_calcite_ore.prospected": "Calcite", - "block.gtceu.dolomite_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.dolomite_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.dolomite_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.dolomite_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.dolomite_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.dolomite_chromite_ore.prospected": "Chromite", - "block.gtceu.dolomite_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.dolomite_coal_ore.prospected": "Coal", - "block.gtceu.dolomite_cobalt_ore.prospected": "Cobalt", - "block.gtceu.dolomite_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.dolomite_cooperite_ore.prospected": "Cooperite", - "block.gtceu.dolomite_copper_ore.prospected": "Copper", - "block.gtceu.dolomite_diamond_ore.prospected": "Diamond", - "block.gtceu.dolomite_diatomite_ore.prospected": "Diatomite", - "block.gtceu.dolomite_electrotine_ore.prospected": "Electrotine", - "block.gtceu.dolomite_emerald_ore.prospected": "Emerald", - "block.gtceu.dolomite_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.dolomite_galena_ore.prospected": "Galena", - "block.gtceu.dolomite_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.dolomite_garnierite_ore.prospected": "Garnierite", - "block.gtceu.dolomite_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.dolomite_goethite_ore.prospected": "Goethite", - "block.gtceu.dolomite_gold_ore.prospected": "Gold", - "block.gtceu.dolomite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.dolomite_graphite_ore.prospected": "Graphite", - "block.gtceu.dolomite_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.dolomite_grossular_ore.prospected": "Grossular", - "block.gtceu.dolomite_gypsum_ore.prospected": "Gypsum", - "block.gtceu.dolomite_hematite_ore.prospected": "Hematite", - "block.gtceu.dolomite_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.dolomite_iron_ore.prospected": "Iron", - "block.gtceu.dolomite_kyanite_ore.prospected": "Kyanite", - "block.gtceu.dolomite_lapis_ore.prospected": "Lapis", - "block.gtceu.dolomite_lazurite_ore.prospected": "Lazurite", - "block.gtceu.dolomite_lead_ore.prospected": "Lead", - "block.gtceu.dolomite_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.dolomite_lithium_ore.prospected": "Lithium", - "block.gtceu.dolomite_magnesite_ore.prospected": "Magnesite", - "block.gtceu.dolomite_magnetite_ore.prospected": "Magnetite", - "block.gtceu.dolomite_malachite_ore.prospected": "Malachite", - "block.gtceu.dolomite_mica_ore.prospected": "Mica", - "block.gtceu.dolomite_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.dolomite_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.dolomite_monazite_ore.prospected": "Monazite", - "block.gtceu.dolomite_naquadah_ore.prospected": "Naquadah", - "block.gtceu.dolomite_neodymium_ore.prospected": "Neodymium", - "block.gtceu.dolomite_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.dolomite_nickel_ore.prospected": "Nickel", - "block.gtceu.dolomite_oilsands_ore.prospected": "Oilsands", - "block.gtceu.dolomite_olivine_ore.prospected": "Olivine", - "block.gtceu.dolomite_opal_ore.prospected": "Opal", - "block.gtceu.dolomite_palladium_ore.prospected": "Palladium", - "block.gtceu.dolomite_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.dolomite_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.dolomite_platinum_ore.prospected": "Platinum", - "block.gtceu.dolomite_plutonium_ore.prospected": "Plutonium", - "block.gtceu.dolomite_pollucite_ore.prospected": "Pollucite", - "block.gtceu.dolomite_powellite_ore.prospected": "Powellite", - "block.gtceu.dolomite_pyrite_ore.prospected": "Pyrite", - "block.gtceu.dolomite_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.dolomite_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.dolomite_pyrope_ore.prospected": "Pyrope", - "block.gtceu.dolomite_quartzite_ore.prospected": "Quartzite", - "block.gtceu.dolomite_realgar_ore.prospected": "Realgar", - "block.gtceu.dolomite_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.dolomite_redstone_ore.prospected": "Redstone", - "block.gtceu.dolomite_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.dolomite_ruby_ore.prospected": "Ruby", - "block.gtceu.dolomite_salt_ore.prospected": "Salt", - "block.gtceu.dolomite_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.dolomite_sapphire_ore.prospected": "Sapphire", - "block.gtceu.dolomite_scheelite_ore.prospected": "Scheelite", - "block.gtceu.dolomite_silver_ore.prospected": "Silver", - "block.gtceu.dolomite_soapstone_ore.prospected": "Soapstone", - "block.gtceu.dolomite_sodalite_ore.prospected": "Sodalite", - "block.gtceu.dolomite_spessartine_ore.prospected": "Spessartine", - "block.gtceu.dolomite_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.dolomite_spodumene_ore.prospected": "Spodumene", - "block.gtceu.dolomite_stibnite_ore.prospected": "Stibnite", - "block.gtceu.dolomite_sulfur_ore.prospected": "Sulfur", - "block.gtceu.dolomite_sylvite_ore.prospected": "Sylvite", - "block.gtceu.dolomite_talc_ore.prospected": "Talc", - "block.gtceu.dolomite_tantalite_ore.prospected": "Tantalite", - "block.gtceu.dolomite_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.dolomite_thorium_ore.prospected": "Thorium", - "block.gtceu.dolomite_tin_ore.prospected": "Tin", - "block.gtceu.dolomite_topaz_ore.prospected": "Topaz", - "block.gtceu.dolomite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.dolomite_trona_ore.prospected": "Trona", - "block.gtceu.dolomite_tungstate_ore.prospected": "Tungstate", - "block.gtceu.dolomite_uraninite_ore.prospected": "Uraninite", - "block.gtceu.dolomite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.dolomite_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.dolomite_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.dolomite_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.dolomite_zeolite_ore.prospected": "Zeolite", - "block.gtceu.gabbro_almandine_ore.prospected": "Almandine", - "block.gtceu.gabbro_aluminium_ore.prospected": "Aluminium", - "block.gtceu.gabbro_alunite_ore.prospected": "Alunite", - "block.gtceu.gabbro_amethyst_ore.prospected": "Amethyst", - "block.gtceu.gabbro_apatite_ore.prospected": "Apatite", - "block.gtceu.gabbro_asbestos_ore.prospected": "Asbestos", - "block.gtceu.gabbro_barite_ore.prospected": "Barite", - "block.gtceu.gabbro_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.gabbro_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.gabbro_bauxite_ore.prospected": "Bauxite", - "block.gtceu.gabbro_bentonite_ore.prospected": "Bentonite", - "block.gtceu.gabbro_beryllium_ore.prospected": "Beryllium", - "block.gtceu.gabbro_bismuth_ore.prospected": "Bismuth", - "block.gtceu.gabbro_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.gabbro_borax_ore.prospected": "Borax", - "block.gtceu.gabbro_bornite_ore.prospected": "Bornite", - "block.gtceu.gabbro_calcite_ore.prospected": "Calcite", - "block.gtceu.gabbro_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.gabbro_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.gabbro_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.gabbro_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.gabbro_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.gabbro_chromite_ore.prospected": "Chromite", - "block.gtceu.gabbro_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.gabbro_coal_ore.prospected": "Coal", - "block.gtceu.gabbro_cobalt_ore.prospected": "Cobalt", - "block.gtceu.gabbro_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.gabbro_cooperite_ore.prospected": "Cooperite", - "block.gtceu.gabbro_copper_ore.prospected": "Copper", - "block.gtceu.gabbro_diamond_ore.prospected": "Diamond", - "block.gtceu.gabbro_diatomite_ore.prospected": "Diatomite", - "block.gtceu.gabbro_electrotine_ore.prospected": "Electrotine", - "block.gtceu.gabbro_emerald_ore.prospected": "Emerald", - "block.gtceu.gabbro_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.gabbro_galena_ore.prospected": "Galena", - "block.gtceu.gabbro_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.gabbro_garnierite_ore.prospected": "Garnierite", - "block.gtceu.gabbro_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.gabbro_goethite_ore.prospected": "Goethite", - "block.gtceu.gabbro_gold_ore.prospected": "Gold", - "block.gtceu.gabbro_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.gabbro_graphite_ore.prospected": "Graphite", - "block.gtceu.gabbro_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.gabbro_grossular_ore.prospected": "Grossular", - "block.gtceu.gabbro_gypsum_ore.prospected": "Gypsum", - "block.gtceu.gabbro_hematite_ore.prospected": "Hematite", - "block.gtceu.gabbro_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.gabbro_iron_ore.prospected": "Iron", - "block.gtceu.gabbro_kyanite_ore.prospected": "Kyanite", - "block.gtceu.gabbro_lapis_ore.prospected": "Lapis", - "block.gtceu.gabbro_lazurite_ore.prospected": "Lazurite", - "block.gtceu.gabbro_lead_ore.prospected": "Lead", - "block.gtceu.gabbro_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.gabbro_lithium_ore.prospected": "Lithium", - "block.gtceu.gabbro_magnesite_ore.prospected": "Magnesite", - "block.gtceu.gabbro_magnetite_ore.prospected": "Magnetite", - "block.gtceu.gabbro_malachite_ore.prospected": "Malachite", - "block.gtceu.gabbro_mica_ore.prospected": "Mica", - "block.gtceu.gabbro_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.gabbro_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.gabbro_monazite_ore.prospected": "Monazite", - "block.gtceu.gabbro_naquadah_ore.prospected": "Naquadah", - "block.gtceu.gabbro_neodymium_ore.prospected": "Neodymium", - "block.gtceu.gabbro_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.gabbro_nickel_ore.prospected": "Nickel", - "block.gtceu.gabbro_oilsands_ore.prospected": "Oilsands", - "block.gtceu.gabbro_olivine_ore.prospected": "Olivine", - "block.gtceu.gabbro_opal_ore.prospected": "Opal", - "block.gtceu.gabbro_palladium_ore.prospected": "Palladium", - "block.gtceu.gabbro_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.gabbro_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.gabbro_platinum_ore.prospected": "Platinum", - "block.gtceu.gabbro_plutonium_ore.prospected": "Plutonium", - "block.gtceu.gabbro_pollucite_ore.prospected": "Pollucite", - "block.gtceu.gabbro_powellite_ore.prospected": "Powellite", - "block.gtceu.gabbro_pyrite_ore.prospected": "Pyrite", - "block.gtceu.gabbro_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.gabbro_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.gabbro_pyrope_ore.prospected": "Pyrope", - "block.gtceu.gabbro_quartzite_ore.prospected": "Quartzite", - "block.gtceu.gabbro_realgar_ore.prospected": "Realgar", - "block.gtceu.gabbro_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.gabbro_redstone_ore.prospected": "Redstone", - "block.gtceu.gabbro_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.gabbro_ruby_ore.prospected": "Ruby", - "block.gtceu.gabbro_salt_ore.prospected": "Salt", - "block.gtceu.gabbro_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.gabbro_sapphire_ore.prospected": "Sapphire", - "block.gtceu.gabbro_scheelite_ore.prospected": "Scheelite", - "block.gtceu.gabbro_silver_ore.prospected": "Silver", - "block.gtceu.gabbro_soapstone_ore.prospected": "Soapstone", - "block.gtceu.gabbro_sodalite_ore.prospected": "Sodalite", - "block.gtceu.gabbro_spessartine_ore.prospected": "Spessartine", - "block.gtceu.gabbro_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.gabbro_spodumene_ore.prospected": "Spodumene", - "block.gtceu.gabbro_stibnite_ore.prospected": "Stibnite", - "block.gtceu.gabbro_sulfur_ore.prospected": "Sulfur", - "block.gtceu.gabbro_sylvite_ore.prospected": "Sylvite", - "block.gtceu.gabbro_talc_ore.prospected": "Talc", - "block.gtceu.gabbro_tantalite_ore.prospected": "Tantalite", - "block.gtceu.gabbro_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.gabbro_thorium_ore.prospected": "Thorium", - "block.gtceu.gabbro_tin_ore.prospected": "Tin", - "block.gtceu.gabbro_topaz_ore.prospected": "Topaz", - "block.gtceu.gabbro_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.gabbro_trona_ore.prospected": "Trona", - "block.gtceu.gabbro_tungstate_ore.prospected": "Tungstate", - "block.gtceu.gabbro_uraninite_ore.prospected": "Uraninite", - "block.gtceu.gabbro_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.gabbro_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.gabbro_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.gabbro_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.gabbro_zeolite_ore.prospected": "Zeolite", - "block.gtceu.gneiss_almandine_ore.prospected": "Almandine", - "block.gtceu.gneiss_aluminium_ore.prospected": "Aluminium", - "block.gtceu.gneiss_alunite_ore.prospected": "Alunite", - "block.gtceu.gneiss_amethyst_ore.prospected": "Amethyst", - "block.gtceu.gneiss_apatite_ore.prospected": "Apatite", - "block.gtceu.gneiss_asbestos_ore.prospected": "Asbestos", - "block.gtceu.gneiss_barite_ore.prospected": "Barite", - "block.gtceu.gneiss_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.gneiss_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.gneiss_bauxite_ore.prospected": "Bauxite", - "block.gtceu.gneiss_bentonite_ore.prospected": "Bentonite", - "block.gtceu.gneiss_beryllium_ore.prospected": "Beryllium", - "block.gtceu.gneiss_bismuth_ore.prospected": "Bismuth", - "block.gtceu.gneiss_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.gneiss_borax_ore.prospected": "Borax", - "block.gtceu.gneiss_bornite_ore.prospected": "Bornite", - "block.gtceu.gneiss_calcite_ore.prospected": "Calcite", - "block.gtceu.gneiss_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.gneiss_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.gneiss_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.gneiss_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.gneiss_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.gneiss_chromite_ore.prospected": "Chromite", - "block.gtceu.gneiss_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.gneiss_coal_ore.prospected": "Coal", - "block.gtceu.gneiss_cobalt_ore.prospected": "Cobalt", - "block.gtceu.gneiss_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.gneiss_cooperite_ore.prospected": "Cooperite", - "block.gtceu.gneiss_copper_ore.prospected": "Copper", - "block.gtceu.gneiss_diamond_ore.prospected": "Diamond", - "block.gtceu.gneiss_diatomite_ore.prospected": "Diatomite", - "block.gtceu.gneiss_electrotine_ore.prospected": "Electrotine", - "block.gtceu.gneiss_emerald_ore.prospected": "Emerald", - "block.gtceu.gneiss_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.gneiss_galena_ore.prospected": "Galena", - "block.gtceu.gneiss_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.gneiss_garnierite_ore.prospected": "Garnierite", - "block.gtceu.gneiss_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.gneiss_goethite_ore.prospected": "Goethite", - "block.gtceu.gneiss_gold_ore.prospected": "Gold", - "block.gtceu.gneiss_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.gneiss_graphite_ore.prospected": "Graphite", - "block.gtceu.gneiss_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.gneiss_grossular_ore.prospected": "Grossular", - "block.gtceu.gneiss_gypsum_ore.prospected": "Gypsum", - "block.gtceu.gneiss_hematite_ore.prospected": "Hematite", - "block.gtceu.gneiss_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.gneiss_iron_ore.prospected": "Iron", - "block.gtceu.gneiss_kyanite_ore.prospected": "Kyanite", - "block.gtceu.gneiss_lapis_ore.prospected": "Lapis", - "block.gtceu.gneiss_lazurite_ore.prospected": "Lazurite", - "block.gtceu.gneiss_lead_ore.prospected": "Lead", - "block.gtceu.gneiss_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.gneiss_lithium_ore.prospected": "Lithium", - "block.gtceu.gneiss_magnesite_ore.prospected": "Magnesite", - "block.gtceu.gneiss_magnetite_ore.prospected": "Magnetite", - "block.gtceu.gneiss_malachite_ore.prospected": "Malachite", - "block.gtceu.gneiss_mica_ore.prospected": "Mica", - "block.gtceu.gneiss_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.gneiss_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.gneiss_monazite_ore.prospected": "Monazite", - "block.gtceu.gneiss_naquadah_ore.prospected": "Naquadah", - "block.gtceu.gneiss_neodymium_ore.prospected": "Neodymium", - "block.gtceu.gneiss_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.gneiss_nickel_ore.prospected": "Nickel", - "block.gtceu.gneiss_oilsands_ore.prospected": "Oilsands", - "block.gtceu.gneiss_olivine_ore.prospected": "Olivine", - "block.gtceu.gneiss_opal_ore.prospected": "Opal", - "block.gtceu.gneiss_palladium_ore.prospected": "Palladium", - "block.gtceu.gneiss_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.gneiss_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.gneiss_platinum_ore.prospected": "Platinum", - "block.gtceu.gneiss_plutonium_ore.prospected": "Plutonium", - "block.gtceu.gneiss_pollucite_ore.prospected": "Pollucite", - "block.gtceu.gneiss_powellite_ore.prospected": "Powellite", - "block.gtceu.gneiss_pyrite_ore.prospected": "Pyrite", - "block.gtceu.gneiss_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.gneiss_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.gneiss_pyrope_ore.prospected": "Pyrope", - "block.gtceu.gneiss_quartzite_ore.prospected": "Quartzite", - "block.gtceu.gneiss_realgar_ore.prospected": "Realgar", - "block.gtceu.gneiss_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.gneiss_redstone_ore.prospected": "Redstone", - "block.gtceu.gneiss_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.gneiss_ruby_ore.prospected": "Ruby", - "block.gtceu.gneiss_salt_ore.prospected": "Salt", - "block.gtceu.gneiss_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.gneiss_sapphire_ore.prospected": "Sapphire", - "block.gtceu.gneiss_scheelite_ore.prospected": "Scheelite", - "block.gtceu.gneiss_silver_ore.prospected": "Silver", - "block.gtceu.gneiss_soapstone_ore.prospected": "Soapstone", - "block.gtceu.gneiss_sodalite_ore.prospected": "Sodalite", - "block.gtceu.gneiss_spessartine_ore.prospected": "Spessartine", - "block.gtceu.gneiss_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.gneiss_spodumene_ore.prospected": "Spodumene", - "block.gtceu.gneiss_stibnite_ore.prospected": "Stibnite", - "block.gtceu.gneiss_sulfur_ore.prospected": "Sulfur", - "block.gtceu.gneiss_sylvite_ore.prospected": "Sylvite", - "block.gtceu.gneiss_talc_ore.prospected": "Talc", - "block.gtceu.gneiss_tantalite_ore.prospected": "Tantalite", - "block.gtceu.gneiss_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.gneiss_thorium_ore.prospected": "Thorium", - "block.gtceu.gneiss_tin_ore.prospected": "Tin", - "block.gtceu.gneiss_topaz_ore.prospected": "Topaz", - "block.gtceu.gneiss_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.gneiss_trona_ore.prospected": "Trona", - "block.gtceu.gneiss_tungstate_ore.prospected": "Tungstate", - "block.gtceu.gneiss_uraninite_ore.prospected": "Uraninite", - "block.gtceu.gneiss_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.gneiss_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.gneiss_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.gneiss_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.gneiss_zeolite_ore.prospected": "Zeolite", - "block.gtceu.granite_almandine_ore.prospected": "Almandine", - "block.gtceu.granite_aluminium_ore.prospected": "Aluminium", - "block.gtceu.granite_alunite_ore.prospected": "Alunite", - "block.gtceu.granite_amethyst_ore.prospected": "Amethyst", - "block.gtceu.granite_apatite_ore.prospected": "Apatite", - "block.gtceu.granite_asbestos_ore.prospected": "Asbestos", - "block.gtceu.granite_barite_ore.prospected": "Barite", - "block.gtceu.granite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.granite_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.granite_bauxite_ore.prospected": "Bauxite", - "block.gtceu.granite_bentonite_ore.prospected": "Bentonite", - "block.gtceu.granite_beryllium_ore.prospected": "Beryllium", - "block.gtceu.granite_bismuth_ore.prospected": "Bismuth", - "block.gtceu.granite_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.granite_borax_ore.prospected": "Borax", - "block.gtceu.granite_bornite_ore.prospected": "Bornite", - "block.gtceu.granite_calcite_ore.prospected": "Calcite", - "block.gtceu.granite_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.granite_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.granite_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.granite_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.granite_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.granite_chromite_ore.prospected": "Chromite", - "block.gtceu.granite_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.granite_coal_ore.prospected": "Coal", - "block.gtceu.granite_cobalt_ore.prospected": "Cobalt", - "block.gtceu.granite_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.granite_cooperite_ore.prospected": "Cooperite", - "block.gtceu.granite_copper_ore.prospected": "Copper", - "block.gtceu.granite_diamond_ore.prospected": "Diamond", - "block.gtceu.granite_diatomite_ore.prospected": "Diatomite", - "block.gtceu.granite_electrotine_ore.prospected": "Electrotine", - "block.gtceu.granite_emerald_ore.prospected": "Emerald", - "block.gtceu.granite_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.granite_galena_ore.prospected": "Galena", - "block.gtceu.granite_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.granite_garnierite_ore.prospected": "Garnierite", - "block.gtceu.granite_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.granite_goethite_ore.prospected": "Goethite", - "block.gtceu.granite_gold_ore.prospected": "Gold", - "block.gtceu.granite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.granite_graphite_ore.prospected": "Graphite", - "block.gtceu.granite_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.granite_grossular_ore.prospected": "Grossular", - "block.gtceu.granite_gypsum_ore.prospected": "Gypsum", - "block.gtceu.granite_hematite_ore.prospected": "Hematite", - "block.gtceu.granite_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.granite_iron_ore.prospected": "Iron", - "block.gtceu.granite_kyanite_ore.prospected": "Kyanite", - "block.gtceu.granite_lapis_ore.prospected": "Lapis", - "block.gtceu.granite_lazurite_ore.prospected": "Lazurite", - "block.gtceu.granite_lead_ore.prospected": "Lead", - "block.gtceu.granite_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.granite_lithium_ore.prospected": "Lithium", - "block.gtceu.granite_magnesite_ore.prospected": "Magnesite", - "block.gtceu.granite_magnetite_ore.prospected": "Magnetite", - "block.gtceu.granite_malachite_ore.prospected": "Malachite", - "block.gtceu.granite_mica_ore.prospected": "Mica", - "block.gtceu.granite_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.granite_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.granite_monazite_ore.prospected": "Monazite", - "block.gtceu.granite_naquadah_ore.prospected": "Naquadah", - "block.gtceu.granite_neodymium_ore.prospected": "Neodymium", - "block.gtceu.granite_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.granite_nickel_ore.prospected": "Nickel", - "block.gtceu.granite_oilsands_ore.prospected": "Oilsands", - "block.gtceu.granite_olivine_ore.prospected": "Olivine", - "block.gtceu.granite_opal_ore.prospected": "Opal", - "block.gtceu.granite_palladium_ore.prospected": "Palladium", - "block.gtceu.granite_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.granite_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.granite_platinum_ore.prospected": "Platinum", - "block.gtceu.granite_plutonium_ore.prospected": "Plutonium", - "block.gtceu.granite_pollucite_ore.prospected": "Pollucite", - "block.gtceu.granite_powellite_ore.prospected": "Powellite", - "block.gtceu.granite_pyrite_ore.prospected": "Pyrite", - "block.gtceu.granite_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.granite_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.granite_pyrope_ore.prospected": "Pyrope", - "block.gtceu.granite_quartzite_ore.prospected": "Quartzite", - "block.gtceu.granite_realgar_ore.prospected": "Realgar", - "block.gtceu.granite_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.granite_redstone_ore.prospected": "Redstone", - "block.gtceu.granite_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.granite_ruby_ore.prospected": "Ruby", - "block.gtceu.granite_salt_ore.prospected": "Salt", - "block.gtceu.granite_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.granite_sapphire_ore.prospected": "Sapphire", - "block.gtceu.granite_scheelite_ore.prospected": "Scheelite", - "block.gtceu.granite_silver_ore.prospected": "Silver", - "block.gtceu.granite_soapstone_ore.prospected": "Soapstone", - "block.gtceu.granite_sodalite_ore.prospected": "Sodalite", - "block.gtceu.granite_spessartine_ore.prospected": "Spessartine", - "block.gtceu.granite_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.granite_spodumene_ore.prospected": "Spodumene", - "block.gtceu.granite_stibnite_ore.prospected": "Stibnite", - "block.gtceu.granite_sulfur_ore.prospected": "Sulfur", - "block.gtceu.granite_sylvite_ore.prospected": "Sylvite", - "block.gtceu.granite_talc_ore.prospected": "Talc", - "block.gtceu.granite_tantalite_ore.prospected": "Tantalite", - "block.gtceu.granite_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.granite_thorium_ore.prospected": "Thorium", - "block.gtceu.granite_tin_ore.prospected": "Tin", - "block.gtceu.granite_topaz_ore.prospected": "Topaz", - "block.gtceu.granite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.granite_trona_ore.prospected": "Trona", - "block.gtceu.granite_tungstate_ore.prospected": "Tungstate", - "block.gtceu.granite_uraninite_ore.prospected": "Uraninite", - "block.gtceu.granite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.granite_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.granite_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.granite_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.granite_zeolite_ore.prospected": "Zeolite", - "block.gtceu.limestone_almandine_ore.prospected": "Almandine", - "block.gtceu.limestone_aluminium_ore.prospected": "Aluminium", - "block.gtceu.limestone_alunite_ore.prospected": "Alunite", - "block.gtceu.limestone_amethyst_ore.prospected": "Amethyst", - "block.gtceu.limestone_apatite_ore.prospected": "Apatite", - "block.gtceu.limestone_asbestos_ore.prospected": "Asbestos", - "block.gtceu.limestone_barite_ore.prospected": "Barite", - "block.gtceu.limestone_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.limestone_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.limestone_bauxite_ore.prospected": "Bauxite", - "block.gtceu.limestone_bentonite_ore.prospected": "Bentonite", - "block.gtceu.limestone_beryllium_ore.prospected": "Beryllium", - "block.gtceu.limestone_bismuth_ore.prospected": "Bismuth", - "block.gtceu.limestone_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.limestone_borax_ore.prospected": "Borax", - "block.gtceu.limestone_bornite_ore.prospected": "Bornite", - "block.gtceu.limestone_calcite_ore.prospected": "Calcite", - "block.gtceu.limestone_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.limestone_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.limestone_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.limestone_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.limestone_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.limestone_chromite_ore.prospected": "Chromite", - "block.gtceu.limestone_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.limestone_coal_ore.prospected": "Coal", - "block.gtceu.limestone_cobalt_ore.prospected": "Cobalt", - "block.gtceu.limestone_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.limestone_cooperite_ore.prospected": "Cooperite", - "block.gtceu.limestone_copper_ore.prospected": "Copper", - "block.gtceu.limestone_diamond_ore.prospected": "Diamond", - "block.gtceu.limestone_diatomite_ore.prospected": "Diatomite", - "block.gtceu.limestone_electrotine_ore.prospected": "Electrotine", - "block.gtceu.limestone_emerald_ore.prospected": "Emerald", - "block.gtceu.limestone_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.limestone_galena_ore.prospected": "Galena", - "block.gtceu.limestone_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.limestone_garnierite_ore.prospected": "Garnierite", - "block.gtceu.limestone_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.limestone_goethite_ore.prospected": "Goethite", - "block.gtceu.limestone_gold_ore.prospected": "Gold", - "block.gtceu.limestone_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.limestone_graphite_ore.prospected": "Graphite", - "block.gtceu.limestone_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.limestone_grossular_ore.prospected": "Grossular", - "block.gtceu.limestone_gypsum_ore.prospected": "Gypsum", - "block.gtceu.limestone_hematite_ore.prospected": "Hematite", - "block.gtceu.limestone_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.limestone_iron_ore.prospected": "Iron", - "block.gtceu.limestone_kyanite_ore.prospected": "Kyanite", - "block.gtceu.limestone_lapis_ore.prospected": "Lapis", - "block.gtceu.limestone_lazurite_ore.prospected": "Lazurite", - "block.gtceu.limestone_lead_ore.prospected": "Lead", - "block.gtceu.limestone_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.limestone_lithium_ore.prospected": "Lithium", - "block.gtceu.limestone_magnesite_ore.prospected": "Magnesite", - "block.gtceu.limestone_magnetite_ore.prospected": "Magnetite", - "block.gtceu.limestone_malachite_ore.prospected": "Malachite", - "block.gtceu.limestone_mica_ore.prospected": "Mica", - "block.gtceu.limestone_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.limestone_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.limestone_monazite_ore.prospected": "Monazite", - "block.gtceu.limestone_naquadah_ore.prospected": "Naquadah", - "block.gtceu.limestone_neodymium_ore.prospected": "Neodymium", - "block.gtceu.limestone_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.limestone_nickel_ore.prospected": "Nickel", - "block.gtceu.limestone_oilsands_ore.prospected": "Oilsands", - "block.gtceu.limestone_olivine_ore.prospected": "Olivine", - "block.gtceu.limestone_opal_ore.prospected": "Opal", - "block.gtceu.limestone_palladium_ore.prospected": "Palladium", - "block.gtceu.limestone_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.limestone_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.limestone_platinum_ore.prospected": "Platinum", - "block.gtceu.limestone_plutonium_ore.prospected": "Plutonium", - "block.gtceu.limestone_pollucite_ore.prospected": "Pollucite", - "block.gtceu.limestone_powellite_ore.prospected": "Powellite", - "block.gtceu.limestone_pyrite_ore.prospected": "Pyrite", - "block.gtceu.limestone_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.limestone_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.limestone_pyrope_ore.prospected": "Pyrope", - "block.gtceu.limestone_quartzite_ore.prospected": "Quartzite", - "block.gtceu.limestone_realgar_ore.prospected": "Realgar", - "block.gtceu.limestone_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.limestone_redstone_ore.prospected": "Redstone", - "block.gtceu.limestone_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.limestone_ruby_ore.prospected": "Ruby", - "block.gtceu.limestone_salt_ore.prospected": "Salt", - "block.gtceu.limestone_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.limestone_sapphire_ore.prospected": "Sapphire", - "block.gtceu.limestone_scheelite_ore.prospected": "Scheelite", - "block.gtceu.limestone_silver_ore.prospected": "Silver", - "block.gtceu.limestone_soapstone_ore.prospected": "Soapstone", - "block.gtceu.limestone_sodalite_ore.prospected": "Sodalite", - "block.gtceu.limestone_spessartine_ore.prospected": "Spessartine", - "block.gtceu.limestone_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.limestone_spodumene_ore.prospected": "Spodumene", - "block.gtceu.limestone_stibnite_ore.prospected": "Stibnite", - "block.gtceu.limestone_sulfur_ore.prospected": "Sulfur", - "block.gtceu.limestone_sylvite_ore.prospected": "Sylvite", - "block.gtceu.limestone_talc_ore.prospected": "Talc", - "block.gtceu.limestone_tantalite_ore.prospected": "Tantalite", - "block.gtceu.limestone_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.limestone_thorium_ore.prospected": "Thorium", - "block.gtceu.limestone_tin_ore.prospected": "Tin", - "block.gtceu.limestone_topaz_ore.prospected": "Topaz", - "block.gtceu.limestone_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.limestone_trona_ore.prospected": "Trona", - "block.gtceu.limestone_tungstate_ore.prospected": "Tungstate", - "block.gtceu.limestone_uraninite_ore.prospected": "Uraninite", - "block.gtceu.limestone_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.limestone_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.limestone_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.limestone_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.limestone_zeolite_ore.prospected": "Zeolite", - "block.gtceu.marble_almandine_ore.prospected": "Almandine", - "block.gtceu.marble_aluminium_ore.prospected": "Aluminium", - "block.gtceu.marble_alunite_ore.prospected": "Alunite", - "block.gtceu.marble_amethyst_ore.prospected": "Amethyst", - "block.gtceu.marble_apatite_ore.prospected": "Apatite", - "block.gtceu.marble_asbestos_ore.prospected": "Asbestos", - "block.gtceu.marble_barite_ore.prospected": "Barite", - "block.gtceu.marble_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.marble_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.marble_bauxite_ore.prospected": "Bauxite", - "block.gtceu.marble_bentonite_ore.prospected": "Bentonite", - "block.gtceu.marble_beryllium_ore.prospected": "Beryllium", - "block.gtceu.marble_bismuth_ore.prospected": "Bismuth", - "block.gtceu.marble_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.marble_borax_ore.prospected": "Borax", - "block.gtceu.marble_bornite_ore.prospected": "Bornite", - "block.gtceu.marble_calcite_ore.prospected": "Calcite", - "block.gtceu.marble_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.marble_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.marble_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.marble_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.marble_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.marble_chromite_ore.prospected": "Chromite", - "block.gtceu.marble_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.marble_coal_ore.prospected": "Coal", - "block.gtceu.marble_cobalt_ore.prospected": "Cobalt", - "block.gtceu.marble_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.marble_cooperite_ore.prospected": "Cooperite", - "block.gtceu.marble_copper_ore.prospected": "Copper", - "block.gtceu.marble_diamond_ore.prospected": "Diamond", - "block.gtceu.marble_diatomite_ore.prospected": "Diatomite", - "block.gtceu.marble_electrotine_ore.prospected": "Electrotine", - "block.gtceu.marble_emerald_ore.prospected": "Emerald", - "block.gtceu.marble_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.marble_galena_ore.prospected": "Galena", - "block.gtceu.marble_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.marble_garnierite_ore.prospected": "Garnierite", - "block.gtceu.marble_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.marble_goethite_ore.prospected": "Goethite", - "block.gtceu.marble_gold_ore.prospected": "Gold", - "block.gtceu.marble_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.marble_graphite_ore.prospected": "Graphite", - "block.gtceu.marble_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.marble_grossular_ore.prospected": "Grossular", - "block.gtceu.marble_gypsum_ore.prospected": "Gypsum", - "block.gtceu.marble_hematite_ore.prospected": "Hematite", - "block.gtceu.marble_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.marble_iron_ore.prospected": "Iron", - "block.gtceu.marble_kyanite_ore.prospected": "Kyanite", - "block.gtceu.marble_lapis_ore.prospected": "Lapis", - "block.gtceu.marble_lazurite_ore.prospected": "Lazurite", - "block.gtceu.marble_lead_ore.prospected": "Lead", - "block.gtceu.marble_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.marble_lithium_ore.prospected": "Lithium", - "block.gtceu.marble_magnesite_ore.prospected": "Magnesite", - "block.gtceu.marble_magnetite_ore.prospected": "Magnetite", - "block.gtceu.marble_malachite_ore.prospected": "Malachite", - "block.gtceu.marble_mica_ore.prospected": "Mica", - "block.gtceu.marble_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.marble_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.marble_monazite_ore.prospected": "Monazite", - "block.gtceu.marble_naquadah_ore.prospected": "Naquadah", - "block.gtceu.marble_neodymium_ore.prospected": "Neodymium", - "block.gtceu.marble_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.marble_nickel_ore.prospected": "Nickel", - "block.gtceu.marble_oilsands_ore.prospected": "Oilsands", - "block.gtceu.marble_olivine_ore.prospected": "Olivine", - "block.gtceu.marble_opal_ore.prospected": "Opal", - "block.gtceu.marble_palladium_ore.prospected": "Palladium", - "block.gtceu.marble_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.marble_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.marble_platinum_ore.prospected": "Platinum", - "block.gtceu.marble_plutonium_ore.prospected": "Plutonium", - "block.gtceu.marble_pollucite_ore.prospected": "Pollucite", - "block.gtceu.marble_powellite_ore.prospected": "Powellite", - "block.gtceu.marble_pyrite_ore.prospected": "Pyrite", - "block.gtceu.marble_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.marble_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.marble_pyrope_ore.prospected": "Pyrope", - "block.gtceu.marble_quartzite_ore.prospected": "Quartzite", - "block.gtceu.marble_realgar_ore.prospected": "Realgar", - "block.gtceu.marble_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.marble_redstone_ore.prospected": "Redstone", - "block.gtceu.marble_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.marble_ruby_ore.prospected": "Ruby", - "block.gtceu.marble_salt_ore.prospected": "Salt", - "block.gtceu.marble_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.marble_sapphire_ore.prospected": "Sapphire", - "block.gtceu.marble_scheelite_ore.prospected": "Scheelite", - "block.gtceu.marble_silver_ore.prospected": "Silver", - "block.gtceu.marble_soapstone_ore.prospected": "Soapstone", - "block.gtceu.marble_sodalite_ore.prospected": "Sodalite", - "block.gtceu.marble_spessartine_ore.prospected": "Spessartine", - "block.gtceu.marble_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.marble_spodumene_ore.prospected": "Spodumene", - "block.gtceu.marble_stibnite_ore.prospected": "Stibnite", - "block.gtceu.marble_sulfur_ore.prospected": "Sulfur", - "block.gtceu.marble_sylvite_ore.prospected": "Sylvite", - "block.gtceu.marble_talc_ore.prospected": "Talc", - "block.gtceu.marble_tantalite_ore.prospected": "Tantalite", - "block.gtceu.marble_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.marble_thorium_ore.prospected": "Thorium", - "block.gtceu.marble_tin_ore.prospected": "Tin", - "block.gtceu.marble_topaz_ore.prospected": "Topaz", - "block.gtceu.marble_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.marble_trona_ore.prospected": "Trona", - "block.gtceu.marble_tungstate_ore.prospected": "Tungstate", - "block.gtceu.marble_uraninite_ore.prospected": "Uraninite", - "block.gtceu.marble_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.marble_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.marble_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.marble_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.marble_zeolite_ore.prospected": "Zeolite", - "block.gtceu.phyllite_almandine_ore.prospected": "Almandine", - "block.gtceu.phyllite_aluminium_ore.prospected": "Aluminium", - "block.gtceu.phyllite_alunite_ore.prospected": "Alunite", - "block.gtceu.phyllite_amethyst_ore.prospected": "Amethyst", - "block.gtceu.phyllite_apatite_ore.prospected": "Apatite", - "block.gtceu.phyllite_asbestos_ore.prospected": "Asbestos", - "block.gtceu.phyllite_barite_ore.prospected": "Barite", - "block.gtceu.phyllite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.phyllite_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.phyllite_bauxite_ore.prospected": "Bauxite", - "block.gtceu.phyllite_bentonite_ore.prospected": "Bentonite", - "block.gtceu.phyllite_beryllium_ore.prospected": "Beryllium", - "block.gtceu.phyllite_bismuth_ore.prospected": "Bismuth", - "block.gtceu.phyllite_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.phyllite_borax_ore.prospected": "Borax", - "block.gtceu.phyllite_bornite_ore.prospected": "Bornite", - "block.gtceu.phyllite_calcite_ore.prospected": "Calcite", - "block.gtceu.phyllite_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.phyllite_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.phyllite_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.phyllite_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.phyllite_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.phyllite_chromite_ore.prospected": "Chromite", - "block.gtceu.phyllite_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.phyllite_coal_ore.prospected": "Coal", - "block.gtceu.phyllite_cobalt_ore.prospected": "Cobalt", - "block.gtceu.phyllite_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.phyllite_cooperite_ore.prospected": "Cooperite", - "block.gtceu.phyllite_copper_ore.prospected": "Copper", - "block.gtceu.phyllite_diamond_ore.prospected": "Diamond", - "block.gtceu.phyllite_diatomite_ore.prospected": "Diatomite", - "block.gtceu.phyllite_electrotine_ore.prospected": "Electrotine", - "block.gtceu.phyllite_emerald_ore.prospected": "Emerald", - "block.gtceu.phyllite_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.phyllite_galena_ore.prospected": "Galena", - "block.gtceu.phyllite_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.phyllite_garnierite_ore.prospected": "Garnierite", - "block.gtceu.phyllite_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.phyllite_goethite_ore.prospected": "Goethite", - "block.gtceu.phyllite_gold_ore.prospected": "Gold", - "block.gtceu.phyllite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.phyllite_graphite_ore.prospected": "Graphite", - "block.gtceu.phyllite_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.phyllite_grossular_ore.prospected": "Grossular", - "block.gtceu.phyllite_gypsum_ore.prospected": "Gypsum", - "block.gtceu.phyllite_hematite_ore.prospected": "Hematite", - "block.gtceu.phyllite_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.phyllite_iron_ore.prospected": "Iron", - "block.gtceu.phyllite_kyanite_ore.prospected": "Kyanite", - "block.gtceu.phyllite_lapis_ore.prospected": "Lapis", - "block.gtceu.phyllite_lazurite_ore.prospected": "Lazurite", - "block.gtceu.phyllite_lead_ore.prospected": "Lead", - "block.gtceu.phyllite_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.phyllite_lithium_ore.prospected": "Lithium", - "block.gtceu.phyllite_magnesite_ore.prospected": "Magnesite", - "block.gtceu.phyllite_magnetite_ore.prospected": "Magnetite", - "block.gtceu.phyllite_malachite_ore.prospected": "Malachite", - "block.gtceu.phyllite_mica_ore.prospected": "Mica", - "block.gtceu.phyllite_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.phyllite_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.phyllite_monazite_ore.prospected": "Monazite", - "block.gtceu.phyllite_naquadah_ore.prospected": "Naquadah", - "block.gtceu.phyllite_neodymium_ore.prospected": "Neodymium", - "block.gtceu.phyllite_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.phyllite_nickel_ore.prospected": "Nickel", - "block.gtceu.phyllite_oilsands_ore.prospected": "Oilsands", - "block.gtceu.phyllite_olivine_ore.prospected": "Olivine", - "block.gtceu.phyllite_opal_ore.prospected": "Opal", - "block.gtceu.phyllite_palladium_ore.prospected": "Palladium", - "block.gtceu.phyllite_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.phyllite_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.phyllite_platinum_ore.prospected": "Platinum", - "block.gtceu.phyllite_plutonium_ore.prospected": "Plutonium", - "block.gtceu.phyllite_pollucite_ore.prospected": "Pollucite", - "block.gtceu.phyllite_powellite_ore.prospected": "Powellite", - "block.gtceu.phyllite_pyrite_ore.prospected": "Pyrite", - "block.gtceu.phyllite_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.phyllite_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.phyllite_pyrope_ore.prospected": "Pyrope", - "block.gtceu.phyllite_quartzite_ore.prospected": "Quartzite", - "block.gtceu.phyllite_realgar_ore.prospected": "Realgar", - "block.gtceu.phyllite_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.phyllite_redstone_ore.prospected": "Redstone", - "block.gtceu.phyllite_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.phyllite_ruby_ore.prospected": "Ruby", - "block.gtceu.phyllite_salt_ore.prospected": "Salt", - "block.gtceu.phyllite_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.phyllite_sapphire_ore.prospected": "Sapphire", - "block.gtceu.phyllite_scheelite_ore.prospected": "Scheelite", - "block.gtceu.phyllite_silver_ore.prospected": "Silver", - "block.gtceu.phyllite_soapstone_ore.prospected": "Soapstone", - "block.gtceu.phyllite_sodalite_ore.prospected": "Sodalite", - "block.gtceu.phyllite_spessartine_ore.prospected": "Spessartine", - "block.gtceu.phyllite_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.phyllite_spodumene_ore.prospected": "Spodumene", - "block.gtceu.phyllite_stibnite_ore.prospected": "Stibnite", - "block.gtceu.phyllite_sulfur_ore.prospected": "Sulfur", - "block.gtceu.phyllite_sylvite_ore.prospected": "Sylvite", - "block.gtceu.phyllite_talc_ore.prospected": "Talc", - "block.gtceu.phyllite_tantalite_ore.prospected": "Tantalite", - "block.gtceu.phyllite_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.phyllite_thorium_ore.prospected": "Thorium", - "block.gtceu.phyllite_tin_ore.prospected": "Tin", - "block.gtceu.phyllite_topaz_ore.prospected": "Topaz", - "block.gtceu.phyllite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.phyllite_trona_ore.prospected": "Trona", - "block.gtceu.phyllite_tungstate_ore.prospected": "Tungstate", - "block.gtceu.phyllite_uraninite_ore.prospected": "Uraninite", - "block.gtceu.phyllite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.phyllite_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.phyllite_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.phyllite_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.phyllite_zeolite_ore.prospected": "Zeolite", - "block.gtceu.quartzite_almandine_ore.prospected": "Almandine", - "block.gtceu.quartzite_aluminium_ore.prospected": "Aluminium", - "block.gtceu.quartzite_alunite_ore.prospected": "Alunite", - "block.gtceu.quartzite_amethyst_ore.prospected": "Amethyst", - "block.gtceu.quartzite_apatite_ore.prospected": "Apatite", - "block.gtceu.quartzite_asbestos_ore.prospected": "Asbestos", - "block.gtceu.quartzite_barite_ore.prospected": "Barite", - "block.gtceu.quartzite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.quartzite_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.quartzite_bauxite_ore.prospected": "Bauxite", - "block.gtceu.quartzite_bentonite_ore.prospected": "Bentonite", - "block.gtceu.quartzite_beryllium_ore.prospected": "Beryllium", - "block.gtceu.quartzite_bismuth_ore.prospected": "Bismuth", - "block.gtceu.quartzite_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.quartzite_borax_ore.prospected": "Borax", - "block.gtceu.quartzite_bornite_ore.prospected": "Bornite", - "block.gtceu.quartzite_calcite_ore.prospected": "Calcite", - "block.gtceu.quartzite_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.quartzite_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.quartzite_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.quartzite_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.quartzite_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.quartzite_chromite_ore.prospected": "Chromite", - "block.gtceu.quartzite_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.quartzite_coal_ore.prospected": "Coal", - "block.gtceu.quartzite_cobalt_ore.prospected": "Cobalt", - "block.gtceu.quartzite_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.quartzite_cooperite_ore.prospected": "Cooperite", - "block.gtceu.quartzite_copper_ore.prospected": "Copper", - "block.gtceu.quartzite_diamond_ore.prospected": "Diamond", - "block.gtceu.quartzite_diatomite_ore.prospected": "Diatomite", - "block.gtceu.quartzite_electrotine_ore.prospected": "Electrotine", - "block.gtceu.quartzite_emerald_ore.prospected": "Emerald", - "block.gtceu.quartzite_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.quartzite_galena_ore.prospected": "Galena", - "block.gtceu.quartzite_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.quartzite_garnierite_ore.prospected": "Garnierite", - "block.gtceu.quartzite_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.quartzite_goethite_ore.prospected": "Goethite", - "block.gtceu.quartzite_gold_ore.prospected": "Gold", - "block.gtceu.quartzite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.quartzite_graphite_ore.prospected": "Graphite", - "block.gtceu.quartzite_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.quartzite_grossular_ore.prospected": "Grossular", - "block.gtceu.quartzite_gypsum_ore.prospected": "Gypsum", - "block.gtceu.quartzite_hematite_ore.prospected": "Hematite", - "block.gtceu.quartzite_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.quartzite_iron_ore.prospected": "Iron", - "block.gtceu.quartzite_kyanite_ore.prospected": "Kyanite", - "block.gtceu.quartzite_lapis_ore.prospected": "Lapis", - "block.gtceu.quartzite_lazurite_ore.prospected": "Lazurite", - "block.gtceu.quartzite_lead_ore.prospected": "Lead", - "block.gtceu.quartzite_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.quartzite_lithium_ore.prospected": "Lithium", - "block.gtceu.quartzite_magnesite_ore.prospected": "Magnesite", - "block.gtceu.quartzite_magnetite_ore.prospected": "Magnetite", - "block.gtceu.quartzite_malachite_ore.prospected": "Malachite", - "block.gtceu.quartzite_mica_ore.prospected": "Mica", - "block.gtceu.quartzite_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.quartzite_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.quartzite_monazite_ore.prospected": "Monazite", - "block.gtceu.quartzite_naquadah_ore.prospected": "Naquadah", - "block.gtceu.quartzite_neodymium_ore.prospected": "Neodymium", - "block.gtceu.quartzite_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.quartzite_nickel_ore.prospected": "Nickel", - "block.gtceu.quartzite_oilsands_ore.prospected": "Oilsands", - "block.gtceu.quartzite_olivine_ore.prospected": "Olivine", - "block.gtceu.quartzite_opal_ore.prospected": "Opal", - "block.gtceu.quartzite_palladium_ore.prospected": "Palladium", - "block.gtceu.quartzite_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.quartzite_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.quartzite_platinum_ore.prospected": "Platinum", - "block.gtceu.quartzite_plutonium_ore.prospected": "Plutonium", - "block.gtceu.quartzite_pollucite_ore.prospected": "Pollucite", - "block.gtceu.quartzite_powellite_ore.prospected": "Powellite", - "block.gtceu.quartzite_pyrite_ore.prospected": "Pyrite", - "block.gtceu.quartzite_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.quartzite_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.quartzite_pyrope_ore.prospected": "Pyrope", - "block.gtceu.quartzite_quartzite_ore.prospected": "Quartzite", - "block.gtceu.quartzite_realgar_ore.prospected": "Realgar", - "block.gtceu.quartzite_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.quartzite_redstone_ore.prospected": "Redstone", - "block.gtceu.quartzite_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.quartzite_ruby_ore.prospected": "Ruby", - "block.gtceu.quartzite_salt_ore.prospected": "Salt", - "block.gtceu.quartzite_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.quartzite_sapphire_ore.prospected": "Sapphire", - "block.gtceu.quartzite_scheelite_ore.prospected": "Scheelite", - "block.gtceu.quartzite_silver_ore.prospected": "Silver", - "block.gtceu.quartzite_soapstone_ore.prospected": "Soapstone", - "block.gtceu.quartzite_sodalite_ore.prospected": "Sodalite", - "block.gtceu.quartzite_spessartine_ore.prospected": "Spessartine", - "block.gtceu.quartzite_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.quartzite_spodumene_ore.prospected": "Spodumene", - "block.gtceu.quartzite_stibnite_ore.prospected": "Stibnite", - "block.gtceu.quartzite_sulfur_ore.prospected": "Sulfur", - "block.gtceu.quartzite_sylvite_ore.prospected": "Sylvite", - "block.gtceu.quartzite_talc_ore.prospected": "Talc", - "block.gtceu.quartzite_tantalite_ore.prospected": "Tantalite", - "block.gtceu.quartzite_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.quartzite_thorium_ore.prospected": "Thorium", - "block.gtceu.quartzite_tin_ore.prospected": "Tin", - "block.gtceu.quartzite_topaz_ore.prospected": "Topaz", - "block.gtceu.quartzite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.quartzite_trona_ore.prospected": "Trona", - "block.gtceu.quartzite_tungstate_ore.prospected": "Tungstate", - "block.gtceu.quartzite_uraninite_ore.prospected": "Uraninite", - "block.gtceu.quartzite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.quartzite_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.quartzite_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.quartzite_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.quartzite_zeolite_ore.prospected": "Zeolite", - "block.gtceu.rhyolite_almandine_ore.prospected": "Almandine", - "block.gtceu.rhyolite_aluminium_ore.prospected": "Aluminium", - "block.gtceu.rhyolite_alunite_ore.prospected": "Alunite", - "block.gtceu.rhyolite_amethyst_ore.prospected": "Amethyst", - "block.gtceu.rhyolite_apatite_ore.prospected": "Apatite", - "block.gtceu.rhyolite_asbestos_ore.prospected": "Asbestos", - "block.gtceu.rhyolite_barite_ore.prospected": "Barite", - "block.gtceu.rhyolite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.rhyolite_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.rhyolite_bauxite_ore.prospected": "Bauxite", - "block.gtceu.rhyolite_bentonite_ore.prospected": "Bentonite", - "block.gtceu.rhyolite_beryllium_ore.prospected": "Beryllium", - "block.gtceu.rhyolite_bismuth_ore.prospected": "Bismuth", - "block.gtceu.rhyolite_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.rhyolite_borax_ore.prospected": "Borax", - "block.gtceu.rhyolite_bornite_ore.prospected": "Bornite", - "block.gtceu.rhyolite_calcite_ore.prospected": "Calcite", - "block.gtceu.rhyolite_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.rhyolite_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.rhyolite_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.rhyolite_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.rhyolite_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.rhyolite_chromite_ore.prospected": "Chromite", - "block.gtceu.rhyolite_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.rhyolite_coal_ore.prospected": "Coal", - "block.gtceu.rhyolite_cobalt_ore.prospected": "Cobalt", - "block.gtceu.rhyolite_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.rhyolite_cooperite_ore.prospected": "Cooperite", - "block.gtceu.rhyolite_copper_ore.prospected": "Copper", - "block.gtceu.rhyolite_diamond_ore.prospected": "Diamond", - "block.gtceu.rhyolite_diatomite_ore.prospected": "Diatomite", - "block.gtceu.rhyolite_electrotine_ore.prospected": "Electrotine", - "block.gtceu.rhyolite_emerald_ore.prospected": "Emerald", - "block.gtceu.rhyolite_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.rhyolite_galena_ore.prospected": "Galena", - "block.gtceu.rhyolite_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.rhyolite_garnierite_ore.prospected": "Garnierite", - "block.gtceu.rhyolite_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.rhyolite_goethite_ore.prospected": "Goethite", - "block.gtceu.rhyolite_gold_ore.prospected": "Gold", - "block.gtceu.rhyolite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.rhyolite_graphite_ore.prospected": "Graphite", - "block.gtceu.rhyolite_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.rhyolite_grossular_ore.prospected": "Grossular", - "block.gtceu.rhyolite_gypsum_ore.prospected": "Gypsum", - "block.gtceu.rhyolite_hematite_ore.prospected": "Hematite", - "block.gtceu.rhyolite_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.rhyolite_iron_ore.prospected": "Iron", - "block.gtceu.rhyolite_kyanite_ore.prospected": "Kyanite", - "block.gtceu.rhyolite_lapis_ore.prospected": "Lapis", - "block.gtceu.rhyolite_lazurite_ore.prospected": "Lazurite", - "block.gtceu.rhyolite_lead_ore.prospected": "Lead", - "block.gtceu.rhyolite_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.rhyolite_lithium_ore.prospected": "Lithium", - "block.gtceu.rhyolite_magnesite_ore.prospected": "Magnesite", - "block.gtceu.rhyolite_magnetite_ore.prospected": "Magnetite", - "block.gtceu.rhyolite_malachite_ore.prospected": "Malachite", - "block.gtceu.rhyolite_mica_ore.prospected": "Mica", - "block.gtceu.rhyolite_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.rhyolite_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.rhyolite_monazite_ore.prospected": "Monazite", - "block.gtceu.rhyolite_naquadah_ore.prospected": "Naquadah", - "block.gtceu.rhyolite_neodymium_ore.prospected": "Neodymium", - "block.gtceu.rhyolite_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.rhyolite_nickel_ore.prospected": "Nickel", - "block.gtceu.rhyolite_oilsands_ore.prospected": "Oilsands", - "block.gtceu.rhyolite_olivine_ore.prospected": "Olivine", - "block.gtceu.rhyolite_opal_ore.prospected": "Opal", - "block.gtceu.rhyolite_palladium_ore.prospected": "Palladium", - "block.gtceu.rhyolite_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.rhyolite_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.rhyolite_platinum_ore.prospected": "Platinum", - "block.gtceu.rhyolite_plutonium_ore.prospected": "Plutonium", - "block.gtceu.rhyolite_pollucite_ore.prospected": "Pollucite", - "block.gtceu.rhyolite_powellite_ore.prospected": "Powellite", - "block.gtceu.rhyolite_pyrite_ore.prospected": "Pyrite", - "block.gtceu.rhyolite_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.rhyolite_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.rhyolite_pyrope_ore.prospected": "Pyrope", - "block.gtceu.rhyolite_quartzite_ore.prospected": "Quartzite", - "block.gtceu.rhyolite_realgar_ore.prospected": "Realgar", - "block.gtceu.rhyolite_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.rhyolite_redstone_ore.prospected": "Redstone", - "block.gtceu.rhyolite_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.rhyolite_ruby_ore.prospected": "Ruby", - "block.gtceu.rhyolite_salt_ore.prospected": "Salt", - "block.gtceu.rhyolite_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.rhyolite_sapphire_ore.prospected": "Sapphire", - "block.gtceu.rhyolite_scheelite_ore.prospected": "Scheelite", - "block.gtceu.rhyolite_silver_ore.prospected": "Silver", - "block.gtceu.rhyolite_soapstone_ore.prospected": "Soapstone", - "block.gtceu.rhyolite_sodalite_ore.prospected": "Sodalite", - "block.gtceu.rhyolite_spessartine_ore.prospected": "Spessartine", - "block.gtceu.rhyolite_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.rhyolite_spodumene_ore.prospected": "Spodumene", - "block.gtceu.rhyolite_stibnite_ore.prospected": "Stibnite", - "block.gtceu.rhyolite_sulfur_ore.prospected": "Sulfur", - "block.gtceu.rhyolite_sylvite_ore.prospected": "Sylvite", - "block.gtceu.rhyolite_talc_ore.prospected": "Talc", - "block.gtceu.rhyolite_tantalite_ore.prospected": "Tantalite", - "block.gtceu.rhyolite_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.rhyolite_thorium_ore.prospected": "Thorium", - "block.gtceu.rhyolite_tin_ore.prospected": "Tin", - "block.gtceu.rhyolite_topaz_ore.prospected": "Topaz", - "block.gtceu.rhyolite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.rhyolite_trona_ore.prospected": "Trona", - "block.gtceu.rhyolite_tungstate_ore.prospected": "Tungstate", - "block.gtceu.rhyolite_uraninite_ore.prospected": "Uraninite", - "block.gtceu.rhyolite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.rhyolite_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.rhyolite_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.rhyolite_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.rhyolite_zeolite_ore.prospected": "Zeolite", - "block.gtceu.schist_almandine_ore.prospected": "Almandine", - "block.gtceu.schist_aluminium_ore.prospected": "Aluminium", - "block.gtceu.schist_alunite_ore.prospected": "Alunite", - "block.gtceu.schist_amethyst_ore.prospected": "Amethyst", - "block.gtceu.schist_apatite_ore.prospected": "Apatite", - "block.gtceu.schist_asbestos_ore.prospected": "Asbestos", - "block.gtceu.schist_barite_ore.prospected": "Barite", - "block.gtceu.schist_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.schist_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.schist_bauxite_ore.prospected": "Bauxite", - "block.gtceu.schist_bentonite_ore.prospected": "Bentonite", - "block.gtceu.schist_beryllium_ore.prospected": "Beryllium", - "block.gtceu.schist_bismuth_ore.prospected": "Bismuth", - "block.gtceu.schist_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.schist_borax_ore.prospected": "Borax", - "block.gtceu.schist_bornite_ore.prospected": "Bornite", - "block.gtceu.schist_calcite_ore.prospected": "Calcite", - "block.gtceu.schist_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.schist_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.schist_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.schist_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.schist_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.schist_chromite_ore.prospected": "Chromite", - "block.gtceu.schist_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.schist_coal_ore.prospected": "Coal", - "block.gtceu.schist_cobalt_ore.prospected": "Cobalt", - "block.gtceu.schist_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.schist_cooperite_ore.prospected": "Cooperite", - "block.gtceu.schist_copper_ore.prospected": "Copper", - "block.gtceu.schist_diamond_ore.prospected": "Diamond", - "block.gtceu.schist_diatomite_ore.prospected": "Diatomite", - "block.gtceu.schist_electrotine_ore.prospected": "Electrotine", - "block.gtceu.schist_emerald_ore.prospected": "Emerald", - "block.gtceu.schist_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.schist_galena_ore.prospected": "Galena", - "block.gtceu.schist_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.schist_garnierite_ore.prospected": "Garnierite", - "block.gtceu.schist_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.schist_goethite_ore.prospected": "Goethite", - "block.gtceu.schist_gold_ore.prospected": "Gold", - "block.gtceu.schist_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.schist_graphite_ore.prospected": "Graphite", - "block.gtceu.schist_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.schist_grossular_ore.prospected": "Grossular", - "block.gtceu.schist_gypsum_ore.prospected": "Gypsum", - "block.gtceu.schist_hematite_ore.prospected": "Hematite", - "block.gtceu.schist_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.schist_iron_ore.prospected": "Iron", - "block.gtceu.schist_kyanite_ore.prospected": "Kyanite", - "block.gtceu.schist_lapis_ore.prospected": "Lapis", - "block.gtceu.schist_lazurite_ore.prospected": "Lazurite", - "block.gtceu.schist_lead_ore.prospected": "Lead", - "block.gtceu.schist_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.schist_lithium_ore.prospected": "Lithium", - "block.gtceu.schist_magnesite_ore.prospected": "Magnesite", - "block.gtceu.schist_magnetite_ore.prospected": "Magnetite", - "block.gtceu.schist_malachite_ore.prospected": "Malachite", - "block.gtceu.schist_mica_ore.prospected": "Mica", - "block.gtceu.schist_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.schist_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.schist_monazite_ore.prospected": "Monazite", - "block.gtceu.schist_naquadah_ore.prospected": "Naquadah", - "block.gtceu.schist_neodymium_ore.prospected": "Neodymium", - "block.gtceu.schist_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.schist_nickel_ore.prospected": "Nickel", - "block.gtceu.schist_oilsands_ore.prospected": "Oilsands", - "block.gtceu.schist_olivine_ore.prospected": "Olivine", - "block.gtceu.schist_opal_ore.prospected": "Opal", - "block.gtceu.schist_palladium_ore.prospected": "Palladium", - "block.gtceu.schist_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.schist_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.schist_platinum_ore.prospected": "Platinum", - "block.gtceu.schist_plutonium_ore.prospected": "Plutonium", - "block.gtceu.schist_pollucite_ore.prospected": "Pollucite", - "block.gtceu.schist_powellite_ore.prospected": "Powellite", - "block.gtceu.schist_pyrite_ore.prospected": "Pyrite", - "block.gtceu.schist_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.schist_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.schist_pyrope_ore.prospected": "Pyrope", - "block.gtceu.schist_quartzite_ore.prospected": "Quartzite", - "block.gtceu.schist_realgar_ore.prospected": "Realgar", - "block.gtceu.schist_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.schist_redstone_ore.prospected": "Redstone", - "block.gtceu.schist_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.schist_ruby_ore.prospected": "Ruby", - "block.gtceu.schist_salt_ore.prospected": "Salt", - "block.gtceu.schist_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.schist_sapphire_ore.prospected": "Sapphire", - "block.gtceu.schist_scheelite_ore.prospected": "Scheelite", - "block.gtceu.schist_silver_ore.prospected": "Silver", - "block.gtceu.schist_soapstone_ore.prospected": "Soapstone", - "block.gtceu.schist_sodalite_ore.prospected": "Sodalite", - "block.gtceu.schist_spessartine_ore.prospected": "Spessartine", - "block.gtceu.schist_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.schist_spodumene_ore.prospected": "Spodumene", - "block.gtceu.schist_stibnite_ore.prospected": "Stibnite", - "block.gtceu.schist_sulfur_ore.prospected": "Sulfur", - "block.gtceu.schist_sylvite_ore.prospected": "Sylvite", - "block.gtceu.schist_talc_ore.prospected": "Talc", - "block.gtceu.schist_tantalite_ore.prospected": "Tantalite", - "block.gtceu.schist_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.schist_thorium_ore.prospected": "Thorium", - "block.gtceu.schist_tin_ore.prospected": "Tin", - "block.gtceu.schist_topaz_ore.prospected": "Topaz", - "block.gtceu.schist_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.schist_trona_ore.prospected": "Trona", - "block.gtceu.schist_tungstate_ore.prospected": "Tungstate", - "block.gtceu.schist_uraninite_ore.prospected": "Uraninite", - "block.gtceu.schist_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.schist_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.schist_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.schist_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.schist_zeolite_ore.prospected": "Zeolite", - "block.gtceu.shale_almandine_ore.prospected": "Almandine", - "block.gtceu.shale_aluminium_ore.prospected": "Aluminium", - "block.gtceu.shale_alunite_ore.prospected": "Alunite", - "block.gtceu.shale_amethyst_ore.prospected": "Amethyst", - "block.gtceu.shale_apatite_ore.prospected": "Apatite", - "block.gtceu.shale_asbestos_ore.prospected": "Asbestos", - "block.gtceu.shale_barite_ore.prospected": "Barite", - "block.gtceu.shale_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.shale_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.shale_bauxite_ore.prospected": "Bauxite", - "block.gtceu.shale_bentonite_ore.prospected": "Bentonite", - "block.gtceu.shale_beryllium_ore.prospected": "Beryllium", - "block.gtceu.shale_bismuth_ore.prospected": "Bismuth", - "block.gtceu.shale_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.shale_borax_ore.prospected": "Borax", - "block.gtceu.shale_bornite_ore.prospected": "Bornite", - "block.gtceu.shale_calcite_ore.prospected": "Calcite", - "block.gtceu.shale_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.shale_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.shale_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.shale_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.shale_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.shale_chromite_ore.prospected": "Chromite", - "block.gtceu.shale_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.shale_coal_ore.prospected": "Coal", - "block.gtceu.shale_cobalt_ore.prospected": "Cobalt", - "block.gtceu.shale_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.shale_cooperite_ore.prospected": "Cooperite", - "block.gtceu.shale_copper_ore.prospected": "Copper", - "block.gtceu.shale_diamond_ore.prospected": "Diamond", - "block.gtceu.shale_diatomite_ore.prospected": "Diatomite", - "block.gtceu.shale_electrotine_ore.prospected": "Electrotine", - "block.gtceu.shale_emerald_ore.prospected": "Emerald", - "block.gtceu.shale_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.shale_galena_ore.prospected": "Galena", - "block.gtceu.shale_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.shale_garnierite_ore.prospected": "Garnierite", - "block.gtceu.shale_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.shale_goethite_ore.prospected": "Goethite", - "block.gtceu.shale_gold_ore.prospected": "Gold", - "block.gtceu.shale_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.shale_graphite_ore.prospected": "Graphite", - "block.gtceu.shale_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.shale_grossular_ore.prospected": "Grossular", - "block.gtceu.shale_gypsum_ore.prospected": "Gypsum", - "block.gtceu.shale_hematite_ore.prospected": "Hematite", - "block.gtceu.shale_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.shale_iron_ore.prospected": "Iron", - "block.gtceu.shale_kyanite_ore.prospected": "Kyanite", - "block.gtceu.shale_lapis_ore.prospected": "Lapis", - "block.gtceu.shale_lazurite_ore.prospected": "Lazurite", - "block.gtceu.shale_lead_ore.prospected": "Lead", - "block.gtceu.shale_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.shale_lithium_ore.prospected": "Lithium", - "block.gtceu.shale_magnesite_ore.prospected": "Magnesite", - "block.gtceu.shale_magnetite_ore.prospected": "Magnetite", - "block.gtceu.shale_malachite_ore.prospected": "Malachite", - "block.gtceu.shale_mica_ore.prospected": "Mica", - "block.gtceu.shale_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.shale_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.shale_monazite_ore.prospected": "Monazite", - "block.gtceu.shale_naquadah_ore.prospected": "Naquadah", - "block.gtceu.shale_neodymium_ore.prospected": "Neodymium", - "block.gtceu.shale_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.shale_nickel_ore.prospected": "Nickel", - "block.gtceu.shale_oilsands_ore.prospected": "Oilsands", - "block.gtceu.shale_olivine_ore.prospected": "Olivine", - "block.gtceu.shale_opal_ore.prospected": "Opal", - "block.gtceu.shale_palladium_ore.prospected": "Palladium", - "block.gtceu.shale_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.shale_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.shale_platinum_ore.prospected": "Platinum", - "block.gtceu.shale_plutonium_ore.prospected": "Plutonium", - "block.gtceu.shale_pollucite_ore.prospected": "Pollucite", - "block.gtceu.shale_powellite_ore.prospected": "Powellite", - "block.gtceu.shale_pyrite_ore.prospected": "Pyrite", - "block.gtceu.shale_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.shale_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.shale_pyrope_ore.prospected": "Pyrope", - "block.gtceu.shale_quartzite_ore.prospected": "Quartzite", - "block.gtceu.shale_realgar_ore.prospected": "Realgar", - "block.gtceu.shale_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.shale_redstone_ore.prospected": "Redstone", - "block.gtceu.shale_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.shale_ruby_ore.prospected": "Ruby", - "block.gtceu.shale_salt_ore.prospected": "Salt", - "block.gtceu.shale_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.shale_sapphire_ore.prospected": "Sapphire", - "block.gtceu.shale_scheelite_ore.prospected": "Scheelite", - "block.gtceu.shale_silver_ore.prospected": "Silver", - "block.gtceu.shale_soapstone_ore.prospected": "Soapstone", - "block.gtceu.shale_sodalite_ore.prospected": "Sodalite", - "block.gtceu.shale_spessartine_ore.prospected": "Spessartine", - "block.gtceu.shale_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.shale_spodumene_ore.prospected": "Spodumene", - "block.gtceu.shale_stibnite_ore.prospected": "Stibnite", - "block.gtceu.shale_sulfur_ore.prospected": "Sulfur", - "block.gtceu.shale_sylvite_ore.prospected": "Sylvite", - "block.gtceu.shale_talc_ore.prospected": "Talc", - "block.gtceu.shale_tantalite_ore.prospected": "Tantalite", - "block.gtceu.shale_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.shale_thorium_ore.prospected": "Thorium", - "block.gtceu.shale_tin_ore.prospected": "Tin", - "block.gtceu.shale_topaz_ore.prospected": "Topaz", - "block.gtceu.shale_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.shale_trona_ore.prospected": "Trona", - "block.gtceu.shale_tungstate_ore.prospected": "Tungstate", - "block.gtceu.shale_uraninite_ore.prospected": "Uraninite", - "block.gtceu.shale_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.shale_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.shale_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.shale_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.shale_zeolite_ore.prospected": "Zeolite", - "block.gtceu.slate_almandine_ore.prospected": "Almandine", - "block.gtceu.slate_aluminium_ore.prospected": "Aluminium", - "block.gtceu.slate_alunite_ore.prospected": "Alunite", - "block.gtceu.slate_amethyst_ore.prospected": "Amethyst", - "block.gtceu.slate_apatite_ore.prospected": "Apatite", - "block.gtceu.slate_asbestos_ore.prospected": "Asbestos", - "block.gtceu.slate_barite_ore.prospected": "Barite", - "block.gtceu.slate_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.slate_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.slate_bauxite_ore.prospected": "Bauxite", - "block.gtceu.slate_bentonite_ore.prospected": "Bentonite", - "block.gtceu.slate_beryllium_ore.prospected": "Beryllium", - "block.gtceu.slate_bismuth_ore.prospected": "Bismuth", - "block.gtceu.slate_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.slate_borax_ore.prospected": "Borax", - "block.gtceu.slate_bornite_ore.prospected": "Bornite", - "block.gtceu.slate_calcite_ore.prospected": "Calcite", - "block.gtceu.slate_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.slate_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.slate_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.slate_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.slate_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.slate_chromite_ore.prospected": "Chromite", - "block.gtceu.slate_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.slate_coal_ore.prospected": "Coal", - "block.gtceu.slate_cobalt_ore.prospected": "Cobalt", - "block.gtceu.slate_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.slate_cooperite_ore.prospected": "Cooperite", - "block.gtceu.slate_copper_ore.prospected": "Copper", - "block.gtceu.slate_diamond_ore.prospected": "Diamond", - "block.gtceu.slate_diatomite_ore.prospected": "Diatomite", - "block.gtceu.slate_electrotine_ore.prospected": "Electrotine", - "block.gtceu.slate_emerald_ore.prospected": "Emerald", - "block.gtceu.slate_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.slate_galena_ore.prospected": "Galena", - "block.gtceu.slate_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.slate_garnierite_ore.prospected": "Garnierite", - "block.gtceu.slate_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.slate_goethite_ore.prospected": "Goethite", - "block.gtceu.slate_gold_ore.prospected": "Gold", - "block.gtceu.slate_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.slate_graphite_ore.prospected": "Graphite", - "block.gtceu.slate_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.slate_grossular_ore.prospected": "Grossular", - "block.gtceu.slate_gypsum_ore.prospected": "Gypsum", - "block.gtceu.slate_hematite_ore.prospected": "Hematite", - "block.gtceu.slate_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.slate_iron_ore.prospected": "Iron", - "block.gtceu.slate_kyanite_ore.prospected": "Kyanite", - "block.gtceu.slate_lapis_ore.prospected": "Lapis", - "block.gtceu.slate_lazurite_ore.prospected": "Lazurite", - "block.gtceu.slate_lead_ore.prospected": "Lead", - "block.gtceu.slate_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.slate_lithium_ore.prospected": "Lithium", - "block.gtceu.slate_magnesite_ore.prospected": "Magnesite", - "block.gtceu.slate_magnetite_ore.prospected": "Magnetite", - "block.gtceu.slate_malachite_ore.prospected": "Malachite", - "block.gtceu.slate_mica_ore.prospected": "Mica", - "block.gtceu.slate_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.slate_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.slate_monazite_ore.prospected": "Monazite", - "block.gtceu.slate_naquadah_ore.prospected": "Naquadah", - "block.gtceu.slate_neodymium_ore.prospected": "Neodymium", - "block.gtceu.slate_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.slate_nickel_ore.prospected": "Nickel", - "block.gtceu.slate_oilsands_ore.prospected": "Oilsands", - "block.gtceu.slate_olivine_ore.prospected": "Olivine", - "block.gtceu.slate_opal_ore.prospected": "Opal", - "block.gtceu.slate_palladium_ore.prospected": "Palladium", - "block.gtceu.slate_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.slate_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.slate_platinum_ore.prospected": "Platinum", - "block.gtceu.slate_plutonium_ore.prospected": "Plutonium", - "block.gtceu.slate_pollucite_ore.prospected": "Pollucite", - "block.gtceu.slate_powellite_ore.prospected": "Powellite", - "block.gtceu.slate_pyrite_ore.prospected": "Pyrite", - "block.gtceu.slate_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.slate_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.slate_pyrope_ore.prospected": "Pyrope", - "block.gtceu.slate_quartzite_ore.prospected": "Quartzite", - "block.gtceu.slate_realgar_ore.prospected": "Realgar", - "block.gtceu.slate_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.slate_redstone_ore.prospected": "Redstone", - "block.gtceu.slate_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.slate_ruby_ore.prospected": "Ruby", - "block.gtceu.slate_salt_ore.prospected": "Salt", - "block.gtceu.slate_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.slate_sapphire_ore.prospected": "Sapphire", - "block.gtceu.slate_scheelite_ore.prospected": "Scheelite", - "block.gtceu.slate_silver_ore.prospected": "Silver", - "block.gtceu.slate_soapstone_ore.prospected": "Soapstone", - "block.gtceu.slate_sodalite_ore.prospected": "Sodalite", - "block.gtceu.slate_spessartine_ore.prospected": "Spessartine", - "block.gtceu.slate_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.slate_spodumene_ore.prospected": "Spodumene", - "block.gtceu.slate_stibnite_ore.prospected": "Stibnite", - "block.gtceu.slate_sulfur_ore.prospected": "Sulfur", - "block.gtceu.slate_sylvite_ore.prospected": "Sylvite", - "block.gtceu.slate_talc_ore.prospected": "Talc", - "block.gtceu.slate_tantalite_ore.prospected": "Tantalite", - "block.gtceu.slate_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.slate_thorium_ore.prospected": "Thorium", - "block.gtceu.slate_tin_ore.prospected": "Tin", - "block.gtceu.slate_topaz_ore.prospected": "Topaz", - "block.gtceu.slate_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.slate_trona_ore.prospected": "Trona", - "block.gtceu.slate_tungstate_ore.prospected": "Tungstate", - "block.gtceu.slate_uraninite_ore.prospected": "Uraninite", - "block.gtceu.slate_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.slate_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.slate_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.slate_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.slate_zeolite_ore.prospected": "Zeolite", - "block.gtceu.deepslate_almandine_ore.prospected": "Almandine", - "block.gtceu.deepslate_aluminium_ore.prospected": "Aluminium", - "block.gtceu.deepslate_alunite_ore.prospected": "Alunite", - "block.gtceu.deepslate_amethyst_ore.prospected": "Amethyst", - "block.gtceu.deepslate_apatite_ore.prospected": "Apatite", - "block.gtceu.deepslate_asbestos_ore.prospected": "Asbestos", - "block.gtceu.deepslate_barite_ore.prospected": "Barite", - "block.gtceu.deepslate_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.deepslate_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.deepslate_bauxite_ore.prospected": "Bauxite", - "block.gtceu.deepslate_bentonite_ore.prospected": "Bentonite", - "block.gtceu.deepslate_beryllium_ore.prospected": "Beryllium", - "block.gtceu.deepslate_bismuth_ore.prospected": "Bismuth", - "block.gtceu.deepslate_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.deepslate_borax_ore.prospected": "Borax", - "block.gtceu.deepslate_bornite_ore.prospected": "Bornite", - "block.gtceu.deepslate_calcite_ore.prospected": "Calcite", - "block.gtceu.deepslate_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.deepslate_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.deepslate_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.deepslate_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.deepslate_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.deepslate_chromite_ore.prospected": "Chromite", - "block.gtceu.deepslate_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.deepslate_coal_ore.prospected": "Coal", - "block.gtceu.deepslate_cobalt_ore.prospected": "Cobalt", - "block.gtceu.deepslate_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.deepslate_cooperite_ore.prospected": "Cooperite", - "block.gtceu.deepslate_copper_ore.prospected": "Copper", - "block.gtceu.deepslate_diamond_ore.prospected": "Diamond", - "block.gtceu.deepslate_diatomite_ore.prospected": "Diatomite", - "block.gtceu.deepslate_electrotine_ore.prospected": "Electrotine", - "block.gtceu.deepslate_emerald_ore.prospected": "Emerald", - "block.gtceu.deepslate_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.deepslate_galena_ore.prospected": "Galena", - "block.gtceu.deepslate_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.deepslate_garnierite_ore.prospected": "Garnierite", - "block.gtceu.deepslate_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.deepslate_goethite_ore.prospected": "Goethite", - "block.gtceu.deepslate_gold_ore.prospected": "Gold", - "block.gtceu.deepslate_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.deepslate_graphite_ore.prospected": "Graphite", - "block.gtceu.deepslate_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.deepslate_grossular_ore.prospected": "Grossular", - "block.gtceu.deepslate_gypsum_ore.prospected": "Gypsum", - "block.gtceu.deepslate_hematite_ore.prospected": "Hematite", - "block.gtceu.deepslate_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.deepslate_iron_ore.prospected": "Iron", - "block.gtceu.deepslate_kyanite_ore.prospected": "Kyanite", - "block.gtceu.deepslate_lapis_ore.prospected": "Lapis", - "block.gtceu.deepslate_lazurite_ore.prospected": "Lazurite", - "block.gtceu.deepslate_lead_ore.prospected": "Lead", - "block.gtceu.deepslate_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.deepslate_lithium_ore.prospected": "Lithium", - "block.gtceu.deepslate_magnesite_ore.prospected": "Magnesite", - "block.gtceu.deepslate_magnetite_ore.prospected": "Magnetite", - "block.gtceu.deepslate_malachite_ore.prospected": "Malachite", - "block.gtceu.deepslate_mica_ore.prospected": "Mica", - "block.gtceu.deepslate_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.deepslate_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.deepslate_monazite_ore.prospected": "Monazite", - "block.gtceu.deepslate_naquadah_ore.prospected": "Naquadah", - "block.gtceu.deepslate_neodymium_ore.prospected": "Neodymium", - "block.gtceu.deepslate_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.deepslate_nickel_ore.prospected": "Nickel", - "block.gtceu.deepslate_oilsands_ore.prospected": "Oilsands", - "block.gtceu.deepslate_olivine_ore.prospected": "Olivine", - "block.gtceu.deepslate_opal_ore.prospected": "Opal", - "block.gtceu.deepslate_palladium_ore.prospected": "Palladium", - "block.gtceu.deepslate_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.deepslate_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.deepslate_platinum_ore.prospected": "Platinum", - "block.gtceu.deepslate_plutonium_ore.prospected": "Plutonium", - "block.gtceu.deepslate_pollucite_ore.prospected": "Pollucite", - "block.gtceu.deepslate_powellite_ore.prospected": "Powellite", - "block.gtceu.deepslate_pyrite_ore.prospected": "Pyrite", - "block.gtceu.deepslate_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.deepslate_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.deepslate_pyrope_ore.prospected": "Pyrope", - "block.gtceu.deepslate_quartzite_ore.prospected": "Quartzite", - "block.gtceu.deepslate_realgar_ore.prospected": "Realgar", - "block.gtceu.deepslate_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.deepslate_redstone_ore.prospected": "Redstone", - "block.gtceu.deepslate_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.deepslate_ruby_ore.prospected": "Ruby", - "block.gtceu.deepslate_salt_ore.prospected": "Salt", - "block.gtceu.deepslate_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.deepslate_sapphire_ore.prospected": "Sapphire", - "block.gtceu.deepslate_scheelite_ore.prospected": "Scheelite", - "block.gtceu.deepslate_silver_ore.prospected": "Silver", - "block.gtceu.deepslate_soapstone_ore.prospected": "Soapstone", - "block.gtceu.deepslate_sodalite_ore.prospected": "Sodalite", - "block.gtceu.deepslate_spessartine_ore.prospected": "Spessartine", - "block.gtceu.deepslate_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.deepslate_spodumene_ore.prospected": "Spodumene", - "block.gtceu.deepslate_stibnite_ore.prospected": "Stibnite", - "block.gtceu.deepslate_sulfur_ore.prospected": "Sulfur", - "block.gtceu.deepslate_sylvite_ore.prospected": "Sylvite", - "block.gtceu.deepslate_talc_ore.prospected": "Talc", - "block.gtceu.deepslate_tantalite_ore.prospected": "Tantalite", - "block.gtceu.deepslate_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.deepslate_thorium_ore.prospected": "Thorium", - "block.gtceu.deepslate_tin_ore.prospected": "Tin", - "block.gtceu.deepslate_topaz_ore.prospected": "Topaz", - "block.gtceu.deepslate_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.deepslate_trona_ore.prospected": "Trona", - "block.gtceu.deepslate_tungstate_ore.prospected": "Tungstate", - "block.gtceu.deepslate_uraninite_ore.prospected": "Uraninite", - "block.gtceu.deepslate_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.deepslate_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.deepslate_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.deepslate_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.deepslate_zeolite_ore.prospected": "Zeolite", - "block.gtceu.pyroxenite_almandine_ore.prospected": "Almandine", - "block.gtceu.pyroxenite_aluminium_ore.prospected": "Aluminium", - "block.gtceu.pyroxenite_alunite_ore.prospected": "Alunite", - "block.gtceu.pyroxenite_amethyst_ore.prospected": "Amethyst", - "block.gtceu.pyroxenite_apatite_ore.prospected": "Apatite", - "block.gtceu.pyroxenite_asbestos_ore.prospected": "Asbestos", - "block.gtceu.pyroxenite_barite_ore.prospected": "Barite", - "block.gtceu.pyroxenite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.pyroxenite_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.pyroxenite_bauxite_ore.prospected": "Bauxite", - "block.gtceu.pyroxenite_bentonite_ore.prospected": "Bentonite", - "block.gtceu.pyroxenite_beryllium_ore.prospected": "Beryllium", - "block.gtceu.pyroxenite_bismuth_ore.prospected": "Bismuth", - "block.gtceu.pyroxenite_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.pyroxenite_borax_ore.prospected": "Borax", - "block.gtceu.pyroxenite_bornite_ore.prospected": "Bornite", - "block.gtceu.pyroxenite_calcite_ore.prospected": "Calcite", - "block.gtceu.pyroxenite_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.pyroxenite_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.pyroxenite_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.pyroxenite_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.pyroxenite_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.pyroxenite_chromite_ore.prospected": "Chromite", - "block.gtceu.pyroxenite_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.pyroxenite_coal_ore.prospected": "Coal", - "block.gtceu.pyroxenite_cobalt_ore.prospected": "Cobalt", - "block.gtceu.pyroxenite_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.pyroxenite_cooperite_ore.prospected": "Cooperite", - "block.gtceu.pyroxenite_copper_ore.prospected": "Copper", - "block.gtceu.pyroxenite_diamond_ore.prospected": "Diamond", - "block.gtceu.pyroxenite_diatomite_ore.prospected": "Diatomite", - "block.gtceu.pyroxenite_electrotine_ore.prospected": "Electrotine", - "block.gtceu.pyroxenite_emerald_ore.prospected": "Emerald", - "block.gtceu.pyroxenite_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.pyroxenite_galena_ore.prospected": "Galena", - "block.gtceu.pyroxenite_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.pyroxenite_garnierite_ore.prospected": "Garnierite", - "block.gtceu.pyroxenite_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.pyroxenite_goethite_ore.prospected": "Goethite", - "block.gtceu.pyroxenite_gold_ore.prospected": "Gold", - "block.gtceu.pyroxenite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.pyroxenite_graphite_ore.prospected": "Graphite", - "block.gtceu.pyroxenite_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.pyroxenite_grossular_ore.prospected": "Grossular", - "block.gtceu.pyroxenite_gypsum_ore.prospected": "Gypsum", - "block.gtceu.pyroxenite_hematite_ore.prospected": "Hematite", - "block.gtceu.pyroxenite_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.pyroxenite_iron_ore.prospected": "Iron", - "block.gtceu.pyroxenite_kyanite_ore.prospected": "Kyanite", - "block.gtceu.pyroxenite_lapis_ore.prospected": "Lapis", - "block.gtceu.pyroxenite_lazurite_ore.prospected": "Lazurite", - "block.gtceu.pyroxenite_lead_ore.prospected": "Lead", - "block.gtceu.pyroxenite_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.pyroxenite_lithium_ore.prospected": "Lithium", - "block.gtceu.pyroxenite_magnesite_ore.prospected": "Magnesite", - "block.gtceu.pyroxenite_magnetite_ore.prospected": "Magnetite", - "block.gtceu.pyroxenite_malachite_ore.prospected": "Malachite", - "block.gtceu.pyroxenite_mica_ore.prospected": "Mica", - "block.gtceu.pyroxenite_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.pyroxenite_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.pyroxenite_monazite_ore.prospected": "Monazite", - "block.gtceu.pyroxenite_naquadah_ore.prospected": "Naquadah", - "block.gtceu.pyroxenite_neodymium_ore.prospected": "Neodymium", - "block.gtceu.pyroxenite_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.pyroxenite_nickel_ore.prospected": "Nickel", - "block.gtceu.pyroxenite_oilsands_ore.prospected": "Oilsands", - "block.gtceu.pyroxenite_olivine_ore.prospected": "Olivine", - "block.gtceu.pyroxenite_opal_ore.prospected": "Opal", - "block.gtceu.pyroxenite_palladium_ore.prospected": "Palladium", - "block.gtceu.pyroxenite_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.pyroxenite_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.pyroxenite_platinum_ore.prospected": "Platinum", - "block.gtceu.pyroxenite_plutonium_ore.prospected": "Plutonium", - "block.gtceu.pyroxenite_pollucite_ore.prospected": "Pollucite", - "block.gtceu.pyroxenite_powellite_ore.prospected": "Powellite", - "block.gtceu.pyroxenite_pyrite_ore.prospected": "Pyrite", - "block.gtceu.pyroxenite_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.pyroxenite_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.pyroxenite_pyrope_ore.prospected": "Pyrope", - "block.gtceu.pyroxenite_quartzite_ore.prospected": "Quartzite", - "block.gtceu.pyroxenite_realgar_ore.prospected": "Realgar", - "block.gtceu.pyroxenite_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.pyroxenite_redstone_ore.prospected": "Redstone", - "block.gtceu.pyroxenite_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.pyroxenite_ruby_ore.prospected": "Ruby", - "block.gtceu.pyroxenite_salt_ore.prospected": "Salt", - "block.gtceu.pyroxenite_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.pyroxenite_sapphire_ore.prospected": "Sapphire", - "block.gtceu.pyroxenite_scheelite_ore.prospected": "Scheelite", - "block.gtceu.pyroxenite_silver_ore.prospected": "Silver", - "block.gtceu.pyroxenite_soapstone_ore.prospected": "Soapstone", - "block.gtceu.pyroxenite_sodalite_ore.prospected": "Sodalite", - "block.gtceu.pyroxenite_spessartine_ore.prospected": "Spessartine", - "block.gtceu.pyroxenite_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.pyroxenite_spodumene_ore.prospected": "Spodumene", - "block.gtceu.pyroxenite_stibnite_ore.prospected": "Stibnite", - "block.gtceu.pyroxenite_sulfur_ore.prospected": "Sulfur", - "block.gtceu.pyroxenite_sylvite_ore.prospected": "Sylvite", - "block.gtceu.pyroxenite_talc_ore.prospected": "Talc", - "block.gtceu.pyroxenite_tantalite_ore.prospected": "Tantalite", - "block.gtceu.pyroxenite_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.pyroxenite_thorium_ore.prospected": "Thorium", - "block.gtceu.pyroxenite_tin_ore.prospected": "Tin", - "block.gtceu.pyroxenite_topaz_ore.prospected": "Topaz", - "block.gtceu.pyroxenite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.pyroxenite_trona_ore.prospected": "Trona", - "block.gtceu.pyroxenite_tungstate_ore.prospected": "Tungstate", - "block.gtceu.pyroxenite_uraninite_ore.prospected": "Uraninite", - "block.gtceu.pyroxenite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.pyroxenite_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.pyroxenite_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.pyroxenite_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.pyroxenite_zeolite_ore.prospected": "Zeolite", - "block.gtceu.dripstone_almandine_ore.prospected": "Almandine", - "block.gtceu.dripstone_aluminium_ore.prospected": "Aluminium", - "block.gtceu.dripstone_alunite_ore.prospected": "Alunite", - "block.gtceu.dripstone_amethyst_ore.prospected": "Amethyst", - "block.gtceu.dripstone_apatite_ore.prospected": "Apatite", - "block.gtceu.dripstone_asbestos_ore.prospected": "Asbestos", - "block.gtceu.dripstone_barite_ore.prospected": "Barite", - "block.gtceu.dripstone_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.dripstone_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.dripstone_bauxite_ore.prospected": "Bauxite", - "block.gtceu.dripstone_bentonite_ore.prospected": "Bentonite", - "block.gtceu.dripstone_beryllium_ore.prospected": "Beryllium", - "block.gtceu.dripstone_bismuth_ore.prospected": "Bismuth", - "block.gtceu.dripstone_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.dripstone_borax_ore.prospected": "Borax", - "block.gtceu.dripstone_bornite_ore.prospected": "Bornite", - "block.gtceu.dripstone_calcite_ore.prospected": "Calcite", - "block.gtceu.dripstone_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.dripstone_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.dripstone_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.dripstone_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.dripstone_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.dripstone_chromite_ore.prospected": "Chromite", - "block.gtceu.dripstone_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.dripstone_coal_ore.prospected": "Coal", - "block.gtceu.dripstone_cobalt_ore.prospected": "Cobalt", - "block.gtceu.dripstone_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.dripstone_cooperite_ore.prospected": "Cooperite", - "block.gtceu.dripstone_copper_ore.prospected": "Copper", - "block.gtceu.dripstone_diamond_ore.prospected": "Diamond", - "block.gtceu.dripstone_diatomite_ore.prospected": "Diatomite", - "block.gtceu.dripstone_electrotine_ore.prospected": "Electrotine", - "block.gtceu.dripstone_emerald_ore.prospected": "Emerald", - "block.gtceu.dripstone_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.dripstone_galena_ore.prospected": "Galena", - "block.gtceu.dripstone_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.dripstone_garnierite_ore.prospected": "Garnierite", - "block.gtceu.dripstone_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.dripstone_goethite_ore.prospected": "Goethite", - "block.gtceu.dripstone_gold_ore.prospected": "Gold", - "block.gtceu.dripstone_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.dripstone_graphite_ore.prospected": "Graphite", - "block.gtceu.dripstone_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.dripstone_grossular_ore.prospected": "Grossular", - "block.gtceu.dripstone_gypsum_ore.prospected": "Gypsum", - "block.gtceu.dripstone_hematite_ore.prospected": "Hematite", - "block.gtceu.dripstone_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.dripstone_iron_ore.prospected": "Iron", - "block.gtceu.dripstone_kyanite_ore.prospected": "Kyanite", - "block.gtceu.dripstone_lapis_ore.prospected": "Lapis", - "block.gtceu.dripstone_lazurite_ore.prospected": "Lazurite", - "block.gtceu.dripstone_lead_ore.prospected": "Lead", - "block.gtceu.dripstone_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.dripstone_lithium_ore.prospected": "Lithium", - "block.gtceu.dripstone_magnesite_ore.prospected": "Magnesite", - "block.gtceu.dripstone_magnetite_ore.prospected": "Magnetite", - "block.gtceu.dripstone_malachite_ore.prospected": "Malachite", - "block.gtceu.dripstone_mica_ore.prospected": "Mica", - "block.gtceu.dripstone_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.dripstone_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.dripstone_monazite_ore.prospected": "Monazite", - "block.gtceu.dripstone_naquadah_ore.prospected": "Naquadah", - "block.gtceu.dripstone_neodymium_ore.prospected": "Neodymium", - "block.gtceu.dripstone_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.dripstone_nickel_ore.prospected": "Nickel", - "block.gtceu.dripstone_oilsands_ore.prospected": "Oilsands", - "block.gtceu.dripstone_olivine_ore.prospected": "Olivine", - "block.gtceu.dripstone_opal_ore.prospected": "Opal", - "block.gtceu.dripstone_palladium_ore.prospected": "Palladium", - "block.gtceu.dripstone_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.dripstone_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.dripstone_platinum_ore.prospected": "Platinum", - "block.gtceu.dripstone_plutonium_ore.prospected": "Plutonium", - "block.gtceu.dripstone_pollucite_ore.prospected": "Pollucite", - "block.gtceu.dripstone_powellite_ore.prospected": "Powellite", - "block.gtceu.dripstone_pyrite_ore.prospected": "Pyrite", - "block.gtceu.dripstone_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.dripstone_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.dripstone_pyrope_ore.prospected": "Pyrope", - "block.gtceu.dripstone_quartzite_ore.prospected": "Quartzite", - "block.gtceu.dripstone_realgar_ore.prospected": "Realgar", - "block.gtceu.dripstone_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.dripstone_redstone_ore.prospected": "Redstone", - "block.gtceu.dripstone_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.dripstone_ruby_ore.prospected": "Ruby", - "block.gtceu.dripstone_salt_ore.prospected": "Salt", - "block.gtceu.dripstone_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.dripstone_sapphire_ore.prospected": "Sapphire", - "block.gtceu.dripstone_scheelite_ore.prospected": "Scheelite", - "block.gtceu.dripstone_silver_ore.prospected": "Silver", - "block.gtceu.dripstone_soapstone_ore.prospected": "Soapstone", - "block.gtceu.dripstone_sodalite_ore.prospected": "Sodalite", - "block.gtceu.dripstone_spessartine_ore.prospected": "Spessartine", - "block.gtceu.dripstone_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.dripstone_spodumene_ore.prospected": "Spodumene", - "block.gtceu.dripstone_stibnite_ore.prospected": "Stibnite", - "block.gtceu.dripstone_sulfur_ore.prospected": "Sulfur", - "block.gtceu.dripstone_sylvite_ore.prospected": "Sylvite", - "block.gtceu.dripstone_talc_ore.prospected": "Talc", - "block.gtceu.dripstone_tantalite_ore.prospected": "Tantalite", - "block.gtceu.dripstone_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.dripstone_thorium_ore.prospected": "Thorium", - "block.gtceu.dripstone_tin_ore.prospected": "Tin", - "block.gtceu.dripstone_topaz_ore.prospected": "Topaz", - "block.gtceu.dripstone_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.dripstone_trona_ore.prospected": "Trona", - "block.gtceu.dripstone_tungstate_ore.prospected": "Tungstate", - "block.gtceu.dripstone_uraninite_ore.prospected": "Uraninite", - "block.gtceu.dripstone_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.dripstone_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.dripstone_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.dripstone_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.dripstone_zeolite_ore.prospected": "Zeolite", - "fluid.tfc.salt_water": "Sea Water", - "item.tfc.bucket.salt_water": "Sea Water Bucket", - "item.tfc.powder.saltpeter": "Saltpeter Powder", - "item.tfc.powder.sulfur": "Sulfur Powder", - "tfc.jei.raw_hide_knapping": "Raw Hide Knapping", - "metal.tfg.redstone": "Redstone", - "metal.tfg.red_alloy": "Red Alloy", - "metal.tfg.tin_alloy": "Tin Alloy", - "trim_material.tfc.almandine_tfc": "Almandine", - "trim_material.tfc.andradite_tfc": "Andradite", - "trim_material.tfc.blue_topaz_tfc": "Blue Topaz", - "trim_material.tfc.cinnabar_tfc": "Cinnabar", - "trim_material.tfc.coal_tfc": "Coal", - "trim_material.tfc.diamond_tfc": "Diamond", - "trim_material.tfc.emerald_tfc": "Emerald", - "trim_material.tfc.green_sapphire_tfc": "Green Sapphire", - "trim_material.tfc.grossular_tfc": "Grossular", - "trim_material.tfc.rutile_tfc": "Rutile", - "trim_material.tfc.lazurite_tfc": "Lazurite", - "trim_material.tfc.pyrope_tfc": "Pyrope", - "trim_material.tfc.rock_salt_tfc": "Rock Salt", - "trim_material.tfc.ruby_tfc": "Ruby", - "trim_material.tfc.salt_tfc": "salt", - "trim_material.tfc.sapphire_tfc": "Sapphire", - "trim_material.tfc.sodalite_tfc": "Sodalite", - "trim_material.tfc.coke_tfc": "Coke", - "trim_material.tfc.spessartine_tfc": "Spessartine", - "trim_material.tfc.topaz_tfc": "Topaz", - "trim_material.tfc.uvarovite_tfc": "Uvarovite", - "trim_material.tfc.nether_quartz_tfc": "Nether Quartz", - "trim_material.tfc.certus_quartz_tfc": "Certus Quartz", - "trim_material.tfc.quartzite_tfc": "Quartzite", - "trim_material.tfc.realgar_tfc": "Realgar", - "trim_material.tfc.malachite_tfc": "Malachite", - "trim_material.tfc.glass_tfc": "Glass", - "trim_material.tfc.olivine_tfc": "Olivine", - "trim_material.tfc.opal_tfc": "Opal", - "trim_material.tfc.amethyst_tfc": "Amethyst", - "trim_material.tfc.lapis_tfc": "Lapis", - "trim_material.tfc.apatite_tfc": "Apatite", - "trim_material.tfc.red_garnet_tfc": "Red Garnet", - "trim_material.tfc.yellow_garnet_tfc": "Yellow Garnet", - "trim_material.tfc.monazite_tfc": "Monazite", - "trim_material.tfc.rose_quartz_tfc": "Rose Quartz", - "trim_material.tfc.fluix_tfc": "Fluix", - "trim_material.tfc.silver_tfc": "Silver", - "trim_material.tfc.sterling_silver_tfc": "Sterling Silver", - "trim_material.tfc.gold_tfc": "Gold", - "trim_material.tfc.rose_gold_tfc": "Rose Gold", - "trim_material.tfc.nickel_tfc": "Nickel", - "trim_material.tfc.platinum_tfc": "Platinum", - "trim_material.tfc.titanium_tfc": "Titanium", - "trim_material.tfc.bismuth_tfc": "Bismuth", - "trim_material.tfc.neutronium_tfc": "Neutronium", - "trim_material.tfc.pyrite_tfc": "Pyrite", - "trim_material.tfc.redx_tfc": "RedX" + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.tfc.fluid.salt_water": "Sea Water", + "block.tfc.cauldron.salt_water": "Sea Water Cauldron", + "block.gtceu.andesite_almandine_ore.prospected": "Almandine", + "block.gtceu.andesite_aluminium_ore.prospected": "Aluminium", + "block.gtceu.andesite_alunite_ore.prospected": "Alunite", + "block.gtceu.andesite_amethyst_ore.prospected": "Amethyst", + "block.gtceu.andesite_apatite_ore.prospected": "Apatite", + "block.gtceu.andesite_asbestos_ore.prospected": "Asbestos", + "block.gtceu.andesite_barite_ore.prospected": "Barite", + "block.gtceu.andesite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.andesite_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.andesite_bauxite_ore.prospected": "Bauxite", + "block.gtceu.andesite_bentonite_ore.prospected": "Bentonite", + "block.gtceu.andesite_beryllium_ore.prospected": "Beryllium", + "block.gtceu.andesite_bismuth_ore.prospected": "Bismuth", + "block.gtceu.andesite_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.andesite_borax_ore.prospected": "Borax", + "block.gtceu.andesite_bornite_ore.prospected": "Bornite", + "block.gtceu.andesite_calcite_ore.prospected": "Calcite", + "block.gtceu.andesite_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.andesite_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.andesite_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.andesite_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.andesite_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.andesite_chromite_ore.prospected": "Chromite", + "block.gtceu.andesite_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.andesite_coal_ore.prospected": "Coal", + "block.gtceu.andesite_cobalt_ore.prospected": "Cobalt", + "block.gtceu.andesite_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.andesite_cooperite_ore.prospected": "Cooperite", + "block.gtceu.andesite_copper_ore.prospected": "Copper", + "block.gtceu.andesite_diamond_ore.prospected": "Diamond", + "block.gtceu.andesite_diatomite_ore.prospected": "Diatomite", + "block.gtceu.andesite_electrotine_ore.prospected": "Electrotine", + "block.gtceu.andesite_emerald_ore.prospected": "Emerald", + "block.gtceu.andesite_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.andesite_galena_ore.prospected": "Galena", + "block.gtceu.andesite_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.andesite_garnierite_ore.prospected": "Garnierite", + "block.gtceu.andesite_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.andesite_goethite_ore.prospected": "Goethite", + "block.gtceu.andesite_gold_ore.prospected": "Gold", + "block.gtceu.andesite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.andesite_graphite_ore.prospected": "Graphite", + "block.gtceu.andesite_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.andesite_grossular_ore.prospected": "Grossular", + "block.gtceu.andesite_gypsum_ore.prospected": "Gypsum", + "block.gtceu.andesite_hematite_ore.prospected": "Hematite", + "block.gtceu.andesite_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.andesite_iron_ore.prospected": "Iron", + "block.gtceu.andesite_kyanite_ore.prospected": "Kyanite", + "block.gtceu.andesite_lapis_ore.prospected": "Lapis", + "block.gtceu.andesite_lazurite_ore.prospected": "Lazurite", + "block.gtceu.andesite_lead_ore.prospected": "Lead", + "block.gtceu.andesite_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.andesite_lithium_ore.prospected": "Lithium", + "block.gtceu.andesite_magnesite_ore.prospected": "Magnesite", + "block.gtceu.andesite_magnetite_ore.prospected": "Magnetite", + "block.gtceu.andesite_malachite_ore.prospected": "Malachite", + "block.gtceu.andesite_mica_ore.prospected": "Mica", + "block.gtceu.andesite_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.andesite_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.andesite_monazite_ore.prospected": "Monazite", + "block.gtceu.andesite_naquadah_ore.prospected": "Naquadah", + "block.gtceu.andesite_neodymium_ore.prospected": "Neodymium", + "block.gtceu.andesite_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.andesite_nickel_ore.prospected": "Nickel", + "block.gtceu.andesite_oilsands_ore.prospected": "Oilsands", + "block.gtceu.andesite_olivine_ore.prospected": "Olivine", + "block.gtceu.andesite_opal_ore.prospected": "Opal", + "block.gtceu.andesite_palladium_ore.prospected": "Palladium", + "block.gtceu.andesite_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.andesite_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.andesite_platinum_ore.prospected": "Platinum", + "block.gtceu.andesite_plutonium_ore.prospected": "Plutonium", + "block.gtceu.andesite_pollucite_ore.prospected": "Pollucite", + "block.gtceu.andesite_powellite_ore.prospected": "Powellite", + "block.gtceu.andesite_pyrite_ore.prospected": "Pyrite", + "block.gtceu.andesite_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.andesite_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.andesite_pyrope_ore.prospected": "Pyrope", + "block.gtceu.andesite_quartzite_ore.prospected": "Quartzite", + "block.gtceu.andesite_realgar_ore.prospected": "Realgar", + "block.gtceu.andesite_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.andesite_redstone_ore.prospected": "Redstone", + "block.gtceu.andesite_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.andesite_ruby_ore.prospected": "Ruby", + "block.gtceu.andesite_salt_ore.prospected": "Salt", + "block.gtceu.andesite_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.andesite_sapphire_ore.prospected": "Sapphire", + "block.gtceu.andesite_scheelite_ore.prospected": "Scheelite", + "block.gtceu.andesite_silver_ore.prospected": "Silver", + "block.gtceu.andesite_soapstone_ore.prospected": "Soapstone", + "block.gtceu.andesite_sodalite_ore.prospected": "Sodalite", + "block.gtceu.andesite_spessartine_ore.prospected": "Spessartine", + "block.gtceu.andesite_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.andesite_spodumene_ore.prospected": "Spodumene", + "block.gtceu.andesite_stibnite_ore.prospected": "Stibnite", + "block.gtceu.andesite_sulfur_ore.prospected": "Sulfur", + "block.gtceu.andesite_sylvite_ore.prospected": "Sylvite", + "block.gtceu.andesite_talc_ore.prospected": "Talc", + "block.gtceu.andesite_tantalite_ore.prospected": "Tantalite", + "block.gtceu.andesite_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.andesite_thorium_ore.prospected": "Thorium", + "block.gtceu.andesite_tin_ore.prospected": "Tin", + "block.gtceu.andesite_topaz_ore.prospected": "Topaz", + "block.gtceu.andesite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.andesite_trona_ore.prospected": "Trona", + "block.gtceu.andesite_tungstate_ore.prospected": "Tungstate", + "block.gtceu.andesite_uraninite_ore.prospected": "Uraninite", + "block.gtceu.andesite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.andesite_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.andesite_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.andesite_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.andesite_zeolite_ore.prospected": "Zeolite", + "block.gtceu.basalt_almandine_ore.prospected": "Almandine", + "block.gtceu.basalt_aluminium_ore.prospected": "Aluminium", + "block.gtceu.basalt_alunite_ore.prospected": "Alunite", + "block.gtceu.basalt_amethyst_ore.prospected": "Amethyst", + "block.gtceu.basalt_apatite_ore.prospected": "Apatite", + "block.gtceu.basalt_asbestos_ore.prospected": "Asbestos", + "block.gtceu.basalt_barite_ore.prospected": "Barite", + "block.gtceu.basalt_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.basalt_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.basalt_bauxite_ore.prospected": "Bauxite", + "block.gtceu.basalt_bentonite_ore.prospected": "Bentonite", + "block.gtceu.basalt_beryllium_ore.prospected": "Beryllium", + "block.gtceu.basalt_bismuth_ore.prospected": "Bismuth", + "block.gtceu.basalt_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.basalt_borax_ore.prospected": "Borax", + "block.gtceu.basalt_bornite_ore.prospected": "Bornite", + "block.gtceu.basalt_calcite_ore.prospected": "Calcite", + "block.gtceu.basalt_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.basalt_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.basalt_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.basalt_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.basalt_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.basalt_chromite_ore.prospected": "Chromite", + "block.gtceu.basalt_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.basalt_coal_ore.prospected": "Coal", + "block.gtceu.basalt_cobalt_ore.prospected": "Cobalt", + "block.gtceu.basalt_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.basalt_cooperite_ore.prospected": "Cooperite", + "block.gtceu.basalt_copper_ore.prospected": "Copper", + "block.gtceu.basalt_diamond_ore.prospected": "Diamond", + "block.gtceu.basalt_diatomite_ore.prospected": "Diatomite", + "block.gtceu.basalt_electrotine_ore.prospected": "Electrotine", + "block.gtceu.basalt_emerald_ore.prospected": "Emerald", + "block.gtceu.basalt_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.basalt_galena_ore.prospected": "Galena", + "block.gtceu.basalt_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.basalt_garnierite_ore.prospected": "Garnierite", + "block.gtceu.basalt_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.basalt_goethite_ore.prospected": "Goethite", + "block.gtceu.basalt_gold_ore.prospected": "Gold", + "block.gtceu.basalt_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.basalt_graphite_ore.prospected": "Graphite", + "block.gtceu.basalt_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.basalt_grossular_ore.prospected": "Grossular", + "block.gtceu.basalt_gypsum_ore.prospected": "Gypsum", + "block.gtceu.basalt_hematite_ore.prospected": "Hematite", + "block.gtceu.basalt_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.basalt_iron_ore.prospected": "Iron", + "block.gtceu.basalt_kyanite_ore.prospected": "Kyanite", + "block.gtceu.basalt_lapis_ore.prospected": "Lapis", + "block.gtceu.basalt_lazurite_ore.prospected": "Lazurite", + "block.gtceu.basalt_lead_ore.prospected": "Lead", + "block.gtceu.basalt_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.basalt_lithium_ore.prospected": "Lithium", + "block.gtceu.basalt_magnesite_ore.prospected": "Magnesite", + "block.gtceu.basalt_magnetite_ore.prospected": "Magnetite", + "block.gtceu.basalt_malachite_ore.prospected": "Malachite", + "block.gtceu.basalt_mica_ore.prospected": "Mica", + "block.gtceu.basalt_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.basalt_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.basalt_monazite_ore.prospected": "Monazite", + "block.gtceu.basalt_naquadah_ore.prospected": "Naquadah", + "block.gtceu.basalt_neodymium_ore.prospected": "Neodymium", + "block.gtceu.basalt_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.basalt_nickel_ore.prospected": "Nickel", + "block.gtceu.basalt_oilsands_ore.prospected": "Oilsands", + "block.gtceu.basalt_olivine_ore.prospected": "Olivine", + "block.gtceu.basalt_opal_ore.prospected": "Opal", + "block.gtceu.basalt_palladium_ore.prospected": "Palladium", + "block.gtceu.basalt_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.basalt_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.basalt_platinum_ore.prospected": "Platinum", + "block.gtceu.basalt_plutonium_ore.prospected": "Plutonium", + "block.gtceu.basalt_pollucite_ore.prospected": "Pollucite", + "block.gtceu.basalt_powellite_ore.prospected": "Powellite", + "block.gtceu.basalt_pyrite_ore.prospected": "Pyrite", + "block.gtceu.basalt_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.basalt_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.basalt_pyrope_ore.prospected": "Pyrope", + "block.gtceu.basalt_quartzite_ore.prospected": "Quartzite", + "block.gtceu.basalt_realgar_ore.prospected": "Realgar", + "block.gtceu.basalt_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.basalt_redstone_ore.prospected": "Redstone", + "block.gtceu.basalt_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.basalt_ruby_ore.prospected": "Ruby", + "block.gtceu.basalt_salt_ore.prospected": "Salt", + "block.gtceu.basalt_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.basalt_sapphire_ore.prospected": "Sapphire", + "block.gtceu.basalt_scheelite_ore.prospected": "Scheelite", + "block.gtceu.basalt_silver_ore.prospected": "Silver", + "block.gtceu.basalt_soapstone_ore.prospected": "Soapstone", + "block.gtceu.basalt_sodalite_ore.prospected": "Sodalite", + "block.gtceu.basalt_spessartine_ore.prospected": "Spessartine", + "block.gtceu.basalt_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.basalt_spodumene_ore.prospected": "Spodumene", + "block.gtceu.basalt_stibnite_ore.prospected": "Stibnite", + "block.gtceu.basalt_sulfur_ore.prospected": "Sulfur", + "block.gtceu.basalt_sylvite_ore.prospected": "Sylvite", + "block.gtceu.basalt_talc_ore.prospected": "Talc", + "block.gtceu.basalt_tantalite_ore.prospected": "Tantalite", + "block.gtceu.basalt_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.basalt_thorium_ore.prospected": "Thorium", + "block.gtceu.basalt_tin_ore.prospected": "Tin", + "block.gtceu.basalt_topaz_ore.prospected": "Topaz", + "block.gtceu.basalt_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.basalt_trona_ore.prospected": "Trona", + "block.gtceu.basalt_tungstate_ore.prospected": "Tungstate", + "block.gtceu.basalt_uraninite_ore.prospected": "Uraninite", + "block.gtceu.basalt_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.basalt_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.basalt_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.basalt_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.basalt_zeolite_ore.prospected": "Zeolite", + "block.gtceu.chalk_almandine_ore.prospected": "Almandine", + "block.gtceu.chalk_aluminium_ore.prospected": "Aluminium", + "block.gtceu.chalk_alunite_ore.prospected": "Alunite", + "block.gtceu.chalk_amethyst_ore.prospected": "Amethyst", + "block.gtceu.chalk_apatite_ore.prospected": "Apatite", + "block.gtceu.chalk_asbestos_ore.prospected": "Asbestos", + "block.gtceu.chalk_barite_ore.prospected": "Barite", + "block.gtceu.chalk_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.chalk_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.chalk_bauxite_ore.prospected": "Bauxite", + "block.gtceu.chalk_bentonite_ore.prospected": "Bentonite", + "block.gtceu.chalk_beryllium_ore.prospected": "Beryllium", + "block.gtceu.chalk_bismuth_ore.prospected": "Bismuth", + "block.gtceu.chalk_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.chalk_borax_ore.prospected": "Borax", + "block.gtceu.chalk_bornite_ore.prospected": "Bornite", + "block.gtceu.chalk_calcite_ore.prospected": "Calcite", + "block.gtceu.chalk_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.chalk_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.chalk_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.chalk_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.chalk_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.chalk_chromite_ore.prospected": "Chromite", + "block.gtceu.chalk_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.chalk_coal_ore.prospected": "Coal", + "block.gtceu.chalk_cobalt_ore.prospected": "Cobalt", + "block.gtceu.chalk_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.chalk_cooperite_ore.prospected": "Cooperite", + "block.gtceu.chalk_copper_ore.prospected": "Copper", + "block.gtceu.chalk_diamond_ore.prospected": "Diamond", + "block.gtceu.chalk_diatomite_ore.prospected": "Diatomite", + "block.gtceu.chalk_electrotine_ore.prospected": "Electrotine", + "block.gtceu.chalk_emerald_ore.prospected": "Emerald", + "block.gtceu.chalk_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.chalk_galena_ore.prospected": "Galena", + "block.gtceu.chalk_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.chalk_garnierite_ore.prospected": "Garnierite", + "block.gtceu.chalk_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.chalk_goethite_ore.prospected": "Goethite", + "block.gtceu.chalk_gold_ore.prospected": "Gold", + "block.gtceu.chalk_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.chalk_graphite_ore.prospected": "Graphite", + "block.gtceu.chalk_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.chalk_grossular_ore.prospected": "Grossular", + "block.gtceu.chalk_gypsum_ore.prospected": "Gypsum", + "block.gtceu.chalk_hematite_ore.prospected": "Hematite", + "block.gtceu.chalk_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.chalk_iron_ore.prospected": "Iron", + "block.gtceu.chalk_kyanite_ore.prospected": "Kyanite", + "block.gtceu.chalk_lapis_ore.prospected": "Lapis", + "block.gtceu.chalk_lazurite_ore.prospected": "Lazurite", + "block.gtceu.chalk_lead_ore.prospected": "Lead", + "block.gtceu.chalk_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.chalk_lithium_ore.prospected": "Lithium", + "block.gtceu.chalk_magnesite_ore.prospected": "Magnesite", + "block.gtceu.chalk_magnetite_ore.prospected": "Magnetite", + "block.gtceu.chalk_malachite_ore.prospected": "Malachite", + "block.gtceu.chalk_mica_ore.prospected": "Mica", + "block.gtceu.chalk_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.chalk_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.chalk_monazite_ore.prospected": "Monazite", + "block.gtceu.chalk_naquadah_ore.prospected": "Naquadah", + "block.gtceu.chalk_neodymium_ore.prospected": "Neodymium", + "block.gtceu.chalk_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.chalk_nickel_ore.prospected": "Nickel", + "block.gtceu.chalk_oilsands_ore.prospected": "Oilsands", + "block.gtceu.chalk_olivine_ore.prospected": "Olivine", + "block.gtceu.chalk_opal_ore.prospected": "Opal", + "block.gtceu.chalk_palladium_ore.prospected": "Palladium", + "block.gtceu.chalk_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.chalk_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.chalk_platinum_ore.prospected": "Platinum", + "block.gtceu.chalk_plutonium_ore.prospected": "Plutonium", + "block.gtceu.chalk_pollucite_ore.prospected": "Pollucite", + "block.gtceu.chalk_powellite_ore.prospected": "Powellite", + "block.gtceu.chalk_pyrite_ore.prospected": "Pyrite", + "block.gtceu.chalk_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.chalk_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.chalk_pyrope_ore.prospected": "Pyrope", + "block.gtceu.chalk_quartzite_ore.prospected": "Quartzite", + "block.gtceu.chalk_realgar_ore.prospected": "Realgar", + "block.gtceu.chalk_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.chalk_redstone_ore.prospected": "Redstone", + "block.gtceu.chalk_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.chalk_ruby_ore.prospected": "Ruby", + "block.gtceu.chalk_salt_ore.prospected": "Salt", + "block.gtceu.chalk_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.chalk_sapphire_ore.prospected": "Sapphire", + "block.gtceu.chalk_scheelite_ore.prospected": "Scheelite", + "block.gtceu.chalk_silver_ore.prospected": "Silver", + "block.gtceu.chalk_soapstone_ore.prospected": "Soapstone", + "block.gtceu.chalk_sodalite_ore.prospected": "Sodalite", + "block.gtceu.chalk_spessartine_ore.prospected": "Spessartine", + "block.gtceu.chalk_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.chalk_spodumene_ore.prospected": "Spodumene", + "block.gtceu.chalk_stibnite_ore.prospected": "Stibnite", + "block.gtceu.chalk_sulfur_ore.prospected": "Sulfur", + "block.gtceu.chalk_sylvite_ore.prospected": "Sylvite", + "block.gtceu.chalk_talc_ore.prospected": "Talc", + "block.gtceu.chalk_tantalite_ore.prospected": "Tantalite", + "block.gtceu.chalk_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.chalk_thorium_ore.prospected": "Thorium", + "block.gtceu.chalk_tin_ore.prospected": "Tin", + "block.gtceu.chalk_topaz_ore.prospected": "Topaz", + "block.gtceu.chalk_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.chalk_trona_ore.prospected": "Trona", + "block.gtceu.chalk_tungstate_ore.prospected": "Tungstate", + "block.gtceu.chalk_uraninite_ore.prospected": "Uraninite", + "block.gtceu.chalk_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.chalk_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.chalk_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.chalk_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.chalk_zeolite_ore.prospected": "Zeolite", + "block.gtceu.chert_almandine_ore.prospected": "Almandine", + "block.gtceu.chert_aluminium_ore.prospected": "Aluminium", + "block.gtceu.chert_alunite_ore.prospected": "Alunite", + "block.gtceu.chert_amethyst_ore.prospected": "Amethyst", + "block.gtceu.chert_apatite_ore.prospected": "Apatite", + "block.gtceu.chert_asbestos_ore.prospected": "Asbestos", + "block.gtceu.chert_barite_ore.prospected": "Barite", + "block.gtceu.chert_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.chert_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.chert_bauxite_ore.prospected": "Bauxite", + "block.gtceu.chert_bentonite_ore.prospected": "Bentonite", + "block.gtceu.chert_beryllium_ore.prospected": "Beryllium", + "block.gtceu.chert_bismuth_ore.prospected": "Bismuth", + "block.gtceu.chert_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.chert_borax_ore.prospected": "Borax", + "block.gtceu.chert_bornite_ore.prospected": "Bornite", + "block.gtceu.chert_calcite_ore.prospected": "Calcite", + "block.gtceu.chert_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.chert_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.chert_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.chert_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.chert_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.chert_chromite_ore.prospected": "Chromite", + "block.gtceu.chert_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.chert_coal_ore.prospected": "Coal", + "block.gtceu.chert_cobalt_ore.prospected": "Cobalt", + "block.gtceu.chert_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.chert_cooperite_ore.prospected": "Cooperite", + "block.gtceu.chert_copper_ore.prospected": "Copper", + "block.gtceu.chert_diamond_ore.prospected": "Diamond", + "block.gtceu.chert_diatomite_ore.prospected": "Diatomite", + "block.gtceu.chert_electrotine_ore.prospected": "Electrotine", + "block.gtceu.chert_emerald_ore.prospected": "Emerald", + "block.gtceu.chert_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.chert_galena_ore.prospected": "Galena", + "block.gtceu.chert_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.chert_garnierite_ore.prospected": "Garnierite", + "block.gtceu.chert_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.chert_goethite_ore.prospected": "Goethite", + "block.gtceu.chert_gold_ore.prospected": "Gold", + "block.gtceu.chert_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.chert_graphite_ore.prospected": "Graphite", + "block.gtceu.chert_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.chert_grossular_ore.prospected": "Grossular", + "block.gtceu.chert_gypsum_ore.prospected": "Gypsum", + "block.gtceu.chert_hematite_ore.prospected": "Hematite", + "block.gtceu.chert_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.chert_iron_ore.prospected": "Iron", + "block.gtceu.chert_kyanite_ore.prospected": "Kyanite", + "block.gtceu.chert_lapis_ore.prospected": "Lapis", + "block.gtceu.chert_lazurite_ore.prospected": "Lazurite", + "block.gtceu.chert_lead_ore.prospected": "Lead", + "block.gtceu.chert_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.chert_lithium_ore.prospected": "Lithium", + "block.gtceu.chert_magnesite_ore.prospected": "Magnesite", + "block.gtceu.chert_magnetite_ore.prospected": "Magnetite", + "block.gtceu.chert_malachite_ore.prospected": "Malachite", + "block.gtceu.chert_mica_ore.prospected": "Mica", + "block.gtceu.chert_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.chert_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.chert_monazite_ore.prospected": "Monazite", + "block.gtceu.chert_naquadah_ore.prospected": "Naquadah", + "block.gtceu.chert_neodymium_ore.prospected": "Neodymium", + "block.gtceu.chert_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.chert_nickel_ore.prospected": "Nickel", + "block.gtceu.chert_oilsands_ore.prospected": "Oilsands", + "block.gtceu.chert_olivine_ore.prospected": "Olivine", + "block.gtceu.chert_opal_ore.prospected": "Opal", + "block.gtceu.chert_palladium_ore.prospected": "Palladium", + "block.gtceu.chert_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.chert_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.chert_platinum_ore.prospected": "Platinum", + "block.gtceu.chert_plutonium_ore.prospected": "Plutonium", + "block.gtceu.chert_pollucite_ore.prospected": "Pollucite", + "block.gtceu.chert_powellite_ore.prospected": "Powellite", + "block.gtceu.chert_pyrite_ore.prospected": "Pyrite", + "block.gtceu.chert_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.chert_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.chert_pyrope_ore.prospected": "Pyrope", + "block.gtceu.chert_quartzite_ore.prospected": "Quartzite", + "block.gtceu.chert_realgar_ore.prospected": "Realgar", + "block.gtceu.chert_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.chert_redstone_ore.prospected": "Redstone", + "block.gtceu.chert_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.chert_ruby_ore.prospected": "Ruby", + "block.gtceu.chert_salt_ore.prospected": "Salt", + "block.gtceu.chert_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.chert_sapphire_ore.prospected": "Sapphire", + "block.gtceu.chert_scheelite_ore.prospected": "Scheelite", + "block.gtceu.chert_silver_ore.prospected": "Silver", + "block.gtceu.chert_soapstone_ore.prospected": "Soapstone", + "block.gtceu.chert_sodalite_ore.prospected": "Sodalite", + "block.gtceu.chert_spessartine_ore.prospected": "Spessartine", + "block.gtceu.chert_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.chert_spodumene_ore.prospected": "Spodumene", + "block.gtceu.chert_stibnite_ore.prospected": "Stibnite", + "block.gtceu.chert_sulfur_ore.prospected": "Sulfur", + "block.gtceu.chert_sylvite_ore.prospected": "Sylvite", + "block.gtceu.chert_talc_ore.prospected": "Talc", + "block.gtceu.chert_tantalite_ore.prospected": "Tantalite", + "block.gtceu.chert_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.chert_thorium_ore.prospected": "Thorium", + "block.gtceu.chert_tin_ore.prospected": "Tin", + "block.gtceu.chert_topaz_ore.prospected": "Topaz", + "block.gtceu.chert_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.chert_trona_ore.prospected": "Trona", + "block.gtceu.chert_tungstate_ore.prospected": "Tungstate", + "block.gtceu.chert_uraninite_ore.prospected": "Uraninite", + "block.gtceu.chert_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.chert_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.chert_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.chert_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.chert_zeolite_ore.prospected": "Zeolite", + "block.gtceu.claystone_almandine_ore.prospected": "Almandine", + "block.gtceu.claystone_aluminium_ore.prospected": "Aluminium", + "block.gtceu.claystone_alunite_ore.prospected": "Alunite", + "block.gtceu.claystone_amethyst_ore.prospected": "Amethyst", + "block.gtceu.claystone_apatite_ore.prospected": "Apatite", + "block.gtceu.claystone_asbestos_ore.prospected": "Asbestos", + "block.gtceu.claystone_barite_ore.prospected": "Barite", + "block.gtceu.claystone_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.claystone_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.claystone_bauxite_ore.prospected": "Bauxite", + "block.gtceu.claystone_bentonite_ore.prospected": "Bentonite", + "block.gtceu.claystone_beryllium_ore.prospected": "Beryllium", + "block.gtceu.claystone_bismuth_ore.prospected": "Bismuth", + "block.gtceu.claystone_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.claystone_borax_ore.prospected": "Borax", + "block.gtceu.claystone_bornite_ore.prospected": "Bornite", + "block.gtceu.claystone_calcite_ore.prospected": "Calcite", + "block.gtceu.claystone_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.claystone_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.claystone_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.claystone_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.claystone_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.claystone_chromite_ore.prospected": "Chromite", + "block.gtceu.claystone_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.claystone_coal_ore.prospected": "Coal", + "block.gtceu.claystone_cobalt_ore.prospected": "Cobalt", + "block.gtceu.claystone_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.claystone_cooperite_ore.prospected": "Cooperite", + "block.gtceu.claystone_copper_ore.prospected": "Copper", + "block.gtceu.claystone_diamond_ore.prospected": "Diamond", + "block.gtceu.claystone_diatomite_ore.prospected": "Diatomite", + "block.gtceu.claystone_electrotine_ore.prospected": "Electrotine", + "block.gtceu.claystone_emerald_ore.prospected": "Emerald", + "block.gtceu.claystone_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.claystone_galena_ore.prospected": "Galena", + "block.gtceu.claystone_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.claystone_garnierite_ore.prospected": "Garnierite", + "block.gtceu.claystone_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.claystone_goethite_ore.prospected": "Goethite", + "block.gtceu.claystone_gold_ore.prospected": "Gold", + "block.gtceu.claystone_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.claystone_graphite_ore.prospected": "Graphite", + "block.gtceu.claystone_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.claystone_grossular_ore.prospected": "Grossular", + "block.gtceu.claystone_gypsum_ore.prospected": "Gypsum", + "block.gtceu.claystone_hematite_ore.prospected": "Hematite", + "block.gtceu.claystone_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.claystone_iron_ore.prospected": "Iron", + "block.gtceu.claystone_kyanite_ore.prospected": "Kyanite", + "block.gtceu.claystone_lapis_ore.prospected": "Lapis", + "block.gtceu.claystone_lazurite_ore.prospected": "Lazurite", + "block.gtceu.claystone_lead_ore.prospected": "Lead", + "block.gtceu.claystone_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.claystone_lithium_ore.prospected": "Lithium", + "block.gtceu.claystone_magnesite_ore.prospected": "Magnesite", + "block.gtceu.claystone_magnetite_ore.prospected": "Magnetite", + "block.gtceu.claystone_malachite_ore.prospected": "Malachite", + "block.gtceu.claystone_mica_ore.prospected": "Mica", + "block.gtceu.claystone_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.claystone_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.claystone_monazite_ore.prospected": "Monazite", + "block.gtceu.claystone_naquadah_ore.prospected": "Naquadah", + "block.gtceu.claystone_neodymium_ore.prospected": "Neodymium", + "block.gtceu.claystone_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.claystone_nickel_ore.prospected": "Nickel", + "block.gtceu.claystone_oilsands_ore.prospected": "Oilsands", + "block.gtceu.claystone_olivine_ore.prospected": "Olivine", + "block.gtceu.claystone_opal_ore.prospected": "Opal", + "block.gtceu.claystone_palladium_ore.prospected": "Palladium", + "block.gtceu.claystone_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.claystone_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.claystone_platinum_ore.prospected": "Platinum", + "block.gtceu.claystone_plutonium_ore.prospected": "Plutonium", + "block.gtceu.claystone_pollucite_ore.prospected": "Pollucite", + "block.gtceu.claystone_powellite_ore.prospected": "Powellite", + "block.gtceu.claystone_pyrite_ore.prospected": "Pyrite", + "block.gtceu.claystone_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.claystone_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.claystone_pyrope_ore.prospected": "Pyrope", + "block.gtceu.claystone_quartzite_ore.prospected": "Quartzite", + "block.gtceu.claystone_realgar_ore.prospected": "Realgar", + "block.gtceu.claystone_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.claystone_redstone_ore.prospected": "Redstone", + "block.gtceu.claystone_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.claystone_ruby_ore.prospected": "Ruby", + "block.gtceu.claystone_salt_ore.prospected": "Salt", + "block.gtceu.claystone_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.claystone_sapphire_ore.prospected": "Sapphire", + "block.gtceu.claystone_scheelite_ore.prospected": "Scheelite", + "block.gtceu.claystone_silver_ore.prospected": "Silver", + "block.gtceu.claystone_soapstone_ore.prospected": "Soapstone", + "block.gtceu.claystone_sodalite_ore.prospected": "Sodalite", + "block.gtceu.claystone_spessartine_ore.prospected": "Spessartine", + "block.gtceu.claystone_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.claystone_spodumene_ore.prospected": "Spodumene", + "block.gtceu.claystone_stibnite_ore.prospected": "Stibnite", + "block.gtceu.claystone_sulfur_ore.prospected": "Sulfur", + "block.gtceu.claystone_sylvite_ore.prospected": "Sylvite", + "block.gtceu.claystone_talc_ore.prospected": "Talc", + "block.gtceu.claystone_tantalite_ore.prospected": "Tantalite", + "block.gtceu.claystone_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.claystone_thorium_ore.prospected": "Thorium", + "block.gtceu.claystone_tin_ore.prospected": "Tin", + "block.gtceu.claystone_topaz_ore.prospected": "Topaz", + "block.gtceu.claystone_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.claystone_trona_ore.prospected": "Trona", + "block.gtceu.claystone_tungstate_ore.prospected": "Tungstate", + "block.gtceu.claystone_uraninite_ore.prospected": "Uraninite", + "block.gtceu.claystone_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.claystone_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.claystone_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.claystone_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.claystone_zeolite_ore.prospected": "Zeolite", + "block.gtceu.conglomerate_almandine_ore.prospected": "Almandine", + "block.gtceu.conglomerate_aluminium_ore.prospected": "Aluminium", + "block.gtceu.conglomerate_alunite_ore.prospected": "Alunite", + "block.gtceu.conglomerate_amethyst_ore.prospected": "Amethyst", + "block.gtceu.conglomerate_apatite_ore.prospected": "Apatite", + "block.gtceu.conglomerate_asbestos_ore.prospected": "Asbestos", + "block.gtceu.conglomerate_barite_ore.prospected": "Barite", + "block.gtceu.conglomerate_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.conglomerate_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.conglomerate_bauxite_ore.prospected": "Bauxite", + "block.gtceu.conglomerate_bentonite_ore.prospected": "Bentonite", + "block.gtceu.conglomerate_beryllium_ore.prospected": "Beryllium", + "block.gtceu.conglomerate_bismuth_ore.prospected": "Bismuth", + "block.gtceu.conglomerate_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.conglomerate_borax_ore.prospected": "Borax", + "block.gtceu.conglomerate_bornite_ore.prospected": "Bornite", + "block.gtceu.conglomerate_calcite_ore.prospected": "Calcite", + "block.gtceu.conglomerate_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.conglomerate_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.conglomerate_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.conglomerate_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.conglomerate_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.conglomerate_chromite_ore.prospected": "Chromite", + "block.gtceu.conglomerate_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.conglomerate_coal_ore.prospected": "Coal", + "block.gtceu.conglomerate_cobalt_ore.prospected": "Cobalt", + "block.gtceu.conglomerate_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.conglomerate_cooperite_ore.prospected": "Cooperite", + "block.gtceu.conglomerate_copper_ore.prospected": "Copper", + "block.gtceu.conglomerate_diamond_ore.prospected": "Diamond", + "block.gtceu.conglomerate_diatomite_ore.prospected": "Diatomite", + "block.gtceu.conglomerate_electrotine_ore.prospected": "Electrotine", + "block.gtceu.conglomerate_emerald_ore.prospected": "Emerald", + "block.gtceu.conglomerate_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.conglomerate_galena_ore.prospected": "Galena", + "block.gtceu.conglomerate_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.conglomerate_garnierite_ore.prospected": "Garnierite", + "block.gtceu.conglomerate_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.conglomerate_goethite_ore.prospected": "Goethite", + "block.gtceu.conglomerate_gold_ore.prospected": "Gold", + "block.gtceu.conglomerate_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.conglomerate_graphite_ore.prospected": "Graphite", + "block.gtceu.conglomerate_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.conglomerate_grossular_ore.prospected": "Grossular", + "block.gtceu.conglomerate_gypsum_ore.prospected": "Gypsum", + "block.gtceu.conglomerate_hematite_ore.prospected": "Hematite", + "block.gtceu.conglomerate_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.conglomerate_iron_ore.prospected": "Iron", + "block.gtceu.conglomerate_kyanite_ore.prospected": "Kyanite", + "block.gtceu.conglomerate_lapis_ore.prospected": "Lapis", + "block.gtceu.conglomerate_lazurite_ore.prospected": "Lazurite", + "block.gtceu.conglomerate_lead_ore.prospected": "Lead", + "block.gtceu.conglomerate_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.conglomerate_lithium_ore.prospected": "Lithium", + "block.gtceu.conglomerate_magnesite_ore.prospected": "Magnesite", + "block.gtceu.conglomerate_magnetite_ore.prospected": "Magnetite", + "block.gtceu.conglomerate_malachite_ore.prospected": "Malachite", + "block.gtceu.conglomerate_mica_ore.prospected": "Mica", + "block.gtceu.conglomerate_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.conglomerate_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.conglomerate_monazite_ore.prospected": "Monazite", + "block.gtceu.conglomerate_naquadah_ore.prospected": "Naquadah", + "block.gtceu.conglomerate_neodymium_ore.prospected": "Neodymium", + "block.gtceu.conglomerate_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.conglomerate_nickel_ore.prospected": "Nickel", + "block.gtceu.conglomerate_oilsands_ore.prospected": "Oilsands", + "block.gtceu.conglomerate_olivine_ore.prospected": "Olivine", + "block.gtceu.conglomerate_opal_ore.prospected": "Opal", + "block.gtceu.conglomerate_palladium_ore.prospected": "Palladium", + "block.gtceu.conglomerate_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.conglomerate_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.conglomerate_platinum_ore.prospected": "Platinum", + "block.gtceu.conglomerate_plutonium_ore.prospected": "Plutonium", + "block.gtceu.conglomerate_pollucite_ore.prospected": "Pollucite", + "block.gtceu.conglomerate_powellite_ore.prospected": "Powellite", + "block.gtceu.conglomerate_pyrite_ore.prospected": "Pyrite", + "block.gtceu.conglomerate_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.conglomerate_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.conglomerate_pyrope_ore.prospected": "Pyrope", + "block.gtceu.conglomerate_quartzite_ore.prospected": "Quartzite", + "block.gtceu.conglomerate_realgar_ore.prospected": "Realgar", + "block.gtceu.conglomerate_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.conglomerate_redstone_ore.prospected": "Redstone", + "block.gtceu.conglomerate_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.conglomerate_ruby_ore.prospected": "Ruby", + "block.gtceu.conglomerate_salt_ore.prospected": "Salt", + "block.gtceu.conglomerate_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.conglomerate_sapphire_ore.prospected": "Sapphire", + "block.gtceu.conglomerate_scheelite_ore.prospected": "Scheelite", + "block.gtceu.conglomerate_silver_ore.prospected": "Silver", + "block.gtceu.conglomerate_soapstone_ore.prospected": "Soapstone", + "block.gtceu.conglomerate_sodalite_ore.prospected": "Sodalite", + "block.gtceu.conglomerate_spessartine_ore.prospected": "Spessartine", + "block.gtceu.conglomerate_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.conglomerate_spodumene_ore.prospected": "Spodumene", + "block.gtceu.conglomerate_stibnite_ore.prospected": "Stibnite", + "block.gtceu.conglomerate_sulfur_ore.prospected": "Sulfur", + "block.gtceu.conglomerate_sylvite_ore.prospected": "Sylvite", + "block.gtceu.conglomerate_talc_ore.prospected": "Talc", + "block.gtceu.conglomerate_tantalite_ore.prospected": "Tantalite", + "block.gtceu.conglomerate_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.conglomerate_thorium_ore.prospected": "Thorium", + "block.gtceu.conglomerate_tin_ore.prospected": "Tin", + "block.gtceu.conglomerate_topaz_ore.prospected": "Topaz", + "block.gtceu.conglomerate_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.conglomerate_trona_ore.prospected": "Trona", + "block.gtceu.conglomerate_tungstate_ore.prospected": "Tungstate", + "block.gtceu.conglomerate_uraninite_ore.prospected": "Uraninite", + "block.gtceu.conglomerate_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.conglomerate_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.conglomerate_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.conglomerate_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.conglomerate_zeolite_ore.prospected": "Zeolite", + "block.gtceu.dacite_almandine_ore.prospected": "Almandine", + "block.gtceu.dacite_aluminium_ore.prospected": "Aluminium", + "block.gtceu.dacite_alunite_ore.prospected": "Alunite", + "block.gtceu.dacite_amethyst_ore.prospected": "Amethyst", + "block.gtceu.dacite_apatite_ore.prospected": "Apatite", + "block.gtceu.dacite_asbestos_ore.prospected": "Asbestos", + "block.gtceu.dacite_barite_ore.prospected": "Barite", + "block.gtceu.dacite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.dacite_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.dacite_bauxite_ore.prospected": "Bauxite", + "block.gtceu.dacite_bentonite_ore.prospected": "Bentonite", + "block.gtceu.dacite_beryllium_ore.prospected": "Beryllium", + "block.gtceu.dacite_bismuth_ore.prospected": "Bismuth", + "block.gtceu.dacite_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.dacite_borax_ore.prospected": "Borax", + "block.gtceu.dacite_bornite_ore.prospected": "Bornite", + "block.gtceu.dacite_calcite_ore.prospected": "Calcite", + "block.gtceu.dacite_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.dacite_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.dacite_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.dacite_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.dacite_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.dacite_chromite_ore.prospected": "Chromite", + "block.gtceu.dacite_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.dacite_coal_ore.prospected": "Coal", + "block.gtceu.dacite_cobalt_ore.prospected": "Cobalt", + "block.gtceu.dacite_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.dacite_cooperite_ore.prospected": "Cooperite", + "block.gtceu.dacite_copper_ore.prospected": "Copper", + "block.gtceu.dacite_diamond_ore.prospected": "Diamond", + "block.gtceu.dacite_diatomite_ore.prospected": "Diatomite", + "block.gtceu.dacite_electrotine_ore.prospected": "Electrotine", + "block.gtceu.dacite_emerald_ore.prospected": "Emerald", + "block.gtceu.dacite_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.dacite_galena_ore.prospected": "Galena", + "block.gtceu.dacite_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.dacite_garnierite_ore.prospected": "Garnierite", + "block.gtceu.dacite_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.dacite_goethite_ore.prospected": "Goethite", + "block.gtceu.dacite_gold_ore.prospected": "Gold", + "block.gtceu.dacite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.dacite_graphite_ore.prospected": "Graphite", + "block.gtceu.dacite_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.dacite_grossular_ore.prospected": "Grossular", + "block.gtceu.dacite_gypsum_ore.prospected": "Gypsum", + "block.gtceu.dacite_hematite_ore.prospected": "Hematite", + "block.gtceu.dacite_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.dacite_iron_ore.prospected": "Iron", + "block.gtceu.dacite_kyanite_ore.prospected": "Kyanite", + "block.gtceu.dacite_lapis_ore.prospected": "Lapis", + "block.gtceu.dacite_lazurite_ore.prospected": "Lazurite", + "block.gtceu.dacite_lead_ore.prospected": "Lead", + "block.gtceu.dacite_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.dacite_lithium_ore.prospected": "Lithium", + "block.gtceu.dacite_magnesite_ore.prospected": "Magnesite", + "block.gtceu.dacite_magnetite_ore.prospected": "Magnetite", + "block.gtceu.dacite_malachite_ore.prospected": "Malachite", + "block.gtceu.dacite_mica_ore.prospected": "Mica", + "block.gtceu.dacite_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.dacite_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.dacite_monazite_ore.prospected": "Monazite", + "block.gtceu.dacite_naquadah_ore.prospected": "Naquadah", + "block.gtceu.dacite_neodymium_ore.prospected": "Neodymium", + "block.gtceu.dacite_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.dacite_nickel_ore.prospected": "Nickel", + "block.gtceu.dacite_oilsands_ore.prospected": "Oilsands", + "block.gtceu.dacite_olivine_ore.prospected": "Olivine", + "block.gtceu.dacite_opal_ore.prospected": "Opal", + "block.gtceu.dacite_palladium_ore.prospected": "Palladium", + "block.gtceu.dacite_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.dacite_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.dacite_platinum_ore.prospected": "Platinum", + "block.gtceu.dacite_plutonium_ore.prospected": "Plutonium", + "block.gtceu.dacite_pollucite_ore.prospected": "Pollucite", + "block.gtceu.dacite_powellite_ore.prospected": "Powellite", + "block.gtceu.dacite_pyrite_ore.prospected": "Pyrite", + "block.gtceu.dacite_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.dacite_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.dacite_pyrope_ore.prospected": "Pyrope", + "block.gtceu.dacite_quartzite_ore.prospected": "Quartzite", + "block.gtceu.dacite_realgar_ore.prospected": "Realgar", + "block.gtceu.dacite_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.dacite_redstone_ore.prospected": "Redstone", + "block.gtceu.dacite_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.dacite_ruby_ore.prospected": "Ruby", + "block.gtceu.dacite_salt_ore.prospected": "Salt", + "block.gtceu.dacite_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.dacite_sapphire_ore.prospected": "Sapphire", + "block.gtceu.dacite_scheelite_ore.prospected": "Scheelite", + "block.gtceu.dacite_silver_ore.prospected": "Silver", + "block.gtceu.dacite_soapstone_ore.prospected": "Soapstone", + "block.gtceu.dacite_sodalite_ore.prospected": "Sodalite", + "block.gtceu.dacite_spessartine_ore.prospected": "Spessartine", + "block.gtceu.dacite_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.dacite_spodumene_ore.prospected": "Spodumene", + "block.gtceu.dacite_stibnite_ore.prospected": "Stibnite", + "block.gtceu.dacite_sulfur_ore.prospected": "Sulfur", + "block.gtceu.dacite_sylvite_ore.prospected": "Sylvite", + "block.gtceu.dacite_talc_ore.prospected": "Talc", + "block.gtceu.dacite_tantalite_ore.prospected": "Tantalite", + "block.gtceu.dacite_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.dacite_thorium_ore.prospected": "Thorium", + "block.gtceu.dacite_tin_ore.prospected": "Tin", + "block.gtceu.dacite_topaz_ore.prospected": "Topaz", + "block.gtceu.dacite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.dacite_trona_ore.prospected": "Trona", + "block.gtceu.dacite_tungstate_ore.prospected": "Tungstate", + "block.gtceu.dacite_uraninite_ore.prospected": "Uraninite", + "block.gtceu.dacite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.dacite_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.dacite_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.dacite_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.dacite_zeolite_ore.prospected": "Zeolite", + "block.gtceu.diorite_almandine_ore.prospected": "Almandine", + "block.gtceu.diorite_aluminium_ore.prospected": "Aluminium", + "block.gtceu.diorite_alunite_ore.prospected": "Alunite", + "block.gtceu.diorite_amethyst_ore.prospected": "Amethyst", + "block.gtceu.diorite_apatite_ore.prospected": "Apatite", + "block.gtceu.diorite_asbestos_ore.prospected": "Asbestos", + "block.gtceu.diorite_barite_ore.prospected": "Barite", + "block.gtceu.diorite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.diorite_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.diorite_bauxite_ore.prospected": "Bauxite", + "block.gtceu.diorite_bentonite_ore.prospected": "Bentonite", + "block.gtceu.diorite_beryllium_ore.prospected": "Beryllium", + "block.gtceu.diorite_bismuth_ore.prospected": "Bismuth", + "block.gtceu.diorite_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.diorite_borax_ore.prospected": "Borax", + "block.gtceu.diorite_bornite_ore.prospected": "Bornite", + "block.gtceu.diorite_calcite_ore.prospected": "Calcite", + "block.gtceu.diorite_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.diorite_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.diorite_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.diorite_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.diorite_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.diorite_chromite_ore.prospected": "Chromite", + "block.gtceu.diorite_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.diorite_coal_ore.prospected": "Coal", + "block.gtceu.diorite_cobalt_ore.prospected": "Cobalt", + "block.gtceu.diorite_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.diorite_cooperite_ore.prospected": "Cooperite", + "block.gtceu.diorite_copper_ore.prospected": "Copper", + "block.gtceu.diorite_diamond_ore.prospected": "Diamond", + "block.gtceu.diorite_diatomite_ore.prospected": "Diatomite", + "block.gtceu.diorite_electrotine_ore.prospected": "Electrotine", + "block.gtceu.diorite_emerald_ore.prospected": "Emerald", + "block.gtceu.diorite_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.diorite_galena_ore.prospected": "Galena", + "block.gtceu.diorite_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.diorite_garnierite_ore.prospected": "Garnierite", + "block.gtceu.diorite_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.diorite_goethite_ore.prospected": "Goethite", + "block.gtceu.diorite_gold_ore.prospected": "Gold", + "block.gtceu.diorite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.diorite_graphite_ore.prospected": "Graphite", + "block.gtceu.diorite_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.diorite_grossular_ore.prospected": "Grossular", + "block.gtceu.diorite_gypsum_ore.prospected": "Gypsum", + "block.gtceu.diorite_hematite_ore.prospected": "Hematite", + "block.gtceu.diorite_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.diorite_iron_ore.prospected": "Iron", + "block.gtceu.diorite_kyanite_ore.prospected": "Kyanite", + "block.gtceu.diorite_lapis_ore.prospected": "Lapis", + "block.gtceu.diorite_lazurite_ore.prospected": "Lazurite", + "block.gtceu.diorite_lead_ore.prospected": "Lead", + "block.gtceu.diorite_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.diorite_lithium_ore.prospected": "Lithium", + "block.gtceu.diorite_magnesite_ore.prospected": "Magnesite", + "block.gtceu.diorite_magnetite_ore.prospected": "Magnetite", + "block.gtceu.diorite_malachite_ore.prospected": "Malachite", + "block.gtceu.diorite_mica_ore.prospected": "Mica", + "block.gtceu.diorite_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.diorite_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.diorite_monazite_ore.prospected": "Monazite", + "block.gtceu.diorite_naquadah_ore.prospected": "Naquadah", + "block.gtceu.diorite_neodymium_ore.prospected": "Neodymium", + "block.gtceu.diorite_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.diorite_nickel_ore.prospected": "Nickel", + "block.gtceu.diorite_oilsands_ore.prospected": "Oilsands", + "block.gtceu.diorite_olivine_ore.prospected": "Olivine", + "block.gtceu.diorite_opal_ore.prospected": "Opal", + "block.gtceu.diorite_palladium_ore.prospected": "Palladium", + "block.gtceu.diorite_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.diorite_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.diorite_platinum_ore.prospected": "Platinum", + "block.gtceu.diorite_plutonium_ore.prospected": "Plutonium", + "block.gtceu.diorite_pollucite_ore.prospected": "Pollucite", + "block.gtceu.diorite_powellite_ore.prospected": "Powellite", + "block.gtceu.diorite_pyrite_ore.prospected": "Pyrite", + "block.gtceu.diorite_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.diorite_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.diorite_pyrope_ore.prospected": "Pyrope", + "block.gtceu.diorite_quartzite_ore.prospected": "Quartzite", + "block.gtceu.diorite_realgar_ore.prospected": "Realgar", + "block.gtceu.diorite_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.diorite_redstone_ore.prospected": "Redstone", + "block.gtceu.diorite_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.diorite_ruby_ore.prospected": "Ruby", + "block.gtceu.diorite_salt_ore.prospected": "Salt", + "block.gtceu.diorite_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.diorite_sapphire_ore.prospected": "Sapphire", + "block.gtceu.diorite_scheelite_ore.prospected": "Scheelite", + "block.gtceu.diorite_silver_ore.prospected": "Silver", + "block.gtceu.diorite_soapstone_ore.prospected": "Soapstone", + "block.gtceu.diorite_sodalite_ore.prospected": "Sodalite", + "block.gtceu.diorite_spessartine_ore.prospected": "Spessartine", + "block.gtceu.diorite_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.diorite_spodumene_ore.prospected": "Spodumene", + "block.gtceu.diorite_stibnite_ore.prospected": "Stibnite", + "block.gtceu.diorite_sulfur_ore.prospected": "Sulfur", + "block.gtceu.diorite_sylvite_ore.prospected": "Sylvite", + "block.gtceu.diorite_talc_ore.prospected": "Talc", + "block.gtceu.diorite_tantalite_ore.prospected": "Tantalite", + "block.gtceu.diorite_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.diorite_thorium_ore.prospected": "Thorium", + "block.gtceu.diorite_tin_ore.prospected": "Tin", + "block.gtceu.diorite_topaz_ore.prospected": "Topaz", + "block.gtceu.diorite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.diorite_trona_ore.prospected": "Trona", + "block.gtceu.diorite_tungstate_ore.prospected": "Tungstate", + "block.gtceu.diorite_uraninite_ore.prospected": "Uraninite", + "block.gtceu.diorite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.diorite_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.diorite_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.diorite_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.diorite_zeolite_ore.prospected": "Zeolite", + "block.gtceu.dolomite_almandine_ore.prospected": "Almandine", + "block.gtceu.dolomite_aluminium_ore.prospected": "Aluminium", + "block.gtceu.dolomite_alunite_ore.prospected": "Alunite", + "block.gtceu.dolomite_amethyst_ore.prospected": "Amethyst", + "block.gtceu.dolomite_apatite_ore.prospected": "Apatite", + "block.gtceu.dolomite_asbestos_ore.prospected": "Asbestos", + "block.gtceu.dolomite_barite_ore.prospected": "Barite", + "block.gtceu.dolomite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.dolomite_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.dolomite_bauxite_ore.prospected": "Bauxite", + "block.gtceu.dolomite_bentonite_ore.prospected": "Bentonite", + "block.gtceu.dolomite_beryllium_ore.prospected": "Beryllium", + "block.gtceu.dolomite_bismuth_ore.prospected": "Bismuth", + "block.gtceu.dolomite_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.dolomite_borax_ore.prospected": "Borax", + "block.gtceu.dolomite_bornite_ore.prospected": "Bornite", + "block.gtceu.dolomite_calcite_ore.prospected": "Calcite", + "block.gtceu.dolomite_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.dolomite_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.dolomite_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.dolomite_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.dolomite_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.dolomite_chromite_ore.prospected": "Chromite", + "block.gtceu.dolomite_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.dolomite_coal_ore.prospected": "Coal", + "block.gtceu.dolomite_cobalt_ore.prospected": "Cobalt", + "block.gtceu.dolomite_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.dolomite_cooperite_ore.prospected": "Cooperite", + "block.gtceu.dolomite_copper_ore.prospected": "Copper", + "block.gtceu.dolomite_diamond_ore.prospected": "Diamond", + "block.gtceu.dolomite_diatomite_ore.prospected": "Diatomite", + "block.gtceu.dolomite_electrotine_ore.prospected": "Electrotine", + "block.gtceu.dolomite_emerald_ore.prospected": "Emerald", + "block.gtceu.dolomite_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.dolomite_galena_ore.prospected": "Galena", + "block.gtceu.dolomite_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.dolomite_garnierite_ore.prospected": "Garnierite", + "block.gtceu.dolomite_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.dolomite_goethite_ore.prospected": "Goethite", + "block.gtceu.dolomite_gold_ore.prospected": "Gold", + "block.gtceu.dolomite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.dolomite_graphite_ore.prospected": "Graphite", + "block.gtceu.dolomite_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.dolomite_grossular_ore.prospected": "Grossular", + "block.gtceu.dolomite_gypsum_ore.prospected": "Gypsum", + "block.gtceu.dolomite_hematite_ore.prospected": "Hematite", + "block.gtceu.dolomite_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.dolomite_iron_ore.prospected": "Iron", + "block.gtceu.dolomite_kyanite_ore.prospected": "Kyanite", + "block.gtceu.dolomite_lapis_ore.prospected": "Lapis", + "block.gtceu.dolomite_lazurite_ore.prospected": "Lazurite", + "block.gtceu.dolomite_lead_ore.prospected": "Lead", + "block.gtceu.dolomite_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.dolomite_lithium_ore.prospected": "Lithium", + "block.gtceu.dolomite_magnesite_ore.prospected": "Magnesite", + "block.gtceu.dolomite_magnetite_ore.prospected": "Magnetite", + "block.gtceu.dolomite_malachite_ore.prospected": "Malachite", + "block.gtceu.dolomite_mica_ore.prospected": "Mica", + "block.gtceu.dolomite_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.dolomite_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.dolomite_monazite_ore.prospected": "Monazite", + "block.gtceu.dolomite_naquadah_ore.prospected": "Naquadah", + "block.gtceu.dolomite_neodymium_ore.prospected": "Neodymium", + "block.gtceu.dolomite_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.dolomite_nickel_ore.prospected": "Nickel", + "block.gtceu.dolomite_oilsands_ore.prospected": "Oilsands", + "block.gtceu.dolomite_olivine_ore.prospected": "Olivine", + "block.gtceu.dolomite_opal_ore.prospected": "Opal", + "block.gtceu.dolomite_palladium_ore.prospected": "Palladium", + "block.gtceu.dolomite_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.dolomite_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.dolomite_platinum_ore.prospected": "Platinum", + "block.gtceu.dolomite_plutonium_ore.prospected": "Plutonium", + "block.gtceu.dolomite_pollucite_ore.prospected": "Pollucite", + "block.gtceu.dolomite_powellite_ore.prospected": "Powellite", + "block.gtceu.dolomite_pyrite_ore.prospected": "Pyrite", + "block.gtceu.dolomite_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.dolomite_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.dolomite_pyrope_ore.prospected": "Pyrope", + "block.gtceu.dolomite_quartzite_ore.prospected": "Quartzite", + "block.gtceu.dolomite_realgar_ore.prospected": "Realgar", + "block.gtceu.dolomite_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.dolomite_redstone_ore.prospected": "Redstone", + "block.gtceu.dolomite_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.dolomite_ruby_ore.prospected": "Ruby", + "block.gtceu.dolomite_salt_ore.prospected": "Salt", + "block.gtceu.dolomite_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.dolomite_sapphire_ore.prospected": "Sapphire", + "block.gtceu.dolomite_scheelite_ore.prospected": "Scheelite", + "block.gtceu.dolomite_silver_ore.prospected": "Silver", + "block.gtceu.dolomite_soapstone_ore.prospected": "Soapstone", + "block.gtceu.dolomite_sodalite_ore.prospected": "Sodalite", + "block.gtceu.dolomite_spessartine_ore.prospected": "Spessartine", + "block.gtceu.dolomite_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.dolomite_spodumene_ore.prospected": "Spodumene", + "block.gtceu.dolomite_stibnite_ore.prospected": "Stibnite", + "block.gtceu.dolomite_sulfur_ore.prospected": "Sulfur", + "block.gtceu.dolomite_sylvite_ore.prospected": "Sylvite", + "block.gtceu.dolomite_talc_ore.prospected": "Talc", + "block.gtceu.dolomite_tantalite_ore.prospected": "Tantalite", + "block.gtceu.dolomite_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.dolomite_thorium_ore.prospected": "Thorium", + "block.gtceu.dolomite_tin_ore.prospected": "Tin", + "block.gtceu.dolomite_topaz_ore.prospected": "Topaz", + "block.gtceu.dolomite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.dolomite_trona_ore.prospected": "Trona", + "block.gtceu.dolomite_tungstate_ore.prospected": "Tungstate", + "block.gtceu.dolomite_uraninite_ore.prospected": "Uraninite", + "block.gtceu.dolomite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.dolomite_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.dolomite_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.dolomite_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.dolomite_zeolite_ore.prospected": "Zeolite", + "block.gtceu.gabbro_almandine_ore.prospected": "Almandine", + "block.gtceu.gabbro_aluminium_ore.prospected": "Aluminium", + "block.gtceu.gabbro_alunite_ore.prospected": "Alunite", + "block.gtceu.gabbro_amethyst_ore.prospected": "Amethyst", + "block.gtceu.gabbro_apatite_ore.prospected": "Apatite", + "block.gtceu.gabbro_asbestos_ore.prospected": "Asbestos", + "block.gtceu.gabbro_barite_ore.prospected": "Barite", + "block.gtceu.gabbro_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.gabbro_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.gabbro_bauxite_ore.prospected": "Bauxite", + "block.gtceu.gabbro_bentonite_ore.prospected": "Bentonite", + "block.gtceu.gabbro_beryllium_ore.prospected": "Beryllium", + "block.gtceu.gabbro_bismuth_ore.prospected": "Bismuth", + "block.gtceu.gabbro_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.gabbro_borax_ore.prospected": "Borax", + "block.gtceu.gabbro_bornite_ore.prospected": "Bornite", + "block.gtceu.gabbro_calcite_ore.prospected": "Calcite", + "block.gtceu.gabbro_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.gabbro_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.gabbro_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.gabbro_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.gabbro_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.gabbro_chromite_ore.prospected": "Chromite", + "block.gtceu.gabbro_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.gabbro_coal_ore.prospected": "Coal", + "block.gtceu.gabbro_cobalt_ore.prospected": "Cobalt", + "block.gtceu.gabbro_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.gabbro_cooperite_ore.prospected": "Cooperite", + "block.gtceu.gabbro_copper_ore.prospected": "Copper", + "block.gtceu.gabbro_diamond_ore.prospected": "Diamond", + "block.gtceu.gabbro_diatomite_ore.prospected": "Diatomite", + "block.gtceu.gabbro_electrotine_ore.prospected": "Electrotine", + "block.gtceu.gabbro_emerald_ore.prospected": "Emerald", + "block.gtceu.gabbro_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.gabbro_galena_ore.prospected": "Galena", + "block.gtceu.gabbro_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.gabbro_garnierite_ore.prospected": "Garnierite", + "block.gtceu.gabbro_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.gabbro_goethite_ore.prospected": "Goethite", + "block.gtceu.gabbro_gold_ore.prospected": "Gold", + "block.gtceu.gabbro_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.gabbro_graphite_ore.prospected": "Graphite", + "block.gtceu.gabbro_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.gabbro_grossular_ore.prospected": "Grossular", + "block.gtceu.gabbro_gypsum_ore.prospected": "Gypsum", + "block.gtceu.gabbro_hematite_ore.prospected": "Hematite", + "block.gtceu.gabbro_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.gabbro_iron_ore.prospected": "Iron", + "block.gtceu.gabbro_kyanite_ore.prospected": "Kyanite", + "block.gtceu.gabbro_lapis_ore.prospected": "Lapis", + "block.gtceu.gabbro_lazurite_ore.prospected": "Lazurite", + "block.gtceu.gabbro_lead_ore.prospected": "Lead", + "block.gtceu.gabbro_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.gabbro_lithium_ore.prospected": "Lithium", + "block.gtceu.gabbro_magnesite_ore.prospected": "Magnesite", + "block.gtceu.gabbro_magnetite_ore.prospected": "Magnetite", + "block.gtceu.gabbro_malachite_ore.prospected": "Malachite", + "block.gtceu.gabbro_mica_ore.prospected": "Mica", + "block.gtceu.gabbro_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.gabbro_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.gabbro_monazite_ore.prospected": "Monazite", + "block.gtceu.gabbro_naquadah_ore.prospected": "Naquadah", + "block.gtceu.gabbro_neodymium_ore.prospected": "Neodymium", + "block.gtceu.gabbro_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.gabbro_nickel_ore.prospected": "Nickel", + "block.gtceu.gabbro_oilsands_ore.prospected": "Oilsands", + "block.gtceu.gabbro_olivine_ore.prospected": "Olivine", + "block.gtceu.gabbro_opal_ore.prospected": "Opal", + "block.gtceu.gabbro_palladium_ore.prospected": "Palladium", + "block.gtceu.gabbro_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.gabbro_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.gabbro_platinum_ore.prospected": "Platinum", + "block.gtceu.gabbro_plutonium_ore.prospected": "Plutonium", + "block.gtceu.gabbro_pollucite_ore.prospected": "Pollucite", + "block.gtceu.gabbro_powellite_ore.prospected": "Powellite", + "block.gtceu.gabbro_pyrite_ore.prospected": "Pyrite", + "block.gtceu.gabbro_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.gabbro_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.gabbro_pyrope_ore.prospected": "Pyrope", + "block.gtceu.gabbro_quartzite_ore.prospected": "Quartzite", + "block.gtceu.gabbro_realgar_ore.prospected": "Realgar", + "block.gtceu.gabbro_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.gabbro_redstone_ore.prospected": "Redstone", + "block.gtceu.gabbro_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.gabbro_ruby_ore.prospected": "Ruby", + "block.gtceu.gabbro_salt_ore.prospected": "Salt", + "block.gtceu.gabbro_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.gabbro_sapphire_ore.prospected": "Sapphire", + "block.gtceu.gabbro_scheelite_ore.prospected": "Scheelite", + "block.gtceu.gabbro_silver_ore.prospected": "Silver", + "block.gtceu.gabbro_soapstone_ore.prospected": "Soapstone", + "block.gtceu.gabbro_sodalite_ore.prospected": "Sodalite", + "block.gtceu.gabbro_spessartine_ore.prospected": "Spessartine", + "block.gtceu.gabbro_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.gabbro_spodumene_ore.prospected": "Spodumene", + "block.gtceu.gabbro_stibnite_ore.prospected": "Stibnite", + "block.gtceu.gabbro_sulfur_ore.prospected": "Sulfur", + "block.gtceu.gabbro_sylvite_ore.prospected": "Sylvite", + "block.gtceu.gabbro_talc_ore.prospected": "Talc", + "block.gtceu.gabbro_tantalite_ore.prospected": "Tantalite", + "block.gtceu.gabbro_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.gabbro_thorium_ore.prospected": "Thorium", + "block.gtceu.gabbro_tin_ore.prospected": "Tin", + "block.gtceu.gabbro_topaz_ore.prospected": "Topaz", + "block.gtceu.gabbro_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.gabbro_trona_ore.prospected": "Trona", + "block.gtceu.gabbro_tungstate_ore.prospected": "Tungstate", + "block.gtceu.gabbro_uraninite_ore.prospected": "Uraninite", + "block.gtceu.gabbro_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.gabbro_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.gabbro_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.gabbro_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.gabbro_zeolite_ore.prospected": "Zeolite", + "block.gtceu.gneiss_almandine_ore.prospected": "Almandine", + "block.gtceu.gneiss_aluminium_ore.prospected": "Aluminium", + "block.gtceu.gneiss_alunite_ore.prospected": "Alunite", + "block.gtceu.gneiss_amethyst_ore.prospected": "Amethyst", + "block.gtceu.gneiss_apatite_ore.prospected": "Apatite", + "block.gtceu.gneiss_asbestos_ore.prospected": "Asbestos", + "block.gtceu.gneiss_barite_ore.prospected": "Barite", + "block.gtceu.gneiss_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.gneiss_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.gneiss_bauxite_ore.prospected": "Bauxite", + "block.gtceu.gneiss_bentonite_ore.prospected": "Bentonite", + "block.gtceu.gneiss_beryllium_ore.prospected": "Beryllium", + "block.gtceu.gneiss_bismuth_ore.prospected": "Bismuth", + "block.gtceu.gneiss_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.gneiss_borax_ore.prospected": "Borax", + "block.gtceu.gneiss_bornite_ore.prospected": "Bornite", + "block.gtceu.gneiss_calcite_ore.prospected": "Calcite", + "block.gtceu.gneiss_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.gneiss_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.gneiss_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.gneiss_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.gneiss_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.gneiss_chromite_ore.prospected": "Chromite", + "block.gtceu.gneiss_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.gneiss_coal_ore.prospected": "Coal", + "block.gtceu.gneiss_cobalt_ore.prospected": "Cobalt", + "block.gtceu.gneiss_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.gneiss_cooperite_ore.prospected": "Cooperite", + "block.gtceu.gneiss_copper_ore.prospected": "Copper", + "block.gtceu.gneiss_diamond_ore.prospected": "Diamond", + "block.gtceu.gneiss_diatomite_ore.prospected": "Diatomite", + "block.gtceu.gneiss_electrotine_ore.prospected": "Electrotine", + "block.gtceu.gneiss_emerald_ore.prospected": "Emerald", + "block.gtceu.gneiss_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.gneiss_galena_ore.prospected": "Galena", + "block.gtceu.gneiss_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.gneiss_garnierite_ore.prospected": "Garnierite", + "block.gtceu.gneiss_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.gneiss_goethite_ore.prospected": "Goethite", + "block.gtceu.gneiss_gold_ore.prospected": "Gold", + "block.gtceu.gneiss_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.gneiss_graphite_ore.prospected": "Graphite", + "block.gtceu.gneiss_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.gneiss_grossular_ore.prospected": "Grossular", + "block.gtceu.gneiss_gypsum_ore.prospected": "Gypsum", + "block.gtceu.gneiss_hematite_ore.prospected": "Hematite", + "block.gtceu.gneiss_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.gneiss_iron_ore.prospected": "Iron", + "block.gtceu.gneiss_kyanite_ore.prospected": "Kyanite", + "block.gtceu.gneiss_lapis_ore.prospected": "Lapis", + "block.gtceu.gneiss_lazurite_ore.prospected": "Lazurite", + "block.gtceu.gneiss_lead_ore.prospected": "Lead", + "block.gtceu.gneiss_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.gneiss_lithium_ore.prospected": "Lithium", + "block.gtceu.gneiss_magnesite_ore.prospected": "Magnesite", + "block.gtceu.gneiss_magnetite_ore.prospected": "Magnetite", + "block.gtceu.gneiss_malachite_ore.prospected": "Malachite", + "block.gtceu.gneiss_mica_ore.prospected": "Mica", + "block.gtceu.gneiss_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.gneiss_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.gneiss_monazite_ore.prospected": "Monazite", + "block.gtceu.gneiss_naquadah_ore.prospected": "Naquadah", + "block.gtceu.gneiss_neodymium_ore.prospected": "Neodymium", + "block.gtceu.gneiss_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.gneiss_nickel_ore.prospected": "Nickel", + "block.gtceu.gneiss_oilsands_ore.prospected": "Oilsands", + "block.gtceu.gneiss_olivine_ore.prospected": "Olivine", + "block.gtceu.gneiss_opal_ore.prospected": "Opal", + "block.gtceu.gneiss_palladium_ore.prospected": "Palladium", + "block.gtceu.gneiss_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.gneiss_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.gneiss_platinum_ore.prospected": "Platinum", + "block.gtceu.gneiss_plutonium_ore.prospected": "Plutonium", + "block.gtceu.gneiss_pollucite_ore.prospected": "Pollucite", + "block.gtceu.gneiss_powellite_ore.prospected": "Powellite", + "block.gtceu.gneiss_pyrite_ore.prospected": "Pyrite", + "block.gtceu.gneiss_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.gneiss_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.gneiss_pyrope_ore.prospected": "Pyrope", + "block.gtceu.gneiss_quartzite_ore.prospected": "Quartzite", + "block.gtceu.gneiss_realgar_ore.prospected": "Realgar", + "block.gtceu.gneiss_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.gneiss_redstone_ore.prospected": "Redstone", + "block.gtceu.gneiss_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.gneiss_ruby_ore.prospected": "Ruby", + "block.gtceu.gneiss_salt_ore.prospected": "Salt", + "block.gtceu.gneiss_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.gneiss_sapphire_ore.prospected": "Sapphire", + "block.gtceu.gneiss_scheelite_ore.prospected": "Scheelite", + "block.gtceu.gneiss_silver_ore.prospected": "Silver", + "block.gtceu.gneiss_soapstone_ore.prospected": "Soapstone", + "block.gtceu.gneiss_sodalite_ore.prospected": "Sodalite", + "block.gtceu.gneiss_spessartine_ore.prospected": "Spessartine", + "block.gtceu.gneiss_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.gneiss_spodumene_ore.prospected": "Spodumene", + "block.gtceu.gneiss_stibnite_ore.prospected": "Stibnite", + "block.gtceu.gneiss_sulfur_ore.prospected": "Sulfur", + "block.gtceu.gneiss_sylvite_ore.prospected": "Sylvite", + "block.gtceu.gneiss_talc_ore.prospected": "Talc", + "block.gtceu.gneiss_tantalite_ore.prospected": "Tantalite", + "block.gtceu.gneiss_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.gneiss_thorium_ore.prospected": "Thorium", + "block.gtceu.gneiss_tin_ore.prospected": "Tin", + "block.gtceu.gneiss_topaz_ore.prospected": "Topaz", + "block.gtceu.gneiss_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.gneiss_trona_ore.prospected": "Trona", + "block.gtceu.gneiss_tungstate_ore.prospected": "Tungstate", + "block.gtceu.gneiss_uraninite_ore.prospected": "Uraninite", + "block.gtceu.gneiss_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.gneiss_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.gneiss_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.gneiss_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.gneiss_zeolite_ore.prospected": "Zeolite", + "block.gtceu.granite_almandine_ore.prospected": "Almandine", + "block.gtceu.granite_aluminium_ore.prospected": "Aluminium", + "block.gtceu.granite_alunite_ore.prospected": "Alunite", + "block.gtceu.granite_amethyst_ore.prospected": "Amethyst", + "block.gtceu.granite_apatite_ore.prospected": "Apatite", + "block.gtceu.granite_asbestos_ore.prospected": "Asbestos", + "block.gtceu.granite_barite_ore.prospected": "Barite", + "block.gtceu.granite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.granite_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.granite_bauxite_ore.prospected": "Bauxite", + "block.gtceu.granite_bentonite_ore.prospected": "Bentonite", + "block.gtceu.granite_beryllium_ore.prospected": "Beryllium", + "block.gtceu.granite_bismuth_ore.prospected": "Bismuth", + "block.gtceu.granite_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.granite_borax_ore.prospected": "Borax", + "block.gtceu.granite_bornite_ore.prospected": "Bornite", + "block.gtceu.granite_calcite_ore.prospected": "Calcite", + "block.gtceu.granite_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.granite_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.granite_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.granite_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.granite_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.granite_chromite_ore.prospected": "Chromite", + "block.gtceu.granite_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.granite_coal_ore.prospected": "Coal", + "block.gtceu.granite_cobalt_ore.prospected": "Cobalt", + "block.gtceu.granite_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.granite_cooperite_ore.prospected": "Cooperite", + "block.gtceu.granite_copper_ore.prospected": "Copper", + "block.gtceu.granite_diamond_ore.prospected": "Diamond", + "block.gtceu.granite_diatomite_ore.prospected": "Diatomite", + "block.gtceu.granite_electrotine_ore.prospected": "Electrotine", + "block.gtceu.granite_emerald_ore.prospected": "Emerald", + "block.gtceu.granite_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.granite_galena_ore.prospected": "Galena", + "block.gtceu.granite_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.granite_garnierite_ore.prospected": "Garnierite", + "block.gtceu.granite_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.granite_goethite_ore.prospected": "Goethite", + "block.gtceu.granite_gold_ore.prospected": "Gold", + "block.gtceu.granite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.granite_graphite_ore.prospected": "Graphite", + "block.gtceu.granite_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.granite_grossular_ore.prospected": "Grossular", + "block.gtceu.granite_gypsum_ore.prospected": "Gypsum", + "block.gtceu.granite_hematite_ore.prospected": "Hematite", + "block.gtceu.granite_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.granite_iron_ore.prospected": "Iron", + "block.gtceu.granite_kyanite_ore.prospected": "Kyanite", + "block.gtceu.granite_lapis_ore.prospected": "Lapis", + "block.gtceu.granite_lazurite_ore.prospected": "Lazurite", + "block.gtceu.granite_lead_ore.prospected": "Lead", + "block.gtceu.granite_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.granite_lithium_ore.prospected": "Lithium", + "block.gtceu.granite_magnesite_ore.prospected": "Magnesite", + "block.gtceu.granite_magnetite_ore.prospected": "Magnetite", + "block.gtceu.granite_malachite_ore.prospected": "Malachite", + "block.gtceu.granite_mica_ore.prospected": "Mica", + "block.gtceu.granite_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.granite_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.granite_monazite_ore.prospected": "Monazite", + "block.gtceu.granite_naquadah_ore.prospected": "Naquadah", + "block.gtceu.granite_neodymium_ore.prospected": "Neodymium", + "block.gtceu.granite_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.granite_nickel_ore.prospected": "Nickel", + "block.gtceu.granite_oilsands_ore.prospected": "Oilsands", + "block.gtceu.granite_olivine_ore.prospected": "Olivine", + "block.gtceu.granite_opal_ore.prospected": "Opal", + "block.gtceu.granite_palladium_ore.prospected": "Palladium", + "block.gtceu.granite_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.granite_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.granite_platinum_ore.prospected": "Platinum", + "block.gtceu.granite_plutonium_ore.prospected": "Plutonium", + "block.gtceu.granite_pollucite_ore.prospected": "Pollucite", + "block.gtceu.granite_powellite_ore.prospected": "Powellite", + "block.gtceu.granite_pyrite_ore.prospected": "Pyrite", + "block.gtceu.granite_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.granite_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.granite_pyrope_ore.prospected": "Pyrope", + "block.gtceu.granite_quartzite_ore.prospected": "Quartzite", + "block.gtceu.granite_realgar_ore.prospected": "Realgar", + "block.gtceu.granite_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.granite_redstone_ore.prospected": "Redstone", + "block.gtceu.granite_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.granite_ruby_ore.prospected": "Ruby", + "block.gtceu.granite_salt_ore.prospected": "Salt", + "block.gtceu.granite_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.granite_sapphire_ore.prospected": "Sapphire", + "block.gtceu.granite_scheelite_ore.prospected": "Scheelite", + "block.gtceu.granite_silver_ore.prospected": "Silver", + "block.gtceu.granite_soapstone_ore.prospected": "Soapstone", + "block.gtceu.granite_sodalite_ore.prospected": "Sodalite", + "block.gtceu.granite_spessartine_ore.prospected": "Spessartine", + "block.gtceu.granite_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.granite_spodumene_ore.prospected": "Spodumene", + "block.gtceu.granite_stibnite_ore.prospected": "Stibnite", + "block.gtceu.granite_sulfur_ore.prospected": "Sulfur", + "block.gtceu.granite_sylvite_ore.prospected": "Sylvite", + "block.gtceu.granite_talc_ore.prospected": "Talc", + "block.gtceu.granite_tantalite_ore.prospected": "Tantalite", + "block.gtceu.granite_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.granite_thorium_ore.prospected": "Thorium", + "block.gtceu.granite_tin_ore.prospected": "Tin", + "block.gtceu.granite_topaz_ore.prospected": "Topaz", + "block.gtceu.granite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.granite_trona_ore.prospected": "Trona", + "block.gtceu.granite_tungstate_ore.prospected": "Tungstate", + "block.gtceu.granite_uraninite_ore.prospected": "Uraninite", + "block.gtceu.granite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.granite_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.granite_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.granite_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.granite_zeolite_ore.prospected": "Zeolite", + "block.gtceu.limestone_almandine_ore.prospected": "Almandine", + "block.gtceu.limestone_aluminium_ore.prospected": "Aluminium", + "block.gtceu.limestone_alunite_ore.prospected": "Alunite", + "block.gtceu.limestone_amethyst_ore.prospected": "Amethyst", + "block.gtceu.limestone_apatite_ore.prospected": "Apatite", + "block.gtceu.limestone_asbestos_ore.prospected": "Asbestos", + "block.gtceu.limestone_barite_ore.prospected": "Barite", + "block.gtceu.limestone_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.limestone_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.limestone_bauxite_ore.prospected": "Bauxite", + "block.gtceu.limestone_bentonite_ore.prospected": "Bentonite", + "block.gtceu.limestone_beryllium_ore.prospected": "Beryllium", + "block.gtceu.limestone_bismuth_ore.prospected": "Bismuth", + "block.gtceu.limestone_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.limestone_borax_ore.prospected": "Borax", + "block.gtceu.limestone_bornite_ore.prospected": "Bornite", + "block.gtceu.limestone_calcite_ore.prospected": "Calcite", + "block.gtceu.limestone_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.limestone_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.limestone_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.limestone_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.limestone_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.limestone_chromite_ore.prospected": "Chromite", + "block.gtceu.limestone_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.limestone_coal_ore.prospected": "Coal", + "block.gtceu.limestone_cobalt_ore.prospected": "Cobalt", + "block.gtceu.limestone_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.limestone_cooperite_ore.prospected": "Cooperite", + "block.gtceu.limestone_copper_ore.prospected": "Copper", + "block.gtceu.limestone_diamond_ore.prospected": "Diamond", + "block.gtceu.limestone_diatomite_ore.prospected": "Diatomite", + "block.gtceu.limestone_electrotine_ore.prospected": "Electrotine", + "block.gtceu.limestone_emerald_ore.prospected": "Emerald", + "block.gtceu.limestone_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.limestone_galena_ore.prospected": "Galena", + "block.gtceu.limestone_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.limestone_garnierite_ore.prospected": "Garnierite", + "block.gtceu.limestone_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.limestone_goethite_ore.prospected": "Goethite", + "block.gtceu.limestone_gold_ore.prospected": "Gold", + "block.gtceu.limestone_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.limestone_graphite_ore.prospected": "Graphite", + "block.gtceu.limestone_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.limestone_grossular_ore.prospected": "Grossular", + "block.gtceu.limestone_gypsum_ore.prospected": "Gypsum", + "block.gtceu.limestone_hematite_ore.prospected": "Hematite", + "block.gtceu.limestone_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.limestone_iron_ore.prospected": "Iron", + "block.gtceu.limestone_kyanite_ore.prospected": "Kyanite", + "block.gtceu.limestone_lapis_ore.prospected": "Lapis", + "block.gtceu.limestone_lazurite_ore.prospected": "Lazurite", + "block.gtceu.limestone_lead_ore.prospected": "Lead", + "block.gtceu.limestone_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.limestone_lithium_ore.prospected": "Lithium", + "block.gtceu.limestone_magnesite_ore.prospected": "Magnesite", + "block.gtceu.limestone_magnetite_ore.prospected": "Magnetite", + "block.gtceu.limestone_malachite_ore.prospected": "Malachite", + "block.gtceu.limestone_mica_ore.prospected": "Mica", + "block.gtceu.limestone_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.limestone_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.limestone_monazite_ore.prospected": "Monazite", + "block.gtceu.limestone_naquadah_ore.prospected": "Naquadah", + "block.gtceu.limestone_neodymium_ore.prospected": "Neodymium", + "block.gtceu.limestone_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.limestone_nickel_ore.prospected": "Nickel", + "block.gtceu.limestone_oilsands_ore.prospected": "Oilsands", + "block.gtceu.limestone_olivine_ore.prospected": "Olivine", + "block.gtceu.limestone_opal_ore.prospected": "Opal", + "block.gtceu.limestone_palladium_ore.prospected": "Palladium", + "block.gtceu.limestone_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.limestone_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.limestone_platinum_ore.prospected": "Platinum", + "block.gtceu.limestone_plutonium_ore.prospected": "Plutonium", + "block.gtceu.limestone_pollucite_ore.prospected": "Pollucite", + "block.gtceu.limestone_powellite_ore.prospected": "Powellite", + "block.gtceu.limestone_pyrite_ore.prospected": "Pyrite", + "block.gtceu.limestone_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.limestone_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.limestone_pyrope_ore.prospected": "Pyrope", + "block.gtceu.limestone_quartzite_ore.prospected": "Quartzite", + "block.gtceu.limestone_realgar_ore.prospected": "Realgar", + "block.gtceu.limestone_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.limestone_redstone_ore.prospected": "Redstone", + "block.gtceu.limestone_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.limestone_ruby_ore.prospected": "Ruby", + "block.gtceu.limestone_salt_ore.prospected": "Salt", + "block.gtceu.limestone_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.limestone_sapphire_ore.prospected": "Sapphire", + "block.gtceu.limestone_scheelite_ore.prospected": "Scheelite", + "block.gtceu.limestone_silver_ore.prospected": "Silver", + "block.gtceu.limestone_soapstone_ore.prospected": "Soapstone", + "block.gtceu.limestone_sodalite_ore.prospected": "Sodalite", + "block.gtceu.limestone_spessartine_ore.prospected": "Spessartine", + "block.gtceu.limestone_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.limestone_spodumene_ore.prospected": "Spodumene", + "block.gtceu.limestone_stibnite_ore.prospected": "Stibnite", + "block.gtceu.limestone_sulfur_ore.prospected": "Sulfur", + "block.gtceu.limestone_sylvite_ore.prospected": "Sylvite", + "block.gtceu.limestone_talc_ore.prospected": "Talc", + "block.gtceu.limestone_tantalite_ore.prospected": "Tantalite", + "block.gtceu.limestone_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.limestone_thorium_ore.prospected": "Thorium", + "block.gtceu.limestone_tin_ore.prospected": "Tin", + "block.gtceu.limestone_topaz_ore.prospected": "Topaz", + "block.gtceu.limestone_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.limestone_trona_ore.prospected": "Trona", + "block.gtceu.limestone_tungstate_ore.prospected": "Tungstate", + "block.gtceu.limestone_uraninite_ore.prospected": "Uraninite", + "block.gtceu.limestone_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.limestone_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.limestone_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.limestone_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.limestone_zeolite_ore.prospected": "Zeolite", + "block.gtceu.marble_almandine_ore.prospected": "Almandine", + "block.gtceu.marble_aluminium_ore.prospected": "Aluminium", + "block.gtceu.marble_alunite_ore.prospected": "Alunite", + "block.gtceu.marble_amethyst_ore.prospected": "Amethyst", + "block.gtceu.marble_apatite_ore.prospected": "Apatite", + "block.gtceu.marble_asbestos_ore.prospected": "Asbestos", + "block.gtceu.marble_barite_ore.prospected": "Barite", + "block.gtceu.marble_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.marble_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.marble_bauxite_ore.prospected": "Bauxite", + "block.gtceu.marble_bentonite_ore.prospected": "Bentonite", + "block.gtceu.marble_beryllium_ore.prospected": "Beryllium", + "block.gtceu.marble_bismuth_ore.prospected": "Bismuth", + "block.gtceu.marble_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.marble_borax_ore.prospected": "Borax", + "block.gtceu.marble_bornite_ore.prospected": "Bornite", + "block.gtceu.marble_calcite_ore.prospected": "Calcite", + "block.gtceu.marble_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.marble_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.marble_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.marble_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.marble_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.marble_chromite_ore.prospected": "Chromite", + "block.gtceu.marble_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.marble_coal_ore.prospected": "Coal", + "block.gtceu.marble_cobalt_ore.prospected": "Cobalt", + "block.gtceu.marble_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.marble_cooperite_ore.prospected": "Cooperite", + "block.gtceu.marble_copper_ore.prospected": "Copper", + "block.gtceu.marble_diamond_ore.prospected": "Diamond", + "block.gtceu.marble_diatomite_ore.prospected": "Diatomite", + "block.gtceu.marble_electrotine_ore.prospected": "Electrotine", + "block.gtceu.marble_emerald_ore.prospected": "Emerald", + "block.gtceu.marble_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.marble_galena_ore.prospected": "Galena", + "block.gtceu.marble_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.marble_garnierite_ore.prospected": "Garnierite", + "block.gtceu.marble_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.marble_goethite_ore.prospected": "Goethite", + "block.gtceu.marble_gold_ore.prospected": "Gold", + "block.gtceu.marble_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.marble_graphite_ore.prospected": "Graphite", + "block.gtceu.marble_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.marble_grossular_ore.prospected": "Grossular", + "block.gtceu.marble_gypsum_ore.prospected": "Gypsum", + "block.gtceu.marble_hematite_ore.prospected": "Hematite", + "block.gtceu.marble_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.marble_iron_ore.prospected": "Iron", + "block.gtceu.marble_kyanite_ore.prospected": "Kyanite", + "block.gtceu.marble_lapis_ore.prospected": "Lapis", + "block.gtceu.marble_lazurite_ore.prospected": "Lazurite", + "block.gtceu.marble_lead_ore.prospected": "Lead", + "block.gtceu.marble_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.marble_lithium_ore.prospected": "Lithium", + "block.gtceu.marble_magnesite_ore.prospected": "Magnesite", + "block.gtceu.marble_magnetite_ore.prospected": "Magnetite", + "block.gtceu.marble_malachite_ore.prospected": "Malachite", + "block.gtceu.marble_mica_ore.prospected": "Mica", + "block.gtceu.marble_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.marble_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.marble_monazite_ore.prospected": "Monazite", + "block.gtceu.marble_naquadah_ore.prospected": "Naquadah", + "block.gtceu.marble_neodymium_ore.prospected": "Neodymium", + "block.gtceu.marble_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.marble_nickel_ore.prospected": "Nickel", + "block.gtceu.marble_oilsands_ore.prospected": "Oilsands", + "block.gtceu.marble_olivine_ore.prospected": "Olivine", + "block.gtceu.marble_opal_ore.prospected": "Opal", + "block.gtceu.marble_palladium_ore.prospected": "Palladium", + "block.gtceu.marble_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.marble_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.marble_platinum_ore.prospected": "Platinum", + "block.gtceu.marble_plutonium_ore.prospected": "Plutonium", + "block.gtceu.marble_pollucite_ore.prospected": "Pollucite", + "block.gtceu.marble_powellite_ore.prospected": "Powellite", + "block.gtceu.marble_pyrite_ore.prospected": "Pyrite", + "block.gtceu.marble_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.marble_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.marble_pyrope_ore.prospected": "Pyrope", + "block.gtceu.marble_quartzite_ore.prospected": "Quartzite", + "block.gtceu.marble_realgar_ore.prospected": "Realgar", + "block.gtceu.marble_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.marble_redstone_ore.prospected": "Redstone", + "block.gtceu.marble_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.marble_ruby_ore.prospected": "Ruby", + "block.gtceu.marble_salt_ore.prospected": "Salt", + "block.gtceu.marble_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.marble_sapphire_ore.prospected": "Sapphire", + "block.gtceu.marble_scheelite_ore.prospected": "Scheelite", + "block.gtceu.marble_silver_ore.prospected": "Silver", + "block.gtceu.marble_soapstone_ore.prospected": "Soapstone", + "block.gtceu.marble_sodalite_ore.prospected": "Sodalite", + "block.gtceu.marble_spessartine_ore.prospected": "Spessartine", + "block.gtceu.marble_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.marble_spodumene_ore.prospected": "Spodumene", + "block.gtceu.marble_stibnite_ore.prospected": "Stibnite", + "block.gtceu.marble_sulfur_ore.prospected": "Sulfur", + "block.gtceu.marble_sylvite_ore.prospected": "Sylvite", + "block.gtceu.marble_talc_ore.prospected": "Talc", + "block.gtceu.marble_tantalite_ore.prospected": "Tantalite", + "block.gtceu.marble_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.marble_thorium_ore.prospected": "Thorium", + "block.gtceu.marble_tin_ore.prospected": "Tin", + "block.gtceu.marble_topaz_ore.prospected": "Topaz", + "block.gtceu.marble_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.marble_trona_ore.prospected": "Trona", + "block.gtceu.marble_tungstate_ore.prospected": "Tungstate", + "block.gtceu.marble_uraninite_ore.prospected": "Uraninite", + "block.gtceu.marble_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.marble_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.marble_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.marble_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.marble_zeolite_ore.prospected": "Zeolite", + "block.gtceu.phyllite_almandine_ore.prospected": "Almandine", + "block.gtceu.phyllite_aluminium_ore.prospected": "Aluminium", + "block.gtceu.phyllite_alunite_ore.prospected": "Alunite", + "block.gtceu.phyllite_amethyst_ore.prospected": "Amethyst", + "block.gtceu.phyllite_apatite_ore.prospected": "Apatite", + "block.gtceu.phyllite_asbestos_ore.prospected": "Asbestos", + "block.gtceu.phyllite_barite_ore.prospected": "Barite", + "block.gtceu.phyllite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.phyllite_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.phyllite_bauxite_ore.prospected": "Bauxite", + "block.gtceu.phyllite_bentonite_ore.prospected": "Bentonite", + "block.gtceu.phyllite_beryllium_ore.prospected": "Beryllium", + "block.gtceu.phyllite_bismuth_ore.prospected": "Bismuth", + "block.gtceu.phyllite_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.phyllite_borax_ore.prospected": "Borax", + "block.gtceu.phyllite_bornite_ore.prospected": "Bornite", + "block.gtceu.phyllite_calcite_ore.prospected": "Calcite", + "block.gtceu.phyllite_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.phyllite_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.phyllite_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.phyllite_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.phyllite_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.phyllite_chromite_ore.prospected": "Chromite", + "block.gtceu.phyllite_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.phyllite_coal_ore.prospected": "Coal", + "block.gtceu.phyllite_cobalt_ore.prospected": "Cobalt", + "block.gtceu.phyllite_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.phyllite_cooperite_ore.prospected": "Cooperite", + "block.gtceu.phyllite_copper_ore.prospected": "Copper", + "block.gtceu.phyllite_diamond_ore.prospected": "Diamond", + "block.gtceu.phyllite_diatomite_ore.prospected": "Diatomite", + "block.gtceu.phyllite_electrotine_ore.prospected": "Electrotine", + "block.gtceu.phyllite_emerald_ore.prospected": "Emerald", + "block.gtceu.phyllite_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.phyllite_galena_ore.prospected": "Galena", + "block.gtceu.phyllite_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.phyllite_garnierite_ore.prospected": "Garnierite", + "block.gtceu.phyllite_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.phyllite_goethite_ore.prospected": "Goethite", + "block.gtceu.phyllite_gold_ore.prospected": "Gold", + "block.gtceu.phyllite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.phyllite_graphite_ore.prospected": "Graphite", + "block.gtceu.phyllite_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.phyllite_grossular_ore.prospected": "Grossular", + "block.gtceu.phyllite_gypsum_ore.prospected": "Gypsum", + "block.gtceu.phyllite_hematite_ore.prospected": "Hematite", + "block.gtceu.phyllite_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.phyllite_iron_ore.prospected": "Iron", + "block.gtceu.phyllite_kyanite_ore.prospected": "Kyanite", + "block.gtceu.phyllite_lapis_ore.prospected": "Lapis", + "block.gtceu.phyllite_lazurite_ore.prospected": "Lazurite", + "block.gtceu.phyllite_lead_ore.prospected": "Lead", + "block.gtceu.phyllite_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.phyllite_lithium_ore.prospected": "Lithium", + "block.gtceu.phyllite_magnesite_ore.prospected": "Magnesite", + "block.gtceu.phyllite_magnetite_ore.prospected": "Magnetite", + "block.gtceu.phyllite_malachite_ore.prospected": "Malachite", + "block.gtceu.phyllite_mica_ore.prospected": "Mica", + "block.gtceu.phyllite_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.phyllite_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.phyllite_monazite_ore.prospected": "Monazite", + "block.gtceu.phyllite_naquadah_ore.prospected": "Naquadah", + "block.gtceu.phyllite_neodymium_ore.prospected": "Neodymium", + "block.gtceu.phyllite_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.phyllite_nickel_ore.prospected": "Nickel", + "block.gtceu.phyllite_oilsands_ore.prospected": "Oilsands", + "block.gtceu.phyllite_olivine_ore.prospected": "Olivine", + "block.gtceu.phyllite_opal_ore.prospected": "Opal", + "block.gtceu.phyllite_palladium_ore.prospected": "Palladium", + "block.gtceu.phyllite_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.phyllite_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.phyllite_platinum_ore.prospected": "Platinum", + "block.gtceu.phyllite_plutonium_ore.prospected": "Plutonium", + "block.gtceu.phyllite_pollucite_ore.prospected": "Pollucite", + "block.gtceu.phyllite_powellite_ore.prospected": "Powellite", + "block.gtceu.phyllite_pyrite_ore.prospected": "Pyrite", + "block.gtceu.phyllite_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.phyllite_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.phyllite_pyrope_ore.prospected": "Pyrope", + "block.gtceu.phyllite_quartzite_ore.prospected": "Quartzite", + "block.gtceu.phyllite_realgar_ore.prospected": "Realgar", + "block.gtceu.phyllite_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.phyllite_redstone_ore.prospected": "Redstone", + "block.gtceu.phyllite_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.phyllite_ruby_ore.prospected": "Ruby", + "block.gtceu.phyllite_salt_ore.prospected": "Salt", + "block.gtceu.phyllite_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.phyllite_sapphire_ore.prospected": "Sapphire", + "block.gtceu.phyllite_scheelite_ore.prospected": "Scheelite", + "block.gtceu.phyllite_silver_ore.prospected": "Silver", + "block.gtceu.phyllite_soapstone_ore.prospected": "Soapstone", + "block.gtceu.phyllite_sodalite_ore.prospected": "Sodalite", + "block.gtceu.phyllite_spessartine_ore.prospected": "Spessartine", + "block.gtceu.phyllite_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.phyllite_spodumene_ore.prospected": "Spodumene", + "block.gtceu.phyllite_stibnite_ore.prospected": "Stibnite", + "block.gtceu.phyllite_sulfur_ore.prospected": "Sulfur", + "block.gtceu.phyllite_sylvite_ore.prospected": "Sylvite", + "block.gtceu.phyllite_talc_ore.prospected": "Talc", + "block.gtceu.phyllite_tantalite_ore.prospected": "Tantalite", + "block.gtceu.phyllite_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.phyllite_thorium_ore.prospected": "Thorium", + "block.gtceu.phyllite_tin_ore.prospected": "Tin", + "block.gtceu.phyllite_topaz_ore.prospected": "Topaz", + "block.gtceu.phyllite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.phyllite_trona_ore.prospected": "Trona", + "block.gtceu.phyllite_tungstate_ore.prospected": "Tungstate", + "block.gtceu.phyllite_uraninite_ore.prospected": "Uraninite", + "block.gtceu.phyllite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.phyllite_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.phyllite_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.phyllite_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.phyllite_zeolite_ore.prospected": "Zeolite", + "block.gtceu.quartzite_almandine_ore.prospected": "Almandine", + "block.gtceu.quartzite_aluminium_ore.prospected": "Aluminium", + "block.gtceu.quartzite_alunite_ore.prospected": "Alunite", + "block.gtceu.quartzite_amethyst_ore.prospected": "Amethyst", + "block.gtceu.quartzite_apatite_ore.prospected": "Apatite", + "block.gtceu.quartzite_asbestos_ore.prospected": "Asbestos", + "block.gtceu.quartzite_barite_ore.prospected": "Barite", + "block.gtceu.quartzite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.quartzite_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.quartzite_bauxite_ore.prospected": "Bauxite", + "block.gtceu.quartzite_bentonite_ore.prospected": "Bentonite", + "block.gtceu.quartzite_beryllium_ore.prospected": "Beryllium", + "block.gtceu.quartzite_bismuth_ore.prospected": "Bismuth", + "block.gtceu.quartzite_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.quartzite_borax_ore.prospected": "Borax", + "block.gtceu.quartzite_bornite_ore.prospected": "Bornite", + "block.gtceu.quartzite_calcite_ore.prospected": "Calcite", + "block.gtceu.quartzite_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.quartzite_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.quartzite_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.quartzite_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.quartzite_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.quartzite_chromite_ore.prospected": "Chromite", + "block.gtceu.quartzite_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.quartzite_coal_ore.prospected": "Coal", + "block.gtceu.quartzite_cobalt_ore.prospected": "Cobalt", + "block.gtceu.quartzite_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.quartzite_cooperite_ore.prospected": "Cooperite", + "block.gtceu.quartzite_copper_ore.prospected": "Copper", + "block.gtceu.quartzite_diamond_ore.prospected": "Diamond", + "block.gtceu.quartzite_diatomite_ore.prospected": "Diatomite", + "block.gtceu.quartzite_electrotine_ore.prospected": "Electrotine", + "block.gtceu.quartzite_emerald_ore.prospected": "Emerald", + "block.gtceu.quartzite_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.quartzite_galena_ore.prospected": "Galena", + "block.gtceu.quartzite_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.quartzite_garnierite_ore.prospected": "Garnierite", + "block.gtceu.quartzite_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.quartzite_goethite_ore.prospected": "Goethite", + "block.gtceu.quartzite_gold_ore.prospected": "Gold", + "block.gtceu.quartzite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.quartzite_graphite_ore.prospected": "Graphite", + "block.gtceu.quartzite_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.quartzite_grossular_ore.prospected": "Grossular", + "block.gtceu.quartzite_gypsum_ore.prospected": "Gypsum", + "block.gtceu.quartzite_hematite_ore.prospected": "Hematite", + "block.gtceu.quartzite_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.quartzite_iron_ore.prospected": "Iron", + "block.gtceu.quartzite_kyanite_ore.prospected": "Kyanite", + "block.gtceu.quartzite_lapis_ore.prospected": "Lapis", + "block.gtceu.quartzite_lazurite_ore.prospected": "Lazurite", + "block.gtceu.quartzite_lead_ore.prospected": "Lead", + "block.gtceu.quartzite_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.quartzite_lithium_ore.prospected": "Lithium", + "block.gtceu.quartzite_magnesite_ore.prospected": "Magnesite", + "block.gtceu.quartzite_magnetite_ore.prospected": "Magnetite", + "block.gtceu.quartzite_malachite_ore.prospected": "Malachite", + "block.gtceu.quartzite_mica_ore.prospected": "Mica", + "block.gtceu.quartzite_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.quartzite_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.quartzite_monazite_ore.prospected": "Monazite", + "block.gtceu.quartzite_naquadah_ore.prospected": "Naquadah", + "block.gtceu.quartzite_neodymium_ore.prospected": "Neodymium", + "block.gtceu.quartzite_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.quartzite_nickel_ore.prospected": "Nickel", + "block.gtceu.quartzite_oilsands_ore.prospected": "Oilsands", + "block.gtceu.quartzite_olivine_ore.prospected": "Olivine", + "block.gtceu.quartzite_opal_ore.prospected": "Opal", + "block.gtceu.quartzite_palladium_ore.prospected": "Palladium", + "block.gtceu.quartzite_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.quartzite_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.quartzite_platinum_ore.prospected": "Platinum", + "block.gtceu.quartzite_plutonium_ore.prospected": "Plutonium", + "block.gtceu.quartzite_pollucite_ore.prospected": "Pollucite", + "block.gtceu.quartzite_powellite_ore.prospected": "Powellite", + "block.gtceu.quartzite_pyrite_ore.prospected": "Pyrite", + "block.gtceu.quartzite_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.quartzite_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.quartzite_pyrope_ore.prospected": "Pyrope", + "block.gtceu.quartzite_quartzite_ore.prospected": "Quartzite", + "block.gtceu.quartzite_realgar_ore.prospected": "Realgar", + "block.gtceu.quartzite_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.quartzite_redstone_ore.prospected": "Redstone", + "block.gtceu.quartzite_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.quartzite_ruby_ore.prospected": "Ruby", + "block.gtceu.quartzite_salt_ore.prospected": "Salt", + "block.gtceu.quartzite_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.quartzite_sapphire_ore.prospected": "Sapphire", + "block.gtceu.quartzite_scheelite_ore.prospected": "Scheelite", + "block.gtceu.quartzite_silver_ore.prospected": "Silver", + "block.gtceu.quartzite_soapstone_ore.prospected": "Soapstone", + "block.gtceu.quartzite_sodalite_ore.prospected": "Sodalite", + "block.gtceu.quartzite_spessartine_ore.prospected": "Spessartine", + "block.gtceu.quartzite_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.quartzite_spodumene_ore.prospected": "Spodumene", + "block.gtceu.quartzite_stibnite_ore.prospected": "Stibnite", + "block.gtceu.quartzite_sulfur_ore.prospected": "Sulfur", + "block.gtceu.quartzite_sylvite_ore.prospected": "Sylvite", + "block.gtceu.quartzite_talc_ore.prospected": "Talc", + "block.gtceu.quartzite_tantalite_ore.prospected": "Tantalite", + "block.gtceu.quartzite_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.quartzite_thorium_ore.prospected": "Thorium", + "block.gtceu.quartzite_tin_ore.prospected": "Tin", + "block.gtceu.quartzite_topaz_ore.prospected": "Topaz", + "block.gtceu.quartzite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.quartzite_trona_ore.prospected": "Trona", + "block.gtceu.quartzite_tungstate_ore.prospected": "Tungstate", + "block.gtceu.quartzite_uraninite_ore.prospected": "Uraninite", + "block.gtceu.quartzite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.quartzite_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.quartzite_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.quartzite_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.quartzite_zeolite_ore.prospected": "Zeolite", + "block.gtceu.rhyolite_almandine_ore.prospected": "Almandine", + "block.gtceu.rhyolite_aluminium_ore.prospected": "Aluminium", + "block.gtceu.rhyolite_alunite_ore.prospected": "Alunite", + "block.gtceu.rhyolite_amethyst_ore.prospected": "Amethyst", + "block.gtceu.rhyolite_apatite_ore.prospected": "Apatite", + "block.gtceu.rhyolite_asbestos_ore.prospected": "Asbestos", + "block.gtceu.rhyolite_barite_ore.prospected": "Barite", + "block.gtceu.rhyolite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.rhyolite_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.rhyolite_bauxite_ore.prospected": "Bauxite", + "block.gtceu.rhyolite_bentonite_ore.prospected": "Bentonite", + "block.gtceu.rhyolite_beryllium_ore.prospected": "Beryllium", + "block.gtceu.rhyolite_bismuth_ore.prospected": "Bismuth", + "block.gtceu.rhyolite_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.rhyolite_borax_ore.prospected": "Borax", + "block.gtceu.rhyolite_bornite_ore.prospected": "Bornite", + "block.gtceu.rhyolite_calcite_ore.prospected": "Calcite", + "block.gtceu.rhyolite_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.rhyolite_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.rhyolite_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.rhyolite_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.rhyolite_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.rhyolite_chromite_ore.prospected": "Chromite", + "block.gtceu.rhyolite_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.rhyolite_coal_ore.prospected": "Coal", + "block.gtceu.rhyolite_cobalt_ore.prospected": "Cobalt", + "block.gtceu.rhyolite_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.rhyolite_cooperite_ore.prospected": "Cooperite", + "block.gtceu.rhyolite_copper_ore.prospected": "Copper", + "block.gtceu.rhyolite_diamond_ore.prospected": "Diamond", + "block.gtceu.rhyolite_diatomite_ore.prospected": "Diatomite", + "block.gtceu.rhyolite_electrotine_ore.prospected": "Electrotine", + "block.gtceu.rhyolite_emerald_ore.prospected": "Emerald", + "block.gtceu.rhyolite_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.rhyolite_galena_ore.prospected": "Galena", + "block.gtceu.rhyolite_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.rhyolite_garnierite_ore.prospected": "Garnierite", + "block.gtceu.rhyolite_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.rhyolite_goethite_ore.prospected": "Goethite", + "block.gtceu.rhyolite_gold_ore.prospected": "Gold", + "block.gtceu.rhyolite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.rhyolite_graphite_ore.prospected": "Graphite", + "block.gtceu.rhyolite_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.rhyolite_grossular_ore.prospected": "Grossular", + "block.gtceu.rhyolite_gypsum_ore.prospected": "Gypsum", + "block.gtceu.rhyolite_hematite_ore.prospected": "Hematite", + "block.gtceu.rhyolite_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.rhyolite_iron_ore.prospected": "Iron", + "block.gtceu.rhyolite_kyanite_ore.prospected": "Kyanite", + "block.gtceu.rhyolite_lapis_ore.prospected": "Lapis", + "block.gtceu.rhyolite_lazurite_ore.prospected": "Lazurite", + "block.gtceu.rhyolite_lead_ore.prospected": "Lead", + "block.gtceu.rhyolite_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.rhyolite_lithium_ore.prospected": "Lithium", + "block.gtceu.rhyolite_magnesite_ore.prospected": "Magnesite", + "block.gtceu.rhyolite_magnetite_ore.prospected": "Magnetite", + "block.gtceu.rhyolite_malachite_ore.prospected": "Malachite", + "block.gtceu.rhyolite_mica_ore.prospected": "Mica", + "block.gtceu.rhyolite_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.rhyolite_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.rhyolite_monazite_ore.prospected": "Monazite", + "block.gtceu.rhyolite_naquadah_ore.prospected": "Naquadah", + "block.gtceu.rhyolite_neodymium_ore.prospected": "Neodymium", + "block.gtceu.rhyolite_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.rhyolite_nickel_ore.prospected": "Nickel", + "block.gtceu.rhyolite_oilsands_ore.prospected": "Oilsands", + "block.gtceu.rhyolite_olivine_ore.prospected": "Olivine", + "block.gtceu.rhyolite_opal_ore.prospected": "Opal", + "block.gtceu.rhyolite_palladium_ore.prospected": "Palladium", + "block.gtceu.rhyolite_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.rhyolite_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.rhyolite_platinum_ore.prospected": "Platinum", + "block.gtceu.rhyolite_plutonium_ore.prospected": "Plutonium", + "block.gtceu.rhyolite_pollucite_ore.prospected": "Pollucite", + "block.gtceu.rhyolite_powellite_ore.prospected": "Powellite", + "block.gtceu.rhyolite_pyrite_ore.prospected": "Pyrite", + "block.gtceu.rhyolite_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.rhyolite_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.rhyolite_pyrope_ore.prospected": "Pyrope", + "block.gtceu.rhyolite_quartzite_ore.prospected": "Quartzite", + "block.gtceu.rhyolite_realgar_ore.prospected": "Realgar", + "block.gtceu.rhyolite_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.rhyolite_redstone_ore.prospected": "Redstone", + "block.gtceu.rhyolite_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.rhyolite_ruby_ore.prospected": "Ruby", + "block.gtceu.rhyolite_salt_ore.prospected": "Salt", + "block.gtceu.rhyolite_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.rhyolite_sapphire_ore.prospected": "Sapphire", + "block.gtceu.rhyolite_scheelite_ore.prospected": "Scheelite", + "block.gtceu.rhyolite_silver_ore.prospected": "Silver", + "block.gtceu.rhyolite_soapstone_ore.prospected": "Soapstone", + "block.gtceu.rhyolite_sodalite_ore.prospected": "Sodalite", + "block.gtceu.rhyolite_spessartine_ore.prospected": "Spessartine", + "block.gtceu.rhyolite_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.rhyolite_spodumene_ore.prospected": "Spodumene", + "block.gtceu.rhyolite_stibnite_ore.prospected": "Stibnite", + "block.gtceu.rhyolite_sulfur_ore.prospected": "Sulfur", + "block.gtceu.rhyolite_sylvite_ore.prospected": "Sylvite", + "block.gtceu.rhyolite_talc_ore.prospected": "Talc", + "block.gtceu.rhyolite_tantalite_ore.prospected": "Tantalite", + "block.gtceu.rhyolite_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.rhyolite_thorium_ore.prospected": "Thorium", + "block.gtceu.rhyolite_tin_ore.prospected": "Tin", + "block.gtceu.rhyolite_topaz_ore.prospected": "Topaz", + "block.gtceu.rhyolite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.rhyolite_trona_ore.prospected": "Trona", + "block.gtceu.rhyolite_tungstate_ore.prospected": "Tungstate", + "block.gtceu.rhyolite_uraninite_ore.prospected": "Uraninite", + "block.gtceu.rhyolite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.rhyolite_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.rhyolite_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.rhyolite_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.rhyolite_zeolite_ore.prospected": "Zeolite", + "block.gtceu.schist_almandine_ore.prospected": "Almandine", + "block.gtceu.schist_aluminium_ore.prospected": "Aluminium", + "block.gtceu.schist_alunite_ore.prospected": "Alunite", + "block.gtceu.schist_amethyst_ore.prospected": "Amethyst", + "block.gtceu.schist_apatite_ore.prospected": "Apatite", + "block.gtceu.schist_asbestos_ore.prospected": "Asbestos", + "block.gtceu.schist_barite_ore.prospected": "Barite", + "block.gtceu.schist_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.schist_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.schist_bauxite_ore.prospected": "Bauxite", + "block.gtceu.schist_bentonite_ore.prospected": "Bentonite", + "block.gtceu.schist_beryllium_ore.prospected": "Beryllium", + "block.gtceu.schist_bismuth_ore.prospected": "Bismuth", + "block.gtceu.schist_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.schist_borax_ore.prospected": "Borax", + "block.gtceu.schist_bornite_ore.prospected": "Bornite", + "block.gtceu.schist_calcite_ore.prospected": "Calcite", + "block.gtceu.schist_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.schist_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.schist_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.schist_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.schist_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.schist_chromite_ore.prospected": "Chromite", + "block.gtceu.schist_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.schist_coal_ore.prospected": "Coal", + "block.gtceu.schist_cobalt_ore.prospected": "Cobalt", + "block.gtceu.schist_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.schist_cooperite_ore.prospected": "Cooperite", + "block.gtceu.schist_copper_ore.prospected": "Copper", + "block.gtceu.schist_diamond_ore.prospected": "Diamond", + "block.gtceu.schist_diatomite_ore.prospected": "Diatomite", + "block.gtceu.schist_electrotine_ore.prospected": "Electrotine", + "block.gtceu.schist_emerald_ore.prospected": "Emerald", + "block.gtceu.schist_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.schist_galena_ore.prospected": "Galena", + "block.gtceu.schist_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.schist_garnierite_ore.prospected": "Garnierite", + "block.gtceu.schist_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.schist_goethite_ore.prospected": "Goethite", + "block.gtceu.schist_gold_ore.prospected": "Gold", + "block.gtceu.schist_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.schist_graphite_ore.prospected": "Graphite", + "block.gtceu.schist_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.schist_grossular_ore.prospected": "Grossular", + "block.gtceu.schist_gypsum_ore.prospected": "Gypsum", + "block.gtceu.schist_hematite_ore.prospected": "Hematite", + "block.gtceu.schist_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.schist_iron_ore.prospected": "Iron", + "block.gtceu.schist_kyanite_ore.prospected": "Kyanite", + "block.gtceu.schist_lapis_ore.prospected": "Lapis", + "block.gtceu.schist_lazurite_ore.prospected": "Lazurite", + "block.gtceu.schist_lead_ore.prospected": "Lead", + "block.gtceu.schist_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.schist_lithium_ore.prospected": "Lithium", + "block.gtceu.schist_magnesite_ore.prospected": "Magnesite", + "block.gtceu.schist_magnetite_ore.prospected": "Magnetite", + "block.gtceu.schist_malachite_ore.prospected": "Malachite", + "block.gtceu.schist_mica_ore.prospected": "Mica", + "block.gtceu.schist_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.schist_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.schist_monazite_ore.prospected": "Monazite", + "block.gtceu.schist_naquadah_ore.prospected": "Naquadah", + "block.gtceu.schist_neodymium_ore.prospected": "Neodymium", + "block.gtceu.schist_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.schist_nickel_ore.prospected": "Nickel", + "block.gtceu.schist_oilsands_ore.prospected": "Oilsands", + "block.gtceu.schist_olivine_ore.prospected": "Olivine", + "block.gtceu.schist_opal_ore.prospected": "Opal", + "block.gtceu.schist_palladium_ore.prospected": "Palladium", + "block.gtceu.schist_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.schist_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.schist_platinum_ore.prospected": "Platinum", + "block.gtceu.schist_plutonium_ore.prospected": "Plutonium", + "block.gtceu.schist_pollucite_ore.prospected": "Pollucite", + "block.gtceu.schist_powellite_ore.prospected": "Powellite", + "block.gtceu.schist_pyrite_ore.prospected": "Pyrite", + "block.gtceu.schist_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.schist_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.schist_pyrope_ore.prospected": "Pyrope", + "block.gtceu.schist_quartzite_ore.prospected": "Quartzite", + "block.gtceu.schist_realgar_ore.prospected": "Realgar", + "block.gtceu.schist_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.schist_redstone_ore.prospected": "Redstone", + "block.gtceu.schist_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.schist_ruby_ore.prospected": "Ruby", + "block.gtceu.schist_salt_ore.prospected": "Salt", + "block.gtceu.schist_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.schist_sapphire_ore.prospected": "Sapphire", + "block.gtceu.schist_scheelite_ore.prospected": "Scheelite", + "block.gtceu.schist_silver_ore.prospected": "Silver", + "block.gtceu.schist_soapstone_ore.prospected": "Soapstone", + "block.gtceu.schist_sodalite_ore.prospected": "Sodalite", + "block.gtceu.schist_spessartine_ore.prospected": "Spessartine", + "block.gtceu.schist_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.schist_spodumene_ore.prospected": "Spodumene", + "block.gtceu.schist_stibnite_ore.prospected": "Stibnite", + "block.gtceu.schist_sulfur_ore.prospected": "Sulfur", + "block.gtceu.schist_sylvite_ore.prospected": "Sylvite", + "block.gtceu.schist_talc_ore.prospected": "Talc", + "block.gtceu.schist_tantalite_ore.prospected": "Tantalite", + "block.gtceu.schist_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.schist_thorium_ore.prospected": "Thorium", + "block.gtceu.schist_tin_ore.prospected": "Tin", + "block.gtceu.schist_topaz_ore.prospected": "Topaz", + "block.gtceu.schist_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.schist_trona_ore.prospected": "Trona", + "block.gtceu.schist_tungstate_ore.prospected": "Tungstate", + "block.gtceu.schist_uraninite_ore.prospected": "Uraninite", + "block.gtceu.schist_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.schist_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.schist_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.schist_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.schist_zeolite_ore.prospected": "Zeolite", + "block.gtceu.shale_almandine_ore.prospected": "Almandine", + "block.gtceu.shale_aluminium_ore.prospected": "Aluminium", + "block.gtceu.shale_alunite_ore.prospected": "Alunite", + "block.gtceu.shale_amethyst_ore.prospected": "Amethyst", + "block.gtceu.shale_apatite_ore.prospected": "Apatite", + "block.gtceu.shale_asbestos_ore.prospected": "Asbestos", + "block.gtceu.shale_barite_ore.prospected": "Barite", + "block.gtceu.shale_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.shale_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.shale_bauxite_ore.prospected": "Bauxite", + "block.gtceu.shale_bentonite_ore.prospected": "Bentonite", + "block.gtceu.shale_beryllium_ore.prospected": "Beryllium", + "block.gtceu.shale_bismuth_ore.prospected": "Bismuth", + "block.gtceu.shale_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.shale_borax_ore.prospected": "Borax", + "block.gtceu.shale_bornite_ore.prospected": "Bornite", + "block.gtceu.shale_calcite_ore.prospected": "Calcite", + "block.gtceu.shale_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.shale_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.shale_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.shale_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.shale_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.shale_chromite_ore.prospected": "Chromite", + "block.gtceu.shale_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.shale_coal_ore.prospected": "Coal", + "block.gtceu.shale_cobalt_ore.prospected": "Cobalt", + "block.gtceu.shale_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.shale_cooperite_ore.prospected": "Cooperite", + "block.gtceu.shale_copper_ore.prospected": "Copper", + "block.gtceu.shale_diamond_ore.prospected": "Diamond", + "block.gtceu.shale_diatomite_ore.prospected": "Diatomite", + "block.gtceu.shale_electrotine_ore.prospected": "Electrotine", + "block.gtceu.shale_emerald_ore.prospected": "Emerald", + "block.gtceu.shale_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.shale_galena_ore.prospected": "Galena", + "block.gtceu.shale_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.shale_garnierite_ore.prospected": "Garnierite", + "block.gtceu.shale_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.shale_goethite_ore.prospected": "Goethite", + "block.gtceu.shale_gold_ore.prospected": "Gold", + "block.gtceu.shale_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.shale_graphite_ore.prospected": "Graphite", + "block.gtceu.shale_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.shale_grossular_ore.prospected": "Grossular", + "block.gtceu.shale_gypsum_ore.prospected": "Gypsum", + "block.gtceu.shale_hematite_ore.prospected": "Hematite", + "block.gtceu.shale_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.shale_iron_ore.prospected": "Iron", + "block.gtceu.shale_kyanite_ore.prospected": "Kyanite", + "block.gtceu.shale_lapis_ore.prospected": "Lapis", + "block.gtceu.shale_lazurite_ore.prospected": "Lazurite", + "block.gtceu.shale_lead_ore.prospected": "Lead", + "block.gtceu.shale_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.shale_lithium_ore.prospected": "Lithium", + "block.gtceu.shale_magnesite_ore.prospected": "Magnesite", + "block.gtceu.shale_magnetite_ore.prospected": "Magnetite", + "block.gtceu.shale_malachite_ore.prospected": "Malachite", + "block.gtceu.shale_mica_ore.prospected": "Mica", + "block.gtceu.shale_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.shale_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.shale_monazite_ore.prospected": "Monazite", + "block.gtceu.shale_naquadah_ore.prospected": "Naquadah", + "block.gtceu.shale_neodymium_ore.prospected": "Neodymium", + "block.gtceu.shale_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.shale_nickel_ore.prospected": "Nickel", + "block.gtceu.shale_oilsands_ore.prospected": "Oilsands", + "block.gtceu.shale_olivine_ore.prospected": "Olivine", + "block.gtceu.shale_opal_ore.prospected": "Opal", + "block.gtceu.shale_palladium_ore.prospected": "Palladium", + "block.gtceu.shale_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.shale_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.shale_platinum_ore.prospected": "Platinum", + "block.gtceu.shale_plutonium_ore.prospected": "Plutonium", + "block.gtceu.shale_pollucite_ore.prospected": "Pollucite", + "block.gtceu.shale_powellite_ore.prospected": "Powellite", + "block.gtceu.shale_pyrite_ore.prospected": "Pyrite", + "block.gtceu.shale_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.shale_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.shale_pyrope_ore.prospected": "Pyrope", + "block.gtceu.shale_quartzite_ore.prospected": "Quartzite", + "block.gtceu.shale_realgar_ore.prospected": "Realgar", + "block.gtceu.shale_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.shale_redstone_ore.prospected": "Redstone", + "block.gtceu.shale_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.shale_ruby_ore.prospected": "Ruby", + "block.gtceu.shale_salt_ore.prospected": "Salt", + "block.gtceu.shale_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.shale_sapphire_ore.prospected": "Sapphire", + "block.gtceu.shale_scheelite_ore.prospected": "Scheelite", + "block.gtceu.shale_silver_ore.prospected": "Silver", + "block.gtceu.shale_soapstone_ore.prospected": "Soapstone", + "block.gtceu.shale_sodalite_ore.prospected": "Sodalite", + "block.gtceu.shale_spessartine_ore.prospected": "Spessartine", + "block.gtceu.shale_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.shale_spodumene_ore.prospected": "Spodumene", + "block.gtceu.shale_stibnite_ore.prospected": "Stibnite", + "block.gtceu.shale_sulfur_ore.prospected": "Sulfur", + "block.gtceu.shale_sylvite_ore.prospected": "Sylvite", + "block.gtceu.shale_talc_ore.prospected": "Talc", + "block.gtceu.shale_tantalite_ore.prospected": "Tantalite", + "block.gtceu.shale_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.shale_thorium_ore.prospected": "Thorium", + "block.gtceu.shale_tin_ore.prospected": "Tin", + "block.gtceu.shale_topaz_ore.prospected": "Topaz", + "block.gtceu.shale_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.shale_trona_ore.prospected": "Trona", + "block.gtceu.shale_tungstate_ore.prospected": "Tungstate", + "block.gtceu.shale_uraninite_ore.prospected": "Uraninite", + "block.gtceu.shale_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.shale_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.shale_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.shale_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.shale_zeolite_ore.prospected": "Zeolite", + "block.gtceu.slate_almandine_ore.prospected": "Almandine", + "block.gtceu.slate_aluminium_ore.prospected": "Aluminium", + "block.gtceu.slate_alunite_ore.prospected": "Alunite", + "block.gtceu.slate_amethyst_ore.prospected": "Amethyst", + "block.gtceu.slate_apatite_ore.prospected": "Apatite", + "block.gtceu.slate_asbestos_ore.prospected": "Asbestos", + "block.gtceu.slate_barite_ore.prospected": "Barite", + "block.gtceu.slate_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.slate_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.slate_bauxite_ore.prospected": "Bauxite", + "block.gtceu.slate_bentonite_ore.prospected": "Bentonite", + "block.gtceu.slate_beryllium_ore.prospected": "Beryllium", + "block.gtceu.slate_bismuth_ore.prospected": "Bismuth", + "block.gtceu.slate_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.slate_borax_ore.prospected": "Borax", + "block.gtceu.slate_bornite_ore.prospected": "Bornite", + "block.gtceu.slate_calcite_ore.prospected": "Calcite", + "block.gtceu.slate_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.slate_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.slate_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.slate_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.slate_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.slate_chromite_ore.prospected": "Chromite", + "block.gtceu.slate_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.slate_coal_ore.prospected": "Coal", + "block.gtceu.slate_cobalt_ore.prospected": "Cobalt", + "block.gtceu.slate_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.slate_cooperite_ore.prospected": "Cooperite", + "block.gtceu.slate_copper_ore.prospected": "Copper", + "block.gtceu.slate_diamond_ore.prospected": "Diamond", + "block.gtceu.slate_diatomite_ore.prospected": "Diatomite", + "block.gtceu.slate_electrotine_ore.prospected": "Electrotine", + "block.gtceu.slate_emerald_ore.prospected": "Emerald", + "block.gtceu.slate_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.slate_galena_ore.prospected": "Galena", + "block.gtceu.slate_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.slate_garnierite_ore.prospected": "Garnierite", + "block.gtceu.slate_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.slate_goethite_ore.prospected": "Goethite", + "block.gtceu.slate_gold_ore.prospected": "Gold", + "block.gtceu.slate_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.slate_graphite_ore.prospected": "Graphite", + "block.gtceu.slate_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.slate_grossular_ore.prospected": "Grossular", + "block.gtceu.slate_gypsum_ore.prospected": "Gypsum", + "block.gtceu.slate_hematite_ore.prospected": "Hematite", + "block.gtceu.slate_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.slate_iron_ore.prospected": "Iron", + "block.gtceu.slate_kyanite_ore.prospected": "Kyanite", + "block.gtceu.slate_lapis_ore.prospected": "Lapis", + "block.gtceu.slate_lazurite_ore.prospected": "Lazurite", + "block.gtceu.slate_lead_ore.prospected": "Lead", + "block.gtceu.slate_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.slate_lithium_ore.prospected": "Lithium", + "block.gtceu.slate_magnesite_ore.prospected": "Magnesite", + "block.gtceu.slate_magnetite_ore.prospected": "Magnetite", + "block.gtceu.slate_malachite_ore.prospected": "Malachite", + "block.gtceu.slate_mica_ore.prospected": "Mica", + "block.gtceu.slate_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.slate_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.slate_monazite_ore.prospected": "Monazite", + "block.gtceu.slate_naquadah_ore.prospected": "Naquadah", + "block.gtceu.slate_neodymium_ore.prospected": "Neodymium", + "block.gtceu.slate_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.slate_nickel_ore.prospected": "Nickel", + "block.gtceu.slate_oilsands_ore.prospected": "Oilsands", + "block.gtceu.slate_olivine_ore.prospected": "Olivine", + "block.gtceu.slate_opal_ore.prospected": "Opal", + "block.gtceu.slate_palladium_ore.prospected": "Palladium", + "block.gtceu.slate_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.slate_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.slate_platinum_ore.prospected": "Platinum", + "block.gtceu.slate_plutonium_ore.prospected": "Plutonium", + "block.gtceu.slate_pollucite_ore.prospected": "Pollucite", + "block.gtceu.slate_powellite_ore.prospected": "Powellite", + "block.gtceu.slate_pyrite_ore.prospected": "Pyrite", + "block.gtceu.slate_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.slate_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.slate_pyrope_ore.prospected": "Pyrope", + "block.gtceu.slate_quartzite_ore.prospected": "Quartzite", + "block.gtceu.slate_realgar_ore.prospected": "Realgar", + "block.gtceu.slate_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.slate_redstone_ore.prospected": "Redstone", + "block.gtceu.slate_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.slate_ruby_ore.prospected": "Ruby", + "block.gtceu.slate_salt_ore.prospected": "Salt", + "block.gtceu.slate_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.slate_sapphire_ore.prospected": "Sapphire", + "block.gtceu.slate_scheelite_ore.prospected": "Scheelite", + "block.gtceu.slate_silver_ore.prospected": "Silver", + "block.gtceu.slate_soapstone_ore.prospected": "Soapstone", + "block.gtceu.slate_sodalite_ore.prospected": "Sodalite", + "block.gtceu.slate_spessartine_ore.prospected": "Spessartine", + "block.gtceu.slate_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.slate_spodumene_ore.prospected": "Spodumene", + "block.gtceu.slate_stibnite_ore.prospected": "Stibnite", + "block.gtceu.slate_sulfur_ore.prospected": "Sulfur", + "block.gtceu.slate_sylvite_ore.prospected": "Sylvite", + "block.gtceu.slate_talc_ore.prospected": "Talc", + "block.gtceu.slate_tantalite_ore.prospected": "Tantalite", + "block.gtceu.slate_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.slate_thorium_ore.prospected": "Thorium", + "block.gtceu.slate_tin_ore.prospected": "Tin", + "block.gtceu.slate_topaz_ore.prospected": "Topaz", + "block.gtceu.slate_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.slate_trona_ore.prospected": "Trona", + "block.gtceu.slate_tungstate_ore.prospected": "Tungstate", + "block.gtceu.slate_uraninite_ore.prospected": "Uraninite", + "block.gtceu.slate_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.slate_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.slate_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.slate_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.slate_zeolite_ore.prospected": "Zeolite", + "block.gtceu.deepslate_almandine_ore.prospected": "Almandine", + "block.gtceu.deepslate_aluminium_ore.prospected": "Aluminium", + "block.gtceu.deepslate_alunite_ore.prospected": "Alunite", + "block.gtceu.deepslate_amethyst_ore.prospected": "Amethyst", + "block.gtceu.deepslate_apatite_ore.prospected": "Apatite", + "block.gtceu.deepslate_asbestos_ore.prospected": "Asbestos", + "block.gtceu.deepslate_barite_ore.prospected": "Barite", + "block.gtceu.deepslate_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.deepslate_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.deepslate_bauxite_ore.prospected": "Bauxite", + "block.gtceu.deepslate_bentonite_ore.prospected": "Bentonite", + "block.gtceu.deepslate_beryllium_ore.prospected": "Beryllium", + "block.gtceu.deepslate_bismuth_ore.prospected": "Bismuth", + "block.gtceu.deepslate_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.deepslate_borax_ore.prospected": "Borax", + "block.gtceu.deepslate_bornite_ore.prospected": "Bornite", + "block.gtceu.deepslate_calcite_ore.prospected": "Calcite", + "block.gtceu.deepslate_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.deepslate_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.deepslate_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.deepslate_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.deepslate_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.deepslate_chromite_ore.prospected": "Chromite", + "block.gtceu.deepslate_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.deepslate_coal_ore.prospected": "Coal", + "block.gtceu.deepslate_cobalt_ore.prospected": "Cobalt", + "block.gtceu.deepslate_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.deepslate_cooperite_ore.prospected": "Cooperite", + "block.gtceu.deepslate_copper_ore.prospected": "Copper", + "block.gtceu.deepslate_diamond_ore.prospected": "Diamond", + "block.gtceu.deepslate_diatomite_ore.prospected": "Diatomite", + "block.gtceu.deepslate_electrotine_ore.prospected": "Electrotine", + "block.gtceu.deepslate_emerald_ore.prospected": "Emerald", + "block.gtceu.deepslate_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.deepslate_galena_ore.prospected": "Galena", + "block.gtceu.deepslate_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.deepslate_garnierite_ore.prospected": "Garnierite", + "block.gtceu.deepslate_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.deepslate_goethite_ore.prospected": "Goethite", + "block.gtceu.deepslate_gold_ore.prospected": "Gold", + "block.gtceu.deepslate_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.deepslate_graphite_ore.prospected": "Graphite", + "block.gtceu.deepslate_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.deepslate_grossular_ore.prospected": "Grossular", + "block.gtceu.deepslate_gypsum_ore.prospected": "Gypsum", + "block.gtceu.deepslate_hematite_ore.prospected": "Hematite", + "block.gtceu.deepslate_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.deepslate_iron_ore.prospected": "Iron", + "block.gtceu.deepslate_kyanite_ore.prospected": "Kyanite", + "block.gtceu.deepslate_lapis_ore.prospected": "Lapis", + "block.gtceu.deepslate_lazurite_ore.prospected": "Lazurite", + "block.gtceu.deepslate_lead_ore.prospected": "Lead", + "block.gtceu.deepslate_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.deepslate_lithium_ore.prospected": "Lithium", + "block.gtceu.deepslate_magnesite_ore.prospected": "Magnesite", + "block.gtceu.deepslate_magnetite_ore.prospected": "Magnetite", + "block.gtceu.deepslate_malachite_ore.prospected": "Malachite", + "block.gtceu.deepslate_mica_ore.prospected": "Mica", + "block.gtceu.deepslate_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.deepslate_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.deepslate_monazite_ore.prospected": "Monazite", + "block.gtceu.deepslate_naquadah_ore.prospected": "Naquadah", + "block.gtceu.deepslate_neodymium_ore.prospected": "Neodymium", + "block.gtceu.deepslate_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.deepslate_nickel_ore.prospected": "Nickel", + "block.gtceu.deepslate_oilsands_ore.prospected": "Oilsands", + "block.gtceu.deepslate_olivine_ore.prospected": "Olivine", + "block.gtceu.deepslate_opal_ore.prospected": "Opal", + "block.gtceu.deepslate_palladium_ore.prospected": "Palladium", + "block.gtceu.deepslate_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.deepslate_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.deepslate_platinum_ore.prospected": "Platinum", + "block.gtceu.deepslate_plutonium_ore.prospected": "Plutonium", + "block.gtceu.deepslate_pollucite_ore.prospected": "Pollucite", + "block.gtceu.deepslate_powellite_ore.prospected": "Powellite", + "block.gtceu.deepslate_pyrite_ore.prospected": "Pyrite", + "block.gtceu.deepslate_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.deepslate_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.deepslate_pyrope_ore.prospected": "Pyrope", + "block.gtceu.deepslate_quartzite_ore.prospected": "Quartzite", + "block.gtceu.deepslate_realgar_ore.prospected": "Realgar", + "block.gtceu.deepslate_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.deepslate_redstone_ore.prospected": "Redstone", + "block.gtceu.deepslate_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.deepslate_ruby_ore.prospected": "Ruby", + "block.gtceu.deepslate_salt_ore.prospected": "Salt", + "block.gtceu.deepslate_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.deepslate_sapphire_ore.prospected": "Sapphire", + "block.gtceu.deepslate_scheelite_ore.prospected": "Scheelite", + "block.gtceu.deepslate_silver_ore.prospected": "Silver", + "block.gtceu.deepslate_soapstone_ore.prospected": "Soapstone", + "block.gtceu.deepslate_sodalite_ore.prospected": "Sodalite", + "block.gtceu.deepslate_spessartine_ore.prospected": "Spessartine", + "block.gtceu.deepslate_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.deepslate_spodumene_ore.prospected": "Spodumene", + "block.gtceu.deepslate_stibnite_ore.prospected": "Stibnite", + "block.gtceu.deepslate_sulfur_ore.prospected": "Sulfur", + "block.gtceu.deepslate_sylvite_ore.prospected": "Sylvite", + "block.gtceu.deepslate_talc_ore.prospected": "Talc", + "block.gtceu.deepslate_tantalite_ore.prospected": "Tantalite", + "block.gtceu.deepslate_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.deepslate_thorium_ore.prospected": "Thorium", + "block.gtceu.deepslate_tin_ore.prospected": "Tin", + "block.gtceu.deepslate_topaz_ore.prospected": "Topaz", + "block.gtceu.deepslate_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.deepslate_trona_ore.prospected": "Trona", + "block.gtceu.deepslate_tungstate_ore.prospected": "Tungstate", + "block.gtceu.deepslate_uraninite_ore.prospected": "Uraninite", + "block.gtceu.deepslate_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.deepslate_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.deepslate_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.deepslate_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.deepslate_zeolite_ore.prospected": "Zeolite", + "block.gtceu.pyroxenite_almandine_ore.prospected": "Almandine", + "block.gtceu.pyroxenite_aluminium_ore.prospected": "Aluminium", + "block.gtceu.pyroxenite_alunite_ore.prospected": "Alunite", + "block.gtceu.pyroxenite_amethyst_ore.prospected": "Amethyst", + "block.gtceu.pyroxenite_apatite_ore.prospected": "Apatite", + "block.gtceu.pyroxenite_asbestos_ore.prospected": "Asbestos", + "block.gtceu.pyroxenite_barite_ore.prospected": "Barite", + "block.gtceu.pyroxenite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.pyroxenite_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.pyroxenite_bauxite_ore.prospected": "Bauxite", + "block.gtceu.pyroxenite_bentonite_ore.prospected": "Bentonite", + "block.gtceu.pyroxenite_beryllium_ore.prospected": "Beryllium", + "block.gtceu.pyroxenite_bismuth_ore.prospected": "Bismuth", + "block.gtceu.pyroxenite_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.pyroxenite_borax_ore.prospected": "Borax", + "block.gtceu.pyroxenite_bornite_ore.prospected": "Bornite", + "block.gtceu.pyroxenite_calcite_ore.prospected": "Calcite", + "block.gtceu.pyroxenite_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.pyroxenite_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.pyroxenite_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.pyroxenite_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.pyroxenite_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.pyroxenite_chromite_ore.prospected": "Chromite", + "block.gtceu.pyroxenite_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.pyroxenite_coal_ore.prospected": "Coal", + "block.gtceu.pyroxenite_cobalt_ore.prospected": "Cobalt", + "block.gtceu.pyroxenite_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.pyroxenite_cooperite_ore.prospected": "Cooperite", + "block.gtceu.pyroxenite_copper_ore.prospected": "Copper", + "block.gtceu.pyroxenite_diamond_ore.prospected": "Diamond", + "block.gtceu.pyroxenite_diatomite_ore.prospected": "Diatomite", + "block.gtceu.pyroxenite_electrotine_ore.prospected": "Electrotine", + "block.gtceu.pyroxenite_emerald_ore.prospected": "Emerald", + "block.gtceu.pyroxenite_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.pyroxenite_galena_ore.prospected": "Galena", + "block.gtceu.pyroxenite_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.pyroxenite_garnierite_ore.prospected": "Garnierite", + "block.gtceu.pyroxenite_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.pyroxenite_goethite_ore.prospected": "Goethite", + "block.gtceu.pyroxenite_gold_ore.prospected": "Gold", + "block.gtceu.pyroxenite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.pyroxenite_graphite_ore.prospected": "Graphite", + "block.gtceu.pyroxenite_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.pyroxenite_grossular_ore.prospected": "Grossular", + "block.gtceu.pyroxenite_gypsum_ore.prospected": "Gypsum", + "block.gtceu.pyroxenite_hematite_ore.prospected": "Hematite", + "block.gtceu.pyroxenite_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.pyroxenite_iron_ore.prospected": "Iron", + "block.gtceu.pyroxenite_kyanite_ore.prospected": "Kyanite", + "block.gtceu.pyroxenite_lapis_ore.prospected": "Lapis", + "block.gtceu.pyroxenite_lazurite_ore.prospected": "Lazurite", + "block.gtceu.pyroxenite_lead_ore.prospected": "Lead", + "block.gtceu.pyroxenite_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.pyroxenite_lithium_ore.prospected": "Lithium", + "block.gtceu.pyroxenite_magnesite_ore.prospected": "Magnesite", + "block.gtceu.pyroxenite_magnetite_ore.prospected": "Magnetite", + "block.gtceu.pyroxenite_malachite_ore.prospected": "Malachite", + "block.gtceu.pyroxenite_mica_ore.prospected": "Mica", + "block.gtceu.pyroxenite_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.pyroxenite_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.pyroxenite_monazite_ore.prospected": "Monazite", + "block.gtceu.pyroxenite_naquadah_ore.prospected": "Naquadah", + "block.gtceu.pyroxenite_neodymium_ore.prospected": "Neodymium", + "block.gtceu.pyroxenite_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.pyroxenite_nickel_ore.prospected": "Nickel", + "block.gtceu.pyroxenite_oilsands_ore.prospected": "Oilsands", + "block.gtceu.pyroxenite_olivine_ore.prospected": "Olivine", + "block.gtceu.pyroxenite_opal_ore.prospected": "Opal", + "block.gtceu.pyroxenite_palladium_ore.prospected": "Palladium", + "block.gtceu.pyroxenite_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.pyroxenite_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.pyroxenite_platinum_ore.prospected": "Platinum", + "block.gtceu.pyroxenite_plutonium_ore.prospected": "Plutonium", + "block.gtceu.pyroxenite_pollucite_ore.prospected": "Pollucite", + "block.gtceu.pyroxenite_powellite_ore.prospected": "Powellite", + "block.gtceu.pyroxenite_pyrite_ore.prospected": "Pyrite", + "block.gtceu.pyroxenite_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.pyroxenite_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.pyroxenite_pyrope_ore.prospected": "Pyrope", + "block.gtceu.pyroxenite_quartzite_ore.prospected": "Quartzite", + "block.gtceu.pyroxenite_realgar_ore.prospected": "Realgar", + "block.gtceu.pyroxenite_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.pyroxenite_redstone_ore.prospected": "Redstone", + "block.gtceu.pyroxenite_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.pyroxenite_ruby_ore.prospected": "Ruby", + "block.gtceu.pyroxenite_salt_ore.prospected": "Salt", + "block.gtceu.pyroxenite_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.pyroxenite_sapphire_ore.prospected": "Sapphire", + "block.gtceu.pyroxenite_scheelite_ore.prospected": "Scheelite", + "block.gtceu.pyroxenite_silver_ore.prospected": "Silver", + "block.gtceu.pyroxenite_soapstone_ore.prospected": "Soapstone", + "block.gtceu.pyroxenite_sodalite_ore.prospected": "Sodalite", + "block.gtceu.pyroxenite_spessartine_ore.prospected": "Spessartine", + "block.gtceu.pyroxenite_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.pyroxenite_spodumene_ore.prospected": "Spodumene", + "block.gtceu.pyroxenite_stibnite_ore.prospected": "Stibnite", + "block.gtceu.pyroxenite_sulfur_ore.prospected": "Sulfur", + "block.gtceu.pyroxenite_sylvite_ore.prospected": "Sylvite", + "block.gtceu.pyroxenite_talc_ore.prospected": "Talc", + "block.gtceu.pyroxenite_tantalite_ore.prospected": "Tantalite", + "block.gtceu.pyroxenite_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.pyroxenite_thorium_ore.prospected": "Thorium", + "block.gtceu.pyroxenite_tin_ore.prospected": "Tin", + "block.gtceu.pyroxenite_topaz_ore.prospected": "Topaz", + "block.gtceu.pyroxenite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.pyroxenite_trona_ore.prospected": "Trona", + "block.gtceu.pyroxenite_tungstate_ore.prospected": "Tungstate", + "block.gtceu.pyroxenite_uraninite_ore.prospected": "Uraninite", + "block.gtceu.pyroxenite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.pyroxenite_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.pyroxenite_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.pyroxenite_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.pyroxenite_zeolite_ore.prospected": "Zeolite", + "block.gtceu.dripstone_almandine_ore.prospected": "Almandine", + "block.gtceu.dripstone_aluminium_ore.prospected": "Aluminium", + "block.gtceu.dripstone_alunite_ore.prospected": "Alunite", + "block.gtceu.dripstone_amethyst_ore.prospected": "Amethyst", + "block.gtceu.dripstone_apatite_ore.prospected": "Apatite", + "block.gtceu.dripstone_asbestos_ore.prospected": "Asbestos", + "block.gtceu.dripstone_barite_ore.prospected": "Barite", + "block.gtceu.dripstone_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.dripstone_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.dripstone_bauxite_ore.prospected": "Bauxite", + "block.gtceu.dripstone_bentonite_ore.prospected": "Bentonite", + "block.gtceu.dripstone_beryllium_ore.prospected": "Beryllium", + "block.gtceu.dripstone_bismuth_ore.prospected": "Bismuth", + "block.gtceu.dripstone_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.dripstone_borax_ore.prospected": "Borax", + "block.gtceu.dripstone_bornite_ore.prospected": "Bornite", + "block.gtceu.dripstone_calcite_ore.prospected": "Calcite", + "block.gtceu.dripstone_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.dripstone_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.dripstone_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.dripstone_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.dripstone_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.dripstone_chromite_ore.prospected": "Chromite", + "block.gtceu.dripstone_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.dripstone_coal_ore.prospected": "Coal", + "block.gtceu.dripstone_cobalt_ore.prospected": "Cobalt", + "block.gtceu.dripstone_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.dripstone_cooperite_ore.prospected": "Cooperite", + "block.gtceu.dripstone_copper_ore.prospected": "Copper", + "block.gtceu.dripstone_diamond_ore.prospected": "Diamond", + "block.gtceu.dripstone_diatomite_ore.prospected": "Diatomite", + "block.gtceu.dripstone_electrotine_ore.prospected": "Electrotine", + "block.gtceu.dripstone_emerald_ore.prospected": "Emerald", + "block.gtceu.dripstone_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.dripstone_galena_ore.prospected": "Galena", + "block.gtceu.dripstone_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.dripstone_garnierite_ore.prospected": "Garnierite", + "block.gtceu.dripstone_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.dripstone_goethite_ore.prospected": "Goethite", + "block.gtceu.dripstone_gold_ore.prospected": "Gold", + "block.gtceu.dripstone_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.dripstone_graphite_ore.prospected": "Graphite", + "block.gtceu.dripstone_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.dripstone_grossular_ore.prospected": "Grossular", + "block.gtceu.dripstone_gypsum_ore.prospected": "Gypsum", + "block.gtceu.dripstone_hematite_ore.prospected": "Hematite", + "block.gtceu.dripstone_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.dripstone_iron_ore.prospected": "Iron", + "block.gtceu.dripstone_kyanite_ore.prospected": "Kyanite", + "block.gtceu.dripstone_lapis_ore.prospected": "Lapis", + "block.gtceu.dripstone_lazurite_ore.prospected": "Lazurite", + "block.gtceu.dripstone_lead_ore.prospected": "Lead", + "block.gtceu.dripstone_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.dripstone_lithium_ore.prospected": "Lithium", + "block.gtceu.dripstone_magnesite_ore.prospected": "Magnesite", + "block.gtceu.dripstone_magnetite_ore.prospected": "Magnetite", + "block.gtceu.dripstone_malachite_ore.prospected": "Malachite", + "block.gtceu.dripstone_mica_ore.prospected": "Mica", + "block.gtceu.dripstone_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.dripstone_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.dripstone_monazite_ore.prospected": "Monazite", + "block.gtceu.dripstone_naquadah_ore.prospected": "Naquadah", + "block.gtceu.dripstone_neodymium_ore.prospected": "Neodymium", + "block.gtceu.dripstone_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.dripstone_nickel_ore.prospected": "Nickel", + "block.gtceu.dripstone_oilsands_ore.prospected": "Oilsands", + "block.gtceu.dripstone_olivine_ore.prospected": "Olivine", + "block.gtceu.dripstone_opal_ore.prospected": "Opal", + "block.gtceu.dripstone_palladium_ore.prospected": "Palladium", + "block.gtceu.dripstone_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.dripstone_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.dripstone_platinum_ore.prospected": "Platinum", + "block.gtceu.dripstone_plutonium_ore.prospected": "Plutonium", + "block.gtceu.dripstone_pollucite_ore.prospected": "Pollucite", + "block.gtceu.dripstone_powellite_ore.prospected": "Powellite", + "block.gtceu.dripstone_pyrite_ore.prospected": "Pyrite", + "block.gtceu.dripstone_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.dripstone_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.dripstone_pyrope_ore.prospected": "Pyrope", + "block.gtceu.dripstone_quartzite_ore.prospected": "Quartzite", + "block.gtceu.dripstone_realgar_ore.prospected": "Realgar", + "block.gtceu.dripstone_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.dripstone_redstone_ore.prospected": "Redstone", + "block.gtceu.dripstone_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.dripstone_ruby_ore.prospected": "Ruby", + "block.gtceu.dripstone_salt_ore.prospected": "Salt", + "block.gtceu.dripstone_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.dripstone_sapphire_ore.prospected": "Sapphire", + "block.gtceu.dripstone_scheelite_ore.prospected": "Scheelite", + "block.gtceu.dripstone_silver_ore.prospected": "Silver", + "block.gtceu.dripstone_soapstone_ore.prospected": "Soapstone", + "block.gtceu.dripstone_sodalite_ore.prospected": "Sodalite", + "block.gtceu.dripstone_spessartine_ore.prospected": "Spessartine", + "block.gtceu.dripstone_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.dripstone_spodumene_ore.prospected": "Spodumene", + "block.gtceu.dripstone_stibnite_ore.prospected": "Stibnite", + "block.gtceu.dripstone_sulfur_ore.prospected": "Sulfur", + "block.gtceu.dripstone_sylvite_ore.prospected": "Sylvite", + "block.gtceu.dripstone_talc_ore.prospected": "Talc", + "block.gtceu.dripstone_tantalite_ore.prospected": "Tantalite", + "block.gtceu.dripstone_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.dripstone_thorium_ore.prospected": "Thorium", + "block.gtceu.dripstone_tin_ore.prospected": "Tin", + "block.gtceu.dripstone_topaz_ore.prospected": "Topaz", + "block.gtceu.dripstone_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.dripstone_trona_ore.prospected": "Trona", + "block.gtceu.dripstone_tungstate_ore.prospected": "Tungstate", + "block.gtceu.dripstone_uraninite_ore.prospected": "Uraninite", + "block.gtceu.dripstone_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.dripstone_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.dripstone_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.dripstone_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.dripstone_zeolite_ore.prospected": "Zeolite", + "fluid.tfc.salt_water": "Sea Water", + "item.tfc.bucket.salt_water": "Sea Water Bucket", + "item.tfc.powder.saltpeter": "Saltpeter Powder", + "item.tfc.powder.sulfur": "Sulfur Powder", + "tfc.jei.raw_hide_knapping": "Raw Hide Knapping", + "metal.tfg.redstone": "Redstone", + "metal.tfg.red_alloy": "Red Alloy", + "metal.tfg.tin_alloy": "Tin Alloy", + "metal.tfg.lead": "Lead", + "trim_material.tfc.almandine_tfc": "Almandine", + "trim_material.tfc.andradite_tfc": "Andradite", + "trim_material.tfc.blue_topaz_tfc": "Blue Topaz", + "trim_material.tfc.cinnabar_tfc": "Cinnabar", + "trim_material.tfc.coal_tfc": "Coal", + "trim_material.tfc.diamond_tfc": "Diamond", + "trim_material.tfc.emerald_tfc": "Emerald", + "trim_material.tfc.green_sapphire_tfc": "Green Sapphire", + "trim_material.tfc.grossular_tfc": "Grossular", + "trim_material.tfc.rutile_tfc": "Rutile", + "trim_material.tfc.lazurite_tfc": "Lazurite", + "trim_material.tfc.pyrope_tfc": "Pyrope", + "trim_material.tfc.rock_salt_tfc": "Rock Salt", + "trim_material.tfc.ruby_tfc": "Ruby", + "trim_material.tfc.salt_tfc": "salt", + "trim_material.tfc.sapphire_tfc": "Sapphire", + "trim_material.tfc.sodalite_tfc": "Sodalite", + "trim_material.tfc.coke_tfc": "Coke", + "trim_material.tfc.spessartine_tfc": "Spessartine", + "trim_material.tfc.topaz_tfc": "Topaz", + "trim_material.tfc.uvarovite_tfc": "Uvarovite", + "trim_material.tfc.nether_quartz_tfc": "Nether Quartz", + "trim_material.tfc.certus_quartz_tfc": "Certus Quartz", + "trim_material.tfc.quartzite_tfc": "Quartzite", + "trim_material.tfc.realgar_tfc": "Realgar", + "trim_material.tfc.malachite_tfc": "Malachite", + "trim_material.tfc.glass_tfc": "Glass", + "trim_material.tfc.olivine_tfc": "Olivine", + "trim_material.tfc.opal_tfc": "Opal", + "trim_material.tfc.amethyst_tfc": "Amethyst", + "trim_material.tfc.lapis_tfc": "Lapis", + "trim_material.tfc.apatite_tfc": "Apatite", + "trim_material.tfc.red_garnet_tfc": "Red Garnet", + "trim_material.tfc.yellow_garnet_tfc": "Yellow Garnet", + "trim_material.tfc.monazite_tfc": "Monazite", + "trim_material.tfc.rose_quartz_tfc": "Rose Quartz", + "trim_material.tfc.fluix_tfc": "Fluix", + "trim_material.tfc.silver_tfc": "Silver", + "trim_material.tfc.sterling_silver_tfc": "Sterling Silver", + "trim_material.tfc.gold_tfc": "Gold", + "trim_material.tfc.rose_gold_tfc": "Rose Gold", + "trim_material.tfc.nickel_tfc": "Nickel", + "trim_material.tfc.platinum_tfc": "Platinum", + "trim_material.tfc.titanium_tfc": "Titanium", + "trim_material.tfc.bismuth_tfc": "Bismuth", + "trim_material.tfc.neutronium_tfc": "Neutronium", + "trim_material.tfc.pyrite_tfc": "Pyrite", + "trim_material.tfc.redx_tfc": "RedX" } \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/beneath/piglins.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/beneath/piglins.json index 0bb2ede69..7efc3b3c4 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/beneath/piglins.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/beneath/piglins.json @@ -22,7 +22,7 @@ }, { "type": "patchouli:text", - "text": "$(li)4-6 Sulfur Powder$(li)1-2 Leather$(li)6-12 String$(li)6-12 Nether Quartz$(li)12-18 Mangrove Lumber$(li)6-8 Mangrove Logs$(li)4-6 Cooked Venison$(li)4-6 Ghost Peppers$(li)4-6 Gunpowder$(li)4-8 Charcoal$(li)6-12 Arrows$(li)6-12 Flux$(li)8-12 Blackstone Bricks$(li)8-12 Deepslate Bricks$(li)8-16 Sticks" + "text": "$(li)4-6 Sulfur Powder$(li)1-2 Leather$(li)6-12 String$(li)6-12 Nether Quartz$(li)12-18 Mangrove Lumber$(li)6-8 Mangrove Logs$(li)4-6 Cooked Venison$(li)4-6 Ghost Peppers$(li)4-6 Gunpowder$(li)4-8 Charcoal$(li)6-12 Arrows$(li)6-12 Flux$(li)8-12 Pyroxenite Bricks$(li)8-12 Migmatite Bricks$(li)8-16 Sticks" }, { "type": "patchouli:text", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/harvest_baskets.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/harvest_baskets.json new file mode 100644 index 000000000..831bdd943 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/harvest_baskets.json @@ -0,0 +1,24 @@ +{ + "name": "Harvest Baskets", + "icon": "tfg:harvest_basket", + "category": "tfc:mechanics", + "read_by_default": true, + "pages": [ + { + "type": "patchouli:spotlight", + "title": "Harvest Baskets", + "item": { "tag": "tfg:harvester" }, + "text": "Made for those with a short stature--$(thing)Harvest Baskets$() are just the tool needed for plucking trees and bushes of fruit.$(br)To use a harvest basket; right click on a fruit tree or fruit bush and all blocks within a $(thing)7-block radius$() will be picked." + }, + { + "type": "patchouli:text", + "text": "A regular harvest basket has a durability of $(thing)128$(), while the aluminium harvest basket does not take any damage on use. Harvest baskets can also be used by things like the $(thing)Create Deployer$() to automate harvesting. The baskets will use durability in the process." + }, + { + "type": "patchouli:crafting", + "title": "Harvest Basket", + "recipe": "tfg:shaped/harvest_basket_from_papyrus", + "text": "A basic $(item)Harvest Basket$() can be made of soaked papyrus or hardwood." + } + ] +} diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/moon_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/moon_vein_index.json index e1a53516e..f8862b459 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/moon_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/moon_vein_index.json @@ -275,7 +275,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 21%$(br)$(thing)Source of$(): Magnesium, Rutile, Titanium$(br)$(thing)Formula$(): TODO", + "text": "$(thing)Percentage$(): 21%$(br)$(thing)Source of$(): Magnesium, Rutile, Titanium$(br)$(thing)Formula$(): (Mg,Fe)Ti₂O₅", "type": "patchouli:multiblock" }, { @@ -653,7 +653,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Magnesium, Rutile, Titanium$(br)$(thing)Formula$(): TODO", + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Magnesium, Rutile, Titanium$(br)$(thing)Formula$(): (Mg,Fe)Ti₂O₅", "type": "patchouli:multiblock" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/categories/beneath.json b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/categories/beneath.json new file mode 100644 index 000000000..d60ba209f --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/categories/beneath.json @@ -0,0 +1,6 @@ +{ + "name": "O Nether...?", + "description": "Tudo sobre o que está nas Profundezas", + "icon": "minecraft:netherrack", + "sortnum": 10 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/categories/tfg_ores.json b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/categories/tfg_ores.json new file mode 100644 index 000000000..63afaf3d5 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/categories/tfg_ores.json @@ -0,0 +1,6 @@ +{ + "name": "Minérios no TFG", + "description": "O TFG tem seu próprio sistema de geração de minérios que é similar ao do TFC, mas com veios gigantescos e raros porém com múltiplos minerais por veio. Esta categoria lista todos os tipos de veios e onde encontrá-los.$(br2)Os veios são nomeados de acordo com seu minério mais dominante, mas a maioria dos veios contém de 3 a 5 minerais.$(br2)Veja também: $(l:the_world/geology)Geologia$(), $(l:getting_started/finding_ores)Indicadores$()", + "icon": "tfc:ore/pyrite", + "sortnum": 60 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/categories/tfg_tips.json b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/categories/tfg_tips.json new file mode 100644 index 000000000..7436bb050 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/categories/tfg_tips.json @@ -0,0 +1,6 @@ +{ + "name": "Informações e Dicas do TFG", + "description": "Informações sobre coisas no TerraFirmaGreg que são diferentes do TFC e GTCEu padrões.", + "icon": "gtceu:basic_electronic_circuit", + "sortnum": 200 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/firmalife/irrigation.json b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/firmalife/irrigation.json new file mode 100644 index 000000000..820562914 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/firmalife/irrigation.json @@ -0,0 +1,28 @@ +{ + "name": "Irrigação", + "category": "tfc:firmalife", + "icon": "firmalife:sprinkler", + "pages": [ + { + "type": "patchouli:text", + "text": "O $(thing)Aspersor$() é um dispositivo que borrifa água em uma área de 5x6x5 centralizada no bloco abaixo dele. Você sabe que ele está funcionando quando ele goteja partículas de água. Aspersores colocados virados para cima irrigam a mesma área de 5x6x5 só que voltada para cima." + }, + { + "type": "tfc:anvil_recipe", + "recipe": "firmalife:anvil/sprinkler", + "text": "O aspersor é feito com uma $(thing)Placa de Cobre$()." + }, + { + "title": "Tubulação", + "item": "gtceu:copper_tiny_fluid_pipe", + "type": "patchouli:spotlight", + "text": "Aspersores precisam ser conectados a um sistema de tubulações que os alimentam com água para funcionar. Isso é feito conectando uma série de $(thing)Tubos de Fluido$() a eles. Você pode bombear água para eles com uma $(thing)Bomba Mecânica$()." + }, + { + "type": "patchouli:text", + "text": "Você pode clicar com o botão direito em um cano com uma Moldura do GregTech (como uma $(thing)Moldura de Cobre$()) para deixá-los embutidos com a parede, ou usar uma Conexão de Estufa. Depois, basta acoplar seu aspersor diretamente ao cano! Use uma chave inglesa em canos de fluido para alterar sua direção e clique enquanto agacha com a $(thing)segunda mão vazia$() para torná-los unidirecionais." + } + ], + "read_by_default": true, + "sortnum": 8 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/earth_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/earth_vein_index.json index 7b671d520..af283d506 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/earth_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/earth_vein_index.json @@ -14,22 +14,22 @@ }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)Amethyst & Garnet$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_apatite)Apatite & Pyrochlore$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_monazite)Bastnasite & Monazite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_olivine)Bentonite & Olivine$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_bismuthinite)Bismuth (Normal)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_bismuthinite)Bismuth (Surface)$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_cassiterite)Cassiterite (Normal)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_cassiterite)Cassiterite (Surface)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_copper)Chalcopyrite & Realgar$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_magnetite)Chromite & Magnetite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_coal)Coal$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_sheldonite)Cooperite & Bornite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_copper)Copper & Chalcopyrite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_beryllium)Emerald & Beryllium$()$()", + "text": "$(li)$(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)Ametista e Granada$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_apatite)Apatita e Pirocloro$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_basaltic_sands)Areias Minerais$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_oilsands)Areias Petrolíferas$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_monazite)Bastnasita e Monazita$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_olivine)Bentonita e Olivina$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_bismuthinite)Bismuto (Normal)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_bismuthinite)Bismuto (Superfície)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_copper)Calcopirita e Realgar$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_coal)Carvão$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_cassiterite)Cassiterita (Normal)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_cassiterite)Cassiterita (Superfície)$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_mica)Cianita, Mica e Bauxita$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_copper)Cobre e Calcopirita$()$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/earth_vein_index#normal_garnet_tin)Garnet & Cassiterite Sands$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_garnierite)Garnierite & Cobaltite$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_limonite)Goethite & Malachite$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_gold)Gold (Deep)$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_gold)Gold, Limonite, & Hematite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_graphite)Graphite & Diamond$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_hematite)Hematite & Limonite$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_hematite)Hematite, Goethite, & Ruby$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_mica)Kyanite, Mica, & Bauxite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_lapis)Lapis, Lazurite, & Sodalite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_limonite)Limonite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_magnetite)Magnetite & Vanadium$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_manganese)Manganese & Tantalum$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_basaltic_sands)Mineral Sands$()$()", + "text": "$(li)$(l:tfg_ores/earth_vein_index#deep_sheldonite)Cooperita e Bornita$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_magnetite)Cromita e Magnetita$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_sulfur)Enxofre e Pirita$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_sphalerite)Esfalerita e Enxofre$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_sphalerite)Esfalerita e Pirita$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_beryllium)Esmeralda e Berílio$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_spodumene)Espodumena e Lepidolita$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_garnierite)Garnierita e Cobaltita$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_limonite)Goethita e Malaquita$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_graphite)Grafite e Diamante$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_garnet_tin)Granada e Areia Cassiterita$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_hematite)Hematita e Limonita$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_hematite)Hematita, Goethita e Rubi$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_lapis)Lápis-lazúri, Lazurita e Sodalita$()$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/earth_vein_index#normal_oilsands)Oilsands$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_garnet_opal)Opal & Garnet$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_quartz)Quartzes$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_redstone)Redstone, Cinnabar, & Ruby$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_saltpeter)Saltpeter & Electrotine$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_salt)Salts & Borax$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_sapphire)Sapphire & Almandine$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_scheelite)Scheelite & Tungstate$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_silver)Silver, Galena, & Lead$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_lubricant)Soapstone, Talc, & Trona$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_sphalerite)Sphalerite & Pyrite$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_sphalerite)Sphalerite & Sulfur$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_spodumene)Spodumene & Lepidolite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_sulfur)Sulfur & Pyrite$()$()", + "text": "$(li)$(l:tfg_ores/earth_vein_index#normal_limonite)Limonita$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_magnetite)Magnetita e Vanádio$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_manganese)Manganês e Tântalo$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_garnet_opal)Opala e Granada$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_gold)Ouro (Profundo)$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_gold)Ouro, Limonita e Hematita$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_lubricant)Pedra-sabão, Talco e Trona$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_silver)Prata, Galena e Chumbo$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_quartz)Quartzos$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_redstone)Redstone, Cinábrio e Rubi$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_sapphire)Safira e Almandina$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_salt)Sais e Bórax$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_saltpeter)Salitre e Eletrotina$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_scheelite)Sheelita e Tungstato$()$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/earth_vein_index#normal_tetrahedrite)Tetrahedrite (Normal)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_tetrahedrite)Tetrahedrite (Surface)$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_topaz)Topaz & Chalcocite$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_pitchblende)Uraninite & Pitchblende$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_molybdenum)Wulfenite & Molybdenite$()$()", + "text": "$(li)$(l:tfg_ores/earth_vein_index#normal_tetrahedrite)Tetraedrita (Normal)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_tetrahedrite)Tetraedrita (Superfície)$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_topaz)Topázio e Calcocita$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_pitchblende)Uraninita e Pechblenda$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_molybdenum)Wulfenita e Molibdenita$()$()", "type": "patchouli:text" }, { @@ -39,8 +39,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 230$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): -64 — 26$(br)$(thing)Tamanho$(): 40$(br)$(thing)Altura$(): 8$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Chalk, Chert, Claystone, Conglomerate, Dolomite, Gneiss, Limestone, Marble, Phyllite, Quartzite, Schist, Shale, Slate", - "title": "Amethyst & Garnet", + "text": "$(thing)Raridade$(): 230$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): -64 — 26$(br)$(thing)Tamanho$(): 40$(br)$(thing)Altura$(): 8$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Ardósia, Argilito, Calcário, Cherte, Conglomerado, Dolomito, Filito, Folhelho, Giz, Gnaisse, Mármore, Quartzito, Xisto", + "title": "Ametista e Granada", "type": "patchouli:text", "anchor": "deep_garnet_amethyst" }, @@ -131,8 +131,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 220$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 60$(br)$(thing)Tamanho$(): 34$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Gneiss, Granite, Marble, Phyllite, Quartzite, Schist, Slate", - "title": "Apatite & Pyrochlore", + "text": "$(thing)Raridade$(): 220$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 60$(br)$(thing)Tamanho$(): 34$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Ardósia, Diorito, Filito, Gabro, Gnaisse, Granito, Mármore, Quartzito, Xisto", + "title": "Apatita e Pirocloro", "type": "patchouli:text", "anchor": "normal_apatite" }, @@ -198,8 +198,127 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 205$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 50$(br)$(thing)Tamanho$(): 35$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Granite", - "title": "Bastnasite & Monazite", + "text": "$(thing)Raridade$(): 160$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): -32 — 60$(br)$(thing)Tamanho$(): 48$(br)$(thing)Altura$(): 9$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Basalto, Granito", + "title": "Areias Minerais", + "type": "patchouli:text", + "anchor": "normal_basaltic_sands" + }, + { + "Type": "patchouli:multiblock", + "name": "Areia Mineral Basáltica", + "multiblock": { + "mapping": { + "0": "#forge:ores/basaltic_mineral_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): (Fe₃O₄)((Mg₂Fe(SiO₂)₂)(CaCo₃)₃(SiO₂)₈C₄)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Areia Mineral Granítica", + "multiblock": { + "mapping": { + "0": "#forge:ores/granitic_mineral_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): (Fe₃O₄)((SiO₂)₄(KMg₃Al₃F₂Si₃O₁₀))", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Terra de Fuller", + "multiblock": { + "mapping": { + "0": "#forge:ores/fullers_earth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Magnésio$(br)$(thing)Fórmula$(): MgSi₄H(H₂O)₄O₁₁", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Gipsita", + "multiblock": { + "mapping": { + "0": "#forge:ores/gypsum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Usado para$(): Tijolos de Alabastro (tingíveis)$(br)$(thing)Fórmula$(): CaS(H₂O)₂O₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 185$(br)$(thing)Densidade$(): 0.2$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 55$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Argilito, Calcário, Cherte, Conglomerado, Dolomito, Folhelho, Giz", + "title": "Areias Petrolíferas", + "type": "patchouli:text", + "anchor": "normal_oilsands" + }, + { + "Type": "patchouli:multiblock", + "name": "Areias Petrolíferas", + "multiblock": { + "mapping": { + "0": "#forge:ores/oilsands" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 100%$(br)$(thing)Fonte de$(): Liberdade \uD83D\uDEE2\uD83E\uDD85\uD83D\uDDFD", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 205$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 50$(br)$(thing)Tamanho$(): 35$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Diorito, Gabro, Granito", + "title": "Bastnasita e Monazita", "type": "patchouli:text", "anchor": "normal_monazite" }, @@ -265,8 +384,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 180$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -40 — 30$(br)$(thing)Tamanho$(): 26$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesite, Basalt, Dacite, Diorite, Gabbro, Granite, Rhyolite", - "title": "Bentonite & Olivine", + "text": "$(thing)Raridade$(): 180$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -40 — 30$(br)$(thing)Tamanho$(): 26$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesito, Basalto, Dacito, Diorito, Gabro, Granito, Riolito", + "title": "Bentonita e Olivina", "type": "patchouli:text", "anchor": "normal_olivine" }, @@ -357,8 +476,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 75$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Chalk, Chert, Claystone, Conglomerate, Diorite, Dolomite, Gabbro, Granite, Limestone, Shale", - "title": "Bismuth (Normal)", + "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 75$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Argilito, Calcário, Cherte, Conglomerado, Diorito, Dolomito, Folhelho, Gabro, Giz, Granito", + "title": "Bismuto (Normal)", "type": "patchouli:text", "anchor": "normal_bismuthinite" }, @@ -424,8 +543,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 140$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 60 — 210$(br)$(thing)Tamanho$(): 50$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Chalk, Chert, Claystone, Conglomerate, Diorite, Dolomite, Gabbro, Granite, Limestone, Shale", - "title": "Bismuth (Surface)", + "text": "$(thing)Raridade$(): 140$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 60 — 210$(br)$(thing)Tamanho$(): 50$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Argilito, Calcário, Cherte, Conglomerado, Diorito, Dolomito, Folhelho, Gabro, Giz, Granito", + "title": "Bismuto (Superfície)", "type": "patchouli:text", "anchor": "surface_bismuthinite" }, @@ -491,112 +610,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 75$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Granite", - "title": "Cassiterite (Normal)", - "type": "patchouli:text", - "anchor": "normal_cassiterite" - }, - { - "Type": "patchouli:multiblock", - "name": "Estanho", - "multiblock": { - "mapping": { - "0": "#forge:ores/tin" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 60%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)Fórmula$(): Sn", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Cassiterita", - "multiblock": { - "mapping": { - "0": "#forge:ores/cassiterite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)Fórmula$(): SnO₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 135$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 60 — 210$(br)$(thing)Tamanho$(): 50$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Granite", - "title": "Cassiterite (Surface)", - "type": "patchouli:text", - "anchor": "surface_cassiterite" - }, - { - "Type": "patchouli:multiblock", - "name": "Cassiterita", - "multiblock": { - "mapping": { - "0": "#forge:ores/cassiterite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 60%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)Fórmula$(): SnO₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Estanho", - "multiblock": { - "mapping": { - "0": "#forge:ores/tin" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)Fórmula$(): Sn", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 200$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 20 — 217$(br)$(thing)Tamanho$(): 50$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Andesite, Basalt, Dacite, Rhyolite", - "title": "Chalcopyrite & Realgar", + "text": "$(thing)Raridade$(): 200$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 20 — 217$(br)$(thing)Tamanho$(): 50$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Andesito, Basalto, Dacito, Riolito", + "title": "Calcopirita e Realgar", "type": "patchouli:text", "anchor": "surface_copper" }, @@ -687,8 +702,390 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 225$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -64 — 30$(br)$(thing)Tamanho$(): 20$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Chalk, Chert, Claystone, Conglomerate, Dolomite, Limestone, Shale", - "title": "Chromite & Magnetite", + "text": "$(thing)Raridade$(): 215$(br)$(thing)Densidade$(): 0.55$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 210$(br)$(thing)Tamanho$(): 60$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Argilito, Calcário, Cherte, Conglomerado, Dolomito, Folhelho, Giz", + "title": "Carvão", + "type": "patchouli:text", + "anchor": "normal_coal" + }, + { + "Type": "patchouli:multiblock", + "name": "Carvão", + "multiblock": { + "mapping": { + "0": "#forge:ores/coal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 100%$(br)$(thing)Usado para$(): Combustível, Destilação$(br)$(thing)Fórmula$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 75$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Diorito, Gabro, Granito", + "title": "Cassiterita (Normal)", + "type": "patchouli:text", + "anchor": "normal_cassiterite" + }, + { + "Type": "patchouli:multiblock", + "name": "Estanho", + "multiblock": { + "mapping": { + "0": "#forge:ores/tin" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 60%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)Fórmula$(): Sn", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cassiterita", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)Fórmula$(): SnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 135$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 60 — 210$(br)$(thing)Tamanho$(): 50$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Diorito, Gabro, Granito", + "title": "Cassiterita (Superfície)", + "type": "patchouli:text", + "anchor": "surface_cassiterite" + }, + { + "Type": "patchouli:multiblock", + "name": "Cassiterita", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 60%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)Fórmula$(): SnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Estanho", + "multiblock": { + "mapping": { + "0": "#forge:ores/tin" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)Fórmula$(): Sn", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 190$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 210$(br)$(thing)Tamanho$(): 36$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Ardósia, Diorito, Filito, Gabro, Gnaisse, Granito, Mármore, Quartzito, Xisto", + "title": "Cianita, Mica e Bauxita", + "type": "patchouli:text", + "anchor": "normal_mica" + }, + { + "Type": "patchouli:multiblock", + "name": "Cianita", + "multiblock": { + "mapping": { + "0": "#forge:ores/kyanite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): Alumínio$(br)$(thing)Fórmula$(): Al₂SiO₅", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Mica", + "multiblock": { + "mapping": { + "0": "#forge:ores/mica" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Potássio, Alumínio, Flúor$(br)$(thing)Fórmula$(): KAl₃Si₃F₂O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Bauxita", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Alumínio$(br)$(thing)Fórmula$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Polucita", + "multiblock": { + "mapping": { + "0": "#forge:ores/pollucite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Césio, Alumínio$(br)$(thing)Fórmula$(): Cs₂Al₂Si₄(H₂O)₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 75$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 85$(br2)$(thing)Tipos de Pedra$(): Andesito, Basalto, Dacito, Riolito", + "title": "Cobre e Calcopirita", + "type": "patchouli:text", + "anchor": "normal_copper" + }, + { + "Type": "patchouli:multiblock", + "name": "Cobre Nativo", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 65%$(br)$(thing)Derrete em$(): Cobre$(br)$(thing)Fórmula$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Calcopirita", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcopyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Derrete em$(): Cobre$(br)$(thing)Fórmula$(): CuFeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pirita", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 10%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematita", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 320$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -64 — 0$(br)$(thing)Tamanho$(): 30$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Ardósia, Filito, Gnaisse, Mármore, Quartzito, Xisto", + "title": "Cooperita e Bornita", + "type": "patchouli:text", + "anchor": "deep_sheldonite" + }, + { + "Type": "patchouli:multiblock", + "name": "Bornita", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 53%$(br)$(thing)Derrete em$(): Cobre$(br)$(thing)Fórmula$(): Cu₅FeS₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cooperita", + "multiblock": { + "mapping": { + "0": "#forge:ores/cooperite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 38%$(br)$(thing)Fonte de$(): Platina, Níquel, Paládio$(br)$(thing)Fórmula$(): Pt₃NiSPd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Platina", + "multiblock": { + "mapping": { + "0": "#forge:ores/platinum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 7%$(br)$(thing)Derrete em$(): Platina$(br)$(thing)Fórmula$(): Pt", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 225$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -64 — 30$(br)$(thing)Tamanho$(): 20$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Argilito, Calcário, Cherte, Conglomerado, Dolomito, Folhelho, Giz", + "title": "Cromita e Magnetita", "type": "patchouli:text", "anchor": "deep_magnetite" }, @@ -794,17 +1191,17 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 215$(br)$(thing)Densidade$(): 0.55$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 210$(br)$(thing)Tamanho$(): 60$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Chalk, Chert, Claystone, Conglomerate, Dolomite, Limestone, Shale", - "title": "Coal", + "text": "$(thing)Raridade$(): 165$(br)$(thing)Densidade$(): 0.2$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 210$(br)$(thing)Tamanho$(): 45$(br)$(thing)Profundidade Máxima do Indicador$(): 40$(br2)$(thing)Tipos de Pedra$(): Andesito, Basalto, Dacito, Riolito", + "title": "Enxofre e Pirita", "type": "patchouli:text", - "anchor": "normal_coal" + "anchor": "normal_sulfur" }, { "Type": "patchouli:multiblock", - "name": "Carvão", + "name": "Enxofre", "multiblock": { "mapping": { - "0": "#forge:ores/coal" + "0": "#forge:ores/sulfur" }, "pattern": [ [ @@ -816,121 +1213,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 100%$(br)$(thing)Usado para$(): Combustível, Destilação$(br)$(thing)Fórmula$(): C", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 320$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -64 — 0$(br)$(thing)Tamanho$(): 30$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Gneiss, Marble, Phyllite, Quartzite, Schist, Slate", - "title": "Cooperite & Bornite", - "type": "patchouli:text", - "anchor": "deep_sheldonite" - }, - { - "Type": "patchouli:multiblock", - "name": "Bornita", - "multiblock": { - "mapping": { - "0": "#forge:ores/bornite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 53%$(br)$(thing)Derrete em$(): Cobre$(br)$(thing)Fórmula$(): Cu₅FeS₄", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Cooperita", - "multiblock": { - "mapping": { - "0": "#forge:ores/cooperite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 38%$(br)$(thing)Fonte de$(): Platina, Níquel, Paládio$(br)$(thing)Fórmula$(): Pt₃NiSPd", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Platina", - "multiblock": { - "mapping": { - "0": "#forge:ores/platinum" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 7%$(br)$(thing)Derrete em$(): Platina$(br)$(thing)Fórmula$(): Pt", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 75$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 85$(br2)$(thing)Tipos de Pedra$(): Andesite, Basalt, Dacite, Rhyolite", - "title": "Copper & Chalcopyrite", - "type": "patchouli:text", - "anchor": "normal_copper" - }, - { - "Type": "patchouli:multiblock", - "name": "Cobre Nativo", - "multiblock": { - "mapping": { - "0": "#forge:ores/copper" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 65%$(br)$(thing)Derrete em$(): Cobre$(br)$(thing)Fórmula$(): Cu", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Calcopirita", - "multiblock": { - "mapping": { - "0": "#forge:ores/chalcopyrite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Derrete em$(): Cobre$(br)$(thing)Fórmula$(): CuFeS₂", + "text": "$(thing)Porcentagem$(): 50%$(br)$(thing)Fonte de$(): Enxofre$(br)$(thing)Fórmula$(): S", "type": "patchouli:multiblock" }, { @@ -950,15 +1233,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 10%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeS₂", + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeS₂", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Hematita", + "name": "Esfalerita", "multiblock": { "mapping": { - "0": "#forge:ores/hematite" + "0": "#forge:ores/sphalerite" }, "pattern": [ [ @@ -970,18 +1253,147 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): Fe₂O₃", + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Derrete em$(): Zinco$(br)$(thing)Fórmula$(): ZnS", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 145$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 60 — 210$(br)$(thing)Tamanho$(): 50$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Andesito, Ardósia, Basalto, Dacito, Filito, Gnaisse, Mármore, Quartzito, Riolito, Xisto", + "title": "Esfalerita e Enxofre", + "type": "patchouli:text", + "anchor": "surface_sphalerite" + }, + { + "Type": "patchouli:multiblock", + "name": "Enxofre", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 55%$(br)$(thing)Fonte de$(): Enxofre$(br)$(thing)Fórmula$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Esfalerita", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Derrete em$(): Zinco$(br)$(thing)Fórmula$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pirita", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeS₂", + "type": "patchouli:multiblock" }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 250$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Tubular$(br)$(thing)Y$(): -32 — 50$(br)$(thing)Altura$(): 60$(br)$(thing)Raio$(): 10$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesite, Basalt, Dacite, Rhyolite", - "title": "Emerald & Beryllium", + "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 75$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Andesito, Ardósia, Basalto, Dacito, Filito, Gnaisse, Mármore, Quartzito, Riolito, Xisto", + "title": "Esfalerita e Pirita", + "type": "patchouli:text", + "anchor": "normal_sphalerite" + }, + { + "Type": "patchouli:multiblock", + "name": "Esfalerita", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Derrete em$(): Zinco$(br)$(thing)Fórmula$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Enxofre", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): Enxofre$(br)$(thing)Fórmula$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pirita", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 250$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Tubular$(br)$(thing)Y$(): -32 — 50$(br)$(thing)Altura$(): 60$(br)$(thing)Raio$(): 10$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesito, Basalto, Dacito, Riolito", + "title": "Esmeralda e Berílio", "type": "patchouli:text", "anchor": "normal_beryllium" }, @@ -1047,17 +1459,17 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 270$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -40 — 64$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Andesite, Basalt, Chalk, Chert, Claystone, Conglomerate, Dacite, Diorite, Dolomite, Gabbro, Gneiss, Granite, Limestone, Marble, Phyllite, Quartzite, Rhyolite, Schist, Shale, Slate", - "title": "Garnet & Cassiterite Sands", + "text": "$(thing)Raridade$(): 180$(br)$(thing)Densidade$(): 0.375$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): 20 — 60$(br)$(thing)Tamanho$(): 35$(br)$(thing)Altura$(): 6$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Ardósia, Diorito, Filito, Gabro, Gnaisse, Granito, Mármore, Quartzito, Xisto", + "title": "Espodumena e Lepidolita", "type": "patchouli:text", - "anchor": "normal_garnet_tin" + "anchor": "normal_spodumene" }, { "Type": "patchouli:multiblock", - "name": "Areia Cassiterita", + "name": "Espodumena", "multiblock": { "mapping": { - "0": "#forge:ores/cassiterite_sand" + "0": "#forge:ores/spodumene" }, "pattern": [ [ @@ -1069,15 +1481,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)Fórmula$(): SnO₂", + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): Lítio, Alumínio$(br)$(thing)Fórmula$(): LiAlSi₂O₆", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Areia Granada", + "name": "Sal", "multiblock": { "mapping": { - "0": "#forge:ores/garnet_sand" + "0": "#forge:ores/salt" }, "pattern": [ [ @@ -1089,15 +1501,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Almandina, Andradita, Glossulária, Piropo, Espessartita, Uvarovita", + "text": "$(thing)Porcentagem$(): 30%$(br)$(thing)Fonte de$(): Sódio, Cloro$(br)$(thing)Fórmula$(): NaCl", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Amianto", + "name": "Sal-gema", "multiblock": { "mapping": { - "0": "#forge:ores/asbestos" + "0": "#forge:ores/rock_salt" }, "pattern": [ [ @@ -1109,15 +1521,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Magnésio, Câncer de pulmão$(br)$(thing)Fórmula$(): Mg₃Si₂H₄O₉$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Asbestose (Inalação)$(/t)$()", + "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Fonte de$(): Potássio, Cloro$(br)$(thing)Fórmula$(): KCl", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Diatomita", + "name": "Lepidorita", "multiblock": { "mapping": { - "0": "#forge:ores/diatomite" + "0": "#forge:ores/lepidolite" }, "pattern": [ [ @@ -1129,7 +1541,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Ferro, Alumínio$(br)$(thing)Fórmula$(): (SiO₂)₈(Fe₂O₃)(Al₂O₃)", + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Potássio, Lítio, Alumínio, Flúor$(br)$(thing)Fórmula$(): KLi₃Al₄F₂O₁₀", "type": "patchouli:multiblock" }, { @@ -1139,8 +1551,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 160$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 60$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 70$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro$(br2)Can't find it? Gabbro always spawns below $(thing)Basalt$(), and Gabbro dikes in oceans can be useful too!", - "title": "Garnierite & Cobaltite", + "text": "$(thing)Raridade$(): 160$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 60$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 70$(br2)$(thing)Tipos de Pedra$(): Diorito, Gabro$(br2)Não consegue encontrar? O Gabro sempre gera abaixo do $(thing)Basalto$(), e diques de Gabro nos oceanos também podem ser úteis!", + "title": "Garnierita e Cobaltita", "type": "patchouli:text", "anchor": "normal_garnierite" }, @@ -1246,8 +1658,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 240$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -64 — 30$(br)$(thing)Tamanho$(): 32$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Limestone, Marble", - "title": "Goethite & Malachite", + "text": "$(thing)Raridade$(): 240$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -64 — 30$(br)$(thing)Tamanho$(): 32$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Calcário, Mármore", + "title": "Goethita e Malaquita", "type": "patchouli:text", "anchor": "deep_limonite" }, @@ -1338,192 +1750,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 260$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -64 — 30$(br)$(thing)Tamanho$(): 32$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesite, Basalt, Dacite, Diorite, Gabbro, Granite, Rhyolite", - "title": "Gold (Deep)", - "type": "patchouli:text", - "anchor": "deep_gold" - }, - { - "Type": "patchouli:multiblock", - "name": "Ouro Nativo", - "multiblock": { - "mapping": { - "0": "#forge:ores/gold" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 75%$(br)$(thing)Derrete em$(): Ouro$(br)$(thing)Fórmula$(): Au", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Hematita", - "multiblock": { - "mapping": { - "0": "#forge:ores/hematite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): Fe₂O₃", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Goethita", - "multiblock": { - "mapping": { - "0": "#forge:ores/goethite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeHO₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Limonita Amarela", - "multiblock": { - "mapping": { - "0": "#forge:ores/yellow_limonite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeHO₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): -32 — 60$(br)$(thing)Tamanho$(): 40$(br)$(thing)Altura$(): 12$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Andesite, Basalt, Dacite, Diorite, Gabbro, Granite, Rhyolite", - "title": "Gold, Limonite, & Hematite", - "type": "patchouli:text", - "anchor": "normal_gold" - }, - { - "Type": "patchouli:multiblock", - "name": "Ouro Nativo", - "multiblock": { - "mapping": { - "0": "#forge:ores/gold" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 55%$(br)$(thing)Derrete em$(): Ouro$(br)$(thing)Fórmula$(): Au", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Limonita Amarela", - "multiblock": { - "mapping": { - "0": "#forge:ores/yellow_limonite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeHO₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Hematita", - "multiblock": { - "mapping": { - "0": "#forge:ores/hematite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): Fe₂O₃", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Goethita", - "multiblock": { - "mapping": { - "0": "#forge:ores/goethite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeHO₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 80$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): -64 — -16$(br)$(thing)Tamanho$(): 16$(br)$(thing)Altura$(): 6$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesite, Basalt, Chalk, Chert, Claystone, Conglomerate, Dacite, Diorite, Dolomite, Gabbro, Gneiss, Granite, Limestone, Marble, Phyllite, Quartzite, Rhyolite, Schist, Shale, Slate", - "title": "Graphite & Diamond", + "text": "$(thing)Raridade$(): 80$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): -64 — -16$(br)$(thing)Tamanho$(): 16$(br)$(thing)Altura$(): 6$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesito, Ardósia, Argilito, Basalto, Calcário, Cherte, Conglomerado, Dacito, Diorito, Dolomito, Filito, Folhelho, Gabro, Giz, Gnaisse, Granito, Mármore, Quartzito, Riolito, Xisto", + "title": "Grafite e Diamante", "type": "patchouli:text", "anchor": "normal_graphite" }, @@ -1589,8 +1817,100 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 210$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 75$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Andesite, Basalt, Dacite, Rhyolite", - "title": "Hematite & Limonite", + "text": "$(thing)Raridade$(): 270$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -40 — 64$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Andesito, Ardósia, Argilito, Basalto, Calcário, Cherte, Conglomerado, Dacito, Diorito, Dolomito, Filito, Folhelho, Gabro, Giz, Gnaisse, Granito, Mármore, Quartzito, Riolito, Xisto", + "title": "Granada e Areia Cassiterita", + "type": "patchouli:text", + "anchor": "normal_garnet_tin" + }, + { + "Type": "patchouli:multiblock", + "name": "Areia Cassiterita", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)Fórmula$(): SnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Areia Granada", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnet_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Almandina, Andradita, Glossulária, Piropo, Espessartita, Uvarovita", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Amianto", + "multiblock": { + "mapping": { + "0": "#forge:ores/asbestos" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Magnésio, Câncer de pulmão$(br)$(thing)Fórmula$(): Mg₃Si₂H₄O₉$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Asbestose (Inalação)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Diatomita", + "multiblock": { + "mapping": { + "0": "#forge:ores/diatomite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Ferro, Alumínio$(br)$(thing)Fórmula$(): (SiO₂)₈(Fe₂O₃)(Al₂O₃)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 210$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 75$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Andesito, Basalto, Dacito, Riolito", + "title": "Hematita e Limonita", "type": "patchouli:text", "anchor": "normal_hematite" }, @@ -1681,8 +2001,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 220$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -64 — 30$(br)$(thing)Tamanho$(): 30$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesite, Basalt, Dacite, Rhyolite", - "title": "Hematite, Goethite, & Ruby", + "text": "$(thing)Raridade$(): 220$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -64 — 30$(br)$(thing)Tamanho$(): 30$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesito, Basalto, Dacito, Riolito", + "title": "Hematita, Goethita e Rubi", "type": "patchouli:text", "anchor": "deep_hematite" }, @@ -1788,100 +2108,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 190$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 210$(br)$(thing)Tamanho$(): 36$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Gneiss, Granite, Marble, Phyllite, Quartzite, Schist, Slate", - "title": "Kyanite, Mica, & Bauxite", - "type": "patchouli:text", - "anchor": "normal_mica" - }, - { - "Type": "patchouli:multiblock", - "name": "Cianita", - "multiblock": { - "mapping": { - "0": "#forge:ores/kyanite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): Alumínio$(br)$(thing)Fórmula$(): Al₂SiO₅", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Mica", - "multiblock": { - "mapping": { - "0": "#forge:ores/mica" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Potássio, Alumínio, Flúor$(br)$(thing)Fórmula$(): KAl₃Si₃F₂O₁₀", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Bauxita", - "multiblock": { - "mapping": { - "0": "#forge:ores/bauxite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Alumínio$(br)$(thing)Fórmula$(): Al₂O₃", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Polucita", - "multiblock": { - "mapping": { - "0": "#forge:ores/pollucite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Césio, Alumínio$(br)$(thing)Fórmula$(): Cs₂Al₂Si₄(H₂O)₂O₁₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -60 — 10$(br)$(thing)Tamanho$(): 50$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Gneiss, Marble, Phyllite, Quartzite, Schist, Slate", - "title": "Lapis, Lazurite, & Sodalite", + "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -60 — 10$(br)$(thing)Tamanho$(): 50$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Ardósia, Filito, Gnaisse, Mármore, Quartzito, Xisto", + "title": "Lápis-lazúri, Lazurita e Sodalita", "type": "patchouli:text", "anchor": "normal_lapis" }, @@ -1972,8 +2200,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 190$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 75$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Limestone, Marble", - "title": "Limonite", + "text": "$(thing)Raridade$(): 190$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 75$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Calcário, Mármore", + "title": "Limonita", "type": "patchouli:text", "anchor": "normal_limonite" }, @@ -2064,8 +2292,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 200$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 75$(br)$(thing)Tamanho$(): 30$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Chalk, Chert, Claystone, Conglomerate, Dolomite, Limestone, Shale", - "title": "Magnetite & Vanadium", + "text": "$(thing)Raridade$(): 200$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 75$(br)$(thing)Tamanho$(): 30$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Argilito, Calcário, Cherte, Conglomerado, Dolomito, Folhelho, Giz", + "title": "Magnetita e Vanádio", "type": "patchouli:text", "anchor": "normal_magnetite" }, @@ -2156,8 +2384,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 195$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 60$(br)$(thing)Tamanho$(): 30$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesite, Basalt, Chalk, Chert, Claystone, Conglomerate, Dacite, Dolomite, Limestone, Rhyolite, Shale", - "title": "Manganese & Tantalum", + "text": "$(thing)Raridade$(): 195$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 60$(br)$(thing)Tamanho$(): 30$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesito, Argilito, Basalto, Calcário, Cherte, Conglomerado, Dacito, Dolomito, Folhelho, Giz, Riolito", + "title": "Manganês e Tântalo", "type": "patchouli:text", "anchor": "normal_manganese" }, @@ -2248,127 +2476,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 160$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): -32 — 60$(br)$(thing)Tamanho$(): 48$(br)$(thing)Altura$(): 9$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Basalt, Granite", - "title": "Mineral Sands", - "type": "patchouli:text", - "anchor": "normal_basaltic_sands" - }, - { - "Type": "patchouli:multiblock", - "name": "Areia Mineral Basáltica", - "multiblock": { - "mapping": { - "0": "#forge:ores/basaltic_mineral_sand" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): (Fe₃O₄)((Mg₂Fe(SiO₂)₂)(CaCo₃)₃(SiO₂)₈C₄)", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Areia Mineral Granítica", - "multiblock": { - "mapping": { - "0": "#forge:ores/granitic_mineral_sand" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): (Fe₃O₄)((SiO₂)₄(KMg₃Al₃F₂Si₃O₁₀))", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Terra de Fuller", - "multiblock": { - "mapping": { - "0": "#forge:ores/fullers_earth" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Magnésio$(br)$(thing)Fórmula$(): MgSi₄H(H₂O)₄O₁₁", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Gipsita", - "multiblock": { - "mapping": { - "0": "#forge:ores/gypsum" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Usado para$(): Tijolos de Alabastro (tingíveis)$(br)$(thing)Fórmula$(): CaS(H₂O)₂O₄", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 185$(br)$(thing)Densidade$(): 0.2$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 55$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Chalk, Chert, Claystone, Conglomerate, Dolomite, Limestone, Shale", - "title": "Oilsands", - "type": "patchouli:text", - "anchor": "normal_oilsands" - }, - { - "Type": "patchouli:multiblock", - "name": "Areias Petrolíferas", - "multiblock": { - "mapping": { - "0": "#forge:ores/oilsands" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 100%$(br)$(thing)Fonte de$(): Liberdade \uD83D\uDEE2\uD83E\uDD85\uD83D\uDDFD", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 220$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): -64 — 62$(br)$(thing)Tamanho$(): 26$(br)$(thing)Altura$(): 6$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesite, Basalt, Dacite, Diorite, Gabbro, Granite, Rhyolite", - "title": "Opal & Garnet", + "text": "$(thing)Raridade$(): 220$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): -64 — 62$(br)$(thing)Tamanho$(): 26$(br)$(thing)Altura$(): 6$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesito, Basalto, Dacito, Diorito, Gabro, Granito, Riolito", + "title": "Opala e Granada", "type": "patchouli:text", "anchor": "deep_garnet_opal" }, @@ -2459,17 +2568,17 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 190$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 100$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 40$(br2)$(thing)Tipos de Pedra$(): Gneiss, Quartzite, Schist, Shale", - "title": "Quartzes", + "text": "$(thing)Raridade$(): 260$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -64 — 30$(br)$(thing)Tamanho$(): 32$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesito, Basalto, Dacito, Diorito, Gabro, Granito, Riolito", + "title": "Ouro (Profundo)", "type": "patchouli:text", - "anchor": "normal_quartz" + "anchor": "deep_gold" }, { "Type": "patchouli:multiblock", - "name": "Quartzito", + "name": "Ouro Nativo", "multiblock": { "mapping": { - "0": "#forge:ores/quartzite" + "0": "#forge:ores/gold" }, "pattern": [ [ @@ -2481,15 +2590,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 43%$(br)$(thing)Usado para$(): Componentes LV$(br)$(thing)Fórmula$(): SiO₂", + "text": "$(thing)Porcentagem$(): 75%$(br)$(thing)Derrete em$(): Ouro$(br)$(thing)Fórmula$(): Au", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Barita", + "name": "Hematita", "multiblock": { "mapping": { - "0": "#forge:ores/barite" + "0": "#forge:ores/hematite" }, "pattern": [ [ @@ -2501,15 +2610,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 37%$(br)$(thing)Fonte de$(): Bário$(br)$(thing)Fórmula$(): BaSO₂", + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): Fe₂O₃", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Amianto", + "name": "Goethita", "multiblock": { "mapping": { - "0": "#forge:ores/asbestos" + "0": "#forge:ores/goethite" }, "pattern": [ [ @@ -2521,42 +2630,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 18%$(br)$(thing)Fonte de$(): Magnésio, Câncer de pulmão$(br)$(thing)Fórmula$(): Mg₃Si₂H₄O₉$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Asbestose (Inalação)$(/t)$()", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 160$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 100$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Granite$(br2)Can't find it? Granite always spawns below $(thing)Rhyolite$(), and looking in oceans can be useful too!", - "title": "Redstone, Cinnabar, & Ruby", - "type": "patchouli:text", - "anchor": "normal_redstone" - }, - { - "Type": "patchouli:multiblock", - "name": "Redstone", - "multiblock": { - "mapping": { - "0": "#forge:ores/redstone" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 45%$(br)$(thing)Derrete em$(): Redstone$(br)$(thing)Fórmula$(): Si(FeS₂)₅(CrAl₂O₃)Hg₃", + "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeHO₂", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Rubi", + "name": "Limonita Amarela", "multiblock": { "mapping": { - "0": "#forge:ores/ruby" + "0": "#forge:ores/yellow_limonite" }, "pattern": [ [ @@ -2568,114 +2650,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): Cromo, Alumínio$(br)$(thing)Fórmula$(): CrAl₂O₃", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Cinábrio", - "multiblock": { - "mapping": { - "0": "#forge:ores/cinnabar" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Fonte de$(): Mercúrio$(br)$(thing)Fórmula$(): HgS", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 210$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 60$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Gneiss, Granite, Marble, Phyllite, Quartzite, Schist, Slate", - "title": "Saltpeter & Electrotine", - "type": "patchouli:text", - "anchor": "normal_saltpeter" - }, - { - "Type": "patchouli:multiblock", - "name": "Salitre", - "multiblock": { - "mapping": { - "0": "#forge:ores/saltpeter" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): Potássio, Nitrogênio$(br)$(thing)Fórmula$(): KNO₃", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Diatomita", - "multiblock": { - "mapping": { - "0": "#forge:ores/diatomite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Ferro, Alumínio$(br)$(thing)Fórmula$(): (SiO₂)₈(Fe₂O₃)(Al₂O₃)", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Eletrotina", - "multiblock": { - "mapping": { - "0": "#forge:ores/electrotine" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Ouro, Prata, Redstone$(br)$(thing)Fórmula$(): (Si(FeS₂)₅(CrAl₂O₃)Hg₃)(AgAu)", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Alunita", - "multiblock": { - "mapping": { - "0": "#forge:ores/alunite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Potássio, Alumínio$(br)$(thing)Fórmula$(): KAl₃Si₂H₆O₁₄", + "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeHO₂", "type": "patchouli:multiblock" }, { @@ -2685,17 +2660,17 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 175$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): 30 — 70$(br)$(thing)Tamanho$(): 40$(br)$(thing)Altura$(): 4$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Claystone, Limestone, Shale", - "title": "Salts & Borax", + "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): -32 — 60$(br)$(thing)Tamanho$(): 40$(br)$(thing)Altura$(): 12$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Andesito, Basalto, Dacito, Diorito, Gabro, Granito, Riolito", + "title": "Ouro, Limonita e Hematita", "type": "patchouli:text", - "anchor": "normal_salt" + "anchor": "normal_gold" }, { "Type": "patchouli:multiblock", - "name": "Sal-gema", + "name": "Ouro Nativo", "multiblock": { "mapping": { - "0": "#forge:ores/rock_salt" + "0": "#forge:ores/gold" }, "pattern": [ [ @@ -2707,15 +2682,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Fonte de$(): Potássio, Cloro$(br)$(thing)Fórmula$(): KCl", + "text": "$(thing)Porcentagem$(): 55%$(br)$(thing)Derrete em$(): Ouro$(br)$(thing)Fórmula$(): Au", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Sal", + "name": "Limonita Amarela", "multiblock": { "mapping": { - "0": "#forge:ores/salt" + "0": "#forge:ores/yellow_limonite" }, "pattern": [ [ @@ -2727,15 +2702,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 30%$(br)$(thing)Fonte de$(): Sódio, Cloro$(br)$(thing)Fórmula$(): NaCl", + "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeHO₂", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Lepidorita", + "name": "Hematita", "multiblock": { "mapping": { - "0": "#forge:ores/lepidolite" + "0": "#forge:ores/hematite" }, "pattern": [ [ @@ -2747,15 +2722,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Potássio, Lítio, Alumínio, Flúor$(br)$(thing)Fórmula$(): KLi₃Al₄F₂O₁₀", + "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): Fe₂O₃", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Bórax", + "name": "Goethita", "multiblock": { "mapping": { - "0": "#forge:ores/borax" + "0": "#forge:ores/goethite" }, "pattern": [ [ @@ -2767,7 +2742,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Sódio, Boro$(br)$(thing)Fórmula$(): Na₂B₄(H₂O)₁₀O₇", + "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeHO₂", "type": "patchouli:multiblock" }, { @@ -2777,234 +2752,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 180$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): -64 — 26$(br)$(thing)Tamanho$(): 28$(br)$(thing)Altura$(): 8$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesite, Basalt, Dacite, Rhyolite", - "title": "Sapphire & Almandine", - "type": "patchouli:text", - "anchor": "deep_sapphire" - }, - { - "Type": "patchouli:multiblock", - "name": "Almandina", - "multiblock": { - "mapping": { - "0": "#forge:ores/almandine" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 38%$(br)$(thing)Fonte de$(): Alumínio, Ferro$(br)$(thing)Fórmula$(): Al₂Fe₃Si₃O₁₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Piropo", - "multiblock": { - "mapping": { - "0": "#forge:ores/pyrope" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 27%$(br)$(thing)Fonte de$(): Alumínio, Magnésio$(br)$(thing)Fórmula$(): Al₂Mg₃Si₃O₁₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Safira", - "multiblock": { - "mapping": { - "0": "#forge:ores/sapphire" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 16%$(br)$(thing)Fonte de$(): Alimínio$(br)$(thing)Fórmula$(): Al₂O₃", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Safira Verde", - "multiblock": { - "mapping": { - "0": "#forge:ores/green_sapphire" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 16%$(br)$(thing)Fonte de$(): Aluminium$(br)$(thing)Fórmula$(): Al₂O₃", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 240$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -64 — 0$(br)$(thing)Tamanho$(): 20$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Granite", - "title": "Scheelite & Tungstate", - "type": "patchouli:text", - "anchor": "deep_scheelite" - }, - { - "Type": "patchouli:multiblock", - "name": "Sheelita", - "multiblock": { - "mapping": { - "0": "#forge:ores/scheelite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 45%$(br)$(thing)Fonte de$(): Tungstênio$(br)$(thing)Fórmula$(): Ca(WO₃)O", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Tungstato", - "multiblock": { - "mapping": { - "0": "#forge:ores/tungstate" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): Tungstênio, Lítio$(br)$(thing)Fórmula$(): Li₂(WO₃)O", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Lítio", - "multiblock": { - "mapping": { - "0": "#forge:ores/lithium" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Fonte de$(): Lítio$(br)$(thing)Fórmula$(): Li", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 160$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 75$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Gneiss, Granite", - "title": "Silver, Galena, & Lead", - "type": "patchouli:text", - "anchor": "normal_silver" - }, - { - "Type": "patchouli:multiblock", - "name": "Chumbo", - "multiblock": { - "mapping": { - "0": "#forge:ores/lead" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 55%$(br)$(thing)Derrete em$(): Chumbo$(br)$(thing)Fórmula$(): Pb$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Pouco Venenoso (Inalação)$(/t)$()", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Galena", - "multiblock": { - "mapping": { - "0": "#forge:ores/galena" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 30%$(br)$(thing)Derrete em$(): Chumbo$(br)$(thing)Fórmula$(): PbS$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Pouco Venenoso (Inalação)$(/t)$()", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Prata Nativa", - "multiblock": { - "mapping": { - "0": "#forge:ores/silver" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Derrete em$(): Prata$(br)$(thing)Fórmula$(): Ag", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 190$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -40 — 56$(br)$(thing)Tamanho$(): 36$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Granite", - "title": "Soapstone, Talc, & Trona", + "text": "$(thing)Raridade$(): 190$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -40 — 56$(br)$(thing)Tamanho$(): 36$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Diorito, Gabro, Granito", + "title": "Pedra-sabão, Talco e Trona", "type": "patchouli:text", "anchor": "normal_lubricant" }, @@ -3110,17 +2859,17 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 75$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Andesite, Basalt, Dacite, Gneiss, Marble, Phyllite, Quartzite, Rhyolite, Schist, Slate", - "title": "Sphalerite & Pyrite", + "text": "$(thing)Raridade$(): 160$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 75$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Gnaisse, Granito", + "title": "Prata, Galena e Chumbo", "type": "patchouli:text", - "anchor": "normal_sphalerite" + "anchor": "normal_silver" }, { "Type": "patchouli:multiblock", - "name": "Esfalerita", + "name": "Chumbo", "multiblock": { "mapping": { - "0": "#forge:ores/sphalerite" + "0": "#forge:ores/lead" }, "pattern": [ [ @@ -3132,15 +2881,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Derrete em$(): Zinco$(br)$(thing)Fórmula$(): ZnS", + "text": "$(thing)Porcentagem$(): 55%$(br)$(thing)Derrete em$(): Chumbo$(br)$(thing)Fórmula$(): Pb$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Pouco Venenoso (Inalação)$(/t)$()", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Enxofre", + "name": "Galena", "multiblock": { "mapping": { - "0": "#forge:ores/sulfur" + "0": "#forge:ores/galena" }, "pattern": [ [ @@ -3152,15 +2901,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): Enxofre$(br)$(thing)Fórmula$(): S", + "text": "$(thing)Porcentagem$(): 30%$(br)$(thing)Derrete em$(): Chumbo$(br)$(thing)Fórmula$(): PbS$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Pouco Venenoso (Inalação)$(/t)$()", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Pirita", + "name": "Prata Nativa", "multiblock": { "mapping": { - "0": "#forge:ores/pyrite" + "0": "#forge:ores/silver" }, "pattern": [ [ @@ -3172,22 +2921,22 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeS₂", + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Derrete em$(): Prata$(br)$(thing)Fórmula$(): Ag", "type": "patchouli:multiblock" }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 145$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 60 — 210$(br)$(thing)Tamanho$(): 50$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Andesite, Basalt, Dacite, Gneiss, Marble, Phyllite, Quartzite, Rhyolite, Schist, Slate", - "title": "Sphalerite & Sulfur", + "text": "$(thing)Raridade$(): 190$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 100$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 40$(br2)$(thing)Tipos de Pedra$(): Folhelho, Gnaisse, Quartzito, Xisto", + "title": "Quartzos", "type": "patchouli:text", - "anchor": "surface_sphalerite" + "anchor": "normal_quartz" }, { "Type": "patchouli:multiblock", - "name": "Enxofre", + "name": "Quartzito", "multiblock": { "mapping": { - "0": "#forge:ores/sulfur" + "0": "#forge:ores/quartzite" }, "pattern": [ [ @@ -3199,15 +2948,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 55%$(br)$(thing)Fonte de$(): Enxofre$(br)$(thing)Fórmula$(): S", + "text": "$(thing)Porcentagem$(): 43%$(br)$(thing)Usado para$(): Componentes LV$(br)$(thing)Fórmula$(): SiO₂", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Esfalerita", + "name": "Barita", "multiblock": { "mapping": { - "0": "#forge:ores/sphalerite" + "0": "#forge:ores/barite" }, "pattern": [ [ @@ -3219,15 +2968,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Derrete em$(): Zinco$(br)$(thing)Fórmula$(): ZnS", + "text": "$(thing)Porcentagem$(): 37%$(br)$(thing)Fonte de$(): Bário$(br)$(thing)Fórmula$(): BaSO₂", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Pirita", + "name": "Amianto", "multiblock": { "mapping": { - "0": "#forge:ores/pyrite" + "0": "#forge:ores/asbestos" }, "pattern": [ [ @@ -3239,22 +2988,22 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeS₂", + "text": "$(thing)Porcentagem$(): 18%$(br)$(thing)Fonte de$(): Magnésio, Câncer de pulmão$(br)$(thing)Fórmula$(): Mg₃Si₂H₄O₉$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Asbestose (Inalação)$(/t)$()", "type": "patchouli:multiblock" }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 180$(br)$(thing)Densidade$(): 0.375$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): 20 — 60$(br)$(thing)Tamanho$(): 35$(br)$(thing)Altura$(): 6$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Gneiss, Granite, Marble, Phyllite, Quartzite, Schist, Slate", - "title": "Spodumene & Lepidolite", + "text": "$(thing)Raridade$(): 160$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 100$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Granito$(br2)Não consegue encontrar? O Granito sempre aparece abaixo de $(thing)Riolito$(), e procurar nos oceanos também pode ser útil!", + "title": "Redstone, Cinábrio e Rubi", "type": "patchouli:text", - "anchor": "normal_spodumene" + "anchor": "normal_redstone" }, { "Type": "patchouli:multiblock", - "name": "Espodumena", + "name": "Redstone", "multiblock": { "mapping": { - "0": "#forge:ores/spodumene" + "0": "#forge:ores/redstone" }, "pattern": [ [ @@ -3266,7 +3015,166 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): Lítio, Alumínio$(br)$(thing)Fórmula$(): LiAlSi₂O₆", + "text": "$(thing)Porcentagem$(): 45%$(br)$(thing)Derrete em$(): Redstone$(br)$(thing)Fórmula$(): Si(FeS₂)₅(CrAl₂O₃)Hg₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Rubi", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): Cromo, Alumínio$(br)$(thing)Fórmula$(): CrAl₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cinábrio", + "multiblock": { + "mapping": { + "0": "#forge:ores/cinnabar" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Fonte de$(): Mercúrio$(br)$(thing)Fórmula$(): HgS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 180$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): -64 — 26$(br)$(thing)Tamanho$(): 28$(br)$(thing)Altura$(): 8$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesito, Basalto, Dacito, Riolito", + "title": "Safira e Almandina", + "type": "patchouli:text", + "anchor": "deep_sapphire" + }, + { + "Type": "patchouli:multiblock", + "name": "Almandina", + "multiblock": { + "mapping": { + "0": "#forge:ores/almandine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 38%$(br)$(thing)Fonte de$(): Alumínio, Ferro$(br)$(thing)Fórmula$(): Al₂Fe₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Piropo", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrope" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 27%$(br)$(thing)Fonte de$(): Alumínio, Magnésio$(br)$(thing)Fórmula$(): Al₂Mg₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Safira", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 16%$(br)$(thing)Fonte de$(): Alimínio$(br)$(thing)Fórmula$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Safira Verde", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 16%$(br)$(thing)Fonte de$(): Aluminium$(br)$(thing)Fórmula$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 175$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): 30 — 70$(br)$(thing)Tamanho$(): 40$(br)$(thing)Altura$(): 4$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Argilito, Calcário, Folhelho", + "title": "Sais e Bórax", + "type": "patchouli:text", + "anchor": "normal_salt" + }, + { + "Type": "patchouli:multiblock", + "name": "Sal-gema", + "multiblock": { + "mapping": { + "0": "#forge:ores/rock_salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Fonte de$(): Potássio, Cloro$(br)$(thing)Fórmula$(): KCl", "type": "patchouli:multiblock" }, { @@ -3289,26 +3197,6 @@ "text": "$(thing)Porcentagem$(): 30%$(br)$(thing)Fonte de$(): Sódio, Cloro$(br)$(thing)Fórmula$(): NaCl", "type": "patchouli:multiblock" }, - { - "Type": "patchouli:multiblock", - "name": "Sal-gema", - "multiblock": { - "mapping": { - "0": "#forge:ores/rock_salt" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Fonte de$(): Potássio, Cloro$(br)$(thing)Fórmula$(): KCl", - "type": "patchouli:multiblock" - }, { "Type": "patchouli:multiblock", "name": "Lepidorita", @@ -3329,6 +3217,26 @@ "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Potássio, Lítio, Alumínio, Flúor$(br)$(thing)Fórmula$(): KLi₃Al₄F₂O₁₀", "type": "patchouli:multiblock" }, + { + "Type": "patchouli:multiblock", + "name": "Bórax", + "multiblock": { + "mapping": { + "0": "#forge:ores/borax" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Sódio, Boro$(br)$(thing)Fórmula$(): Na₂B₄(H₂O)₁₀O₇", + "type": "patchouli:multiblock" + }, { "Type": "patchouli:empty", "draw_filler": true, @@ -3336,17 +3244,17 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 165$(br)$(thing)Densidade$(): 0.2$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 210$(br)$(thing)Tamanho$(): 45$(br)$(thing)Profundidade Máxima do Indicador$(): 40$(br2)$(thing)Tipos de Pedra$(): Andesite, Basalt, Dacite, Rhyolite", - "title": "Sulfur & Pyrite", + "text": "$(thing)Raridade$(): 210$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 60$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Ardósia, Diorito, Filito, Gabro, Gnaisse, Granito, Mármore, Quartzito, Xisto", + "title": "Salitre e Eletrotina", "type": "patchouli:text", - "anchor": "normal_sulfur" + "anchor": "normal_saltpeter" }, { "Type": "patchouli:multiblock", - "name": "Enxofre", + "name": "Salitre", "multiblock": { "mapping": { - "0": "#forge:ores/sulfur" + "0": "#forge:ores/saltpeter" }, "pattern": [ [ @@ -3358,15 +3266,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 50%$(br)$(thing)Fonte de$(): Enxofre$(br)$(thing)Fórmula$(): S", + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): Potássio, Nitrogênio$(br)$(thing)Fórmula$(): KNO₃", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Pirita", + "name": "Diatomita", "multiblock": { "mapping": { - "0": "#forge:ores/pyrite" + "0": "#forge:ores/diatomite" }, "pattern": [ [ @@ -3378,15 +3286,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeS₂", + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Ferro, Alumínio$(br)$(thing)Fórmula$(): (SiO₂)₈(Fe₂O₃)(Al₂O₃)", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Esfalerita", + "name": "Eletrotina", "multiblock": { "mapping": { - "0": "#forge:ores/sphalerite" + "0": "#forge:ores/electrotine" }, "pattern": [ [ @@ -3398,13 +3306,105 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Derrete em$(): Zinco$(br)$(thing)Fórmula$(): ZnS", + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Ouro, Prata, Redstone$(br)$(thing)Fórmula$(): (Si(FeS₂)₅(CrAl₂O₃)Hg₃)(AgAu)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Alunita", + "multiblock": { + "mapping": { + "0": "#forge:ores/alunite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Potássio, Alumínio$(br)$(thing)Fórmula$(): KAl₃Si₂H₆O₁₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 240$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -64 — 0$(br)$(thing)Tamanho$(): 20$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Diorito, Gabro, Granito", + "title": "Sheelita e Tungstato", + "type": "patchouli:text", + "anchor": "deep_scheelite" + }, + { + "Type": "patchouli:multiblock", + "name": "Sheelita", + "multiblock": { + "mapping": { + "0": "#forge:ores/scheelite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 45%$(br)$(thing)Fonte de$(): Tungstênio$(br)$(thing)Fórmula$(): Ca(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Tungstato", + "multiblock": { + "mapping": { + "0": "#forge:ores/tungstate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): Tungstênio, Lítio$(br)$(thing)Fórmula$(): Li₂(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Lítio", + "multiblock": { + "mapping": { + "0": "#forge:ores/lithium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Fonte de$(): Lítio$(br)$(thing)Fórmula$(): Li", "type": "patchouli:multiblock" }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 75$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Gneiss, Marble, Phyllite, Quartzite, Schist, Slate", - "title": "Tetrahedrite (Normal)", + "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 — 75$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Ardósia, Filito, Gnaisse, Mármore, Quartzito, Xisto", + "title": "Tetraedrita (Normal)", "type": "patchouli:text", "anchor": "normal_tetrahedrite" }, @@ -3470,8 +3470,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 140$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 60 — 210$(br)$(thing)Tamanho$(): 50$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Gneiss, Marble, Phyllite, Quartzite, Schist, Slate", - "title": "Tetrahedrite (Surface)", + "text": "$(thing)Raridade$(): 140$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 60 — 210$(br)$(thing)Tamanho$(): 50$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Ardósia, Filito, Gnaisse, Mármore, Quartzito, Xisto", + "title": "Tetraedrita (Superfície)", "type": "patchouli:text", "anchor": "surface_tetrahedrite" }, @@ -3537,8 +3537,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 260$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): -64 — 26$(br)$(thing)Tamanho$(): 28$(br)$(thing)Altura$(): 7$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Gneiss, Marble, Phyllite, Quartzite, Schist, Slate", - "title": "Topaz & Chalcocite", + "text": "$(thing)Raridade$(): 260$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): -64 — 26$(br)$(thing)Tamanho$(): 28$(br)$(thing)Altura$(): 7$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Ardósia, Filito, Gnaisse, Mármore, Quartzito, Xisto", + "title": "Topázio e Calcocita", "type": "patchouli:text", "anchor": "deep_topaz" }, @@ -3629,8 +3629,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 220$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -64 — -20$(br)$(thing)Tamanho$(): 24$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Gneiss, Granite, Marble, Phyllite, Quartzite, Schist, Slate", - "title": "Uraninite & Pitchblende", + "text": "$(thing)Raridade$(): 220$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -64 — -20$(br)$(thing)Tamanho$(): 24$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Ardósia, Diorito, Filito, Gabro, Gnaisse, Granito, Mármore, Quartzito, Xisto", + "title": "Uraninita e Pechblenda", "type": "patchouli:text", "anchor": "deep_pitchblende" }, @@ -3681,8 +3681,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 245$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -64 — 10$(br)$(thing)Tamanho$(): 26$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesite, Basalt, Dacite, Diorite, Gabbro, Granite, Rhyolite", - "title": "Wulfenite & Molybdenite", + "text": "$(thing)Raridade$(): 245$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -64 — 10$(br)$(thing)Tamanho$(): 26$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesito, Basalto, Dacito, Diorito, Gabro, Granito, Riolito", + "title": "Wulfenita e Molibdenita", "type": "patchouli:text", "anchor": "deep_molybdenum" }, diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/hazards.json b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/hazards.json new file mode 100644 index 000000000..d60fbd91e --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/hazards.json @@ -0,0 +1,89 @@ +{ + "name": "Materiais Perigosos", + "icon": "createdeco:decal_skull", + "category": "tfc:tfg_ores", + "priority": true, + "sortnum": 1, + "read_by_default": true, + "pages": [ + { + "type": "patchouli:spotlight", + "title": "Materiais Perigosos", + "item": "gtceu:cobaltite_dust", + "text": "Alguns minérios e pós são perigosos e podem causar efeitos negativos ou até mesmo matá-lo se forem carregados em seu inventário.$(br2)Certos equipamentos, como $(thing)máscaras$(), $(thing)luvas$() e $(thing)trajes de materiais perigosos$(), mais tarde, podem ser usados para neutralizar esses efeitos." + }, + { + "type": "patchouli:crafting", + "title": "Máscara Facial", + "recipe": "gtceu:shaped/face_mask", + "text": "A $(thing)Máscara Facial$() fornece proteção contra quaisquer perigos de $(item)Inalação$(), como Arsenicose." + }, + { + "type": "patchouli:spotlight", + "item": "gtceu:rubber_gloves", + "title": "Luvas de Borracha", + "link_recipes": true, + "text": "Luvas de Borracha podem ser feitas de $(l:mechanics/leather_making)Couro$() e $(l:arborfirmacraft/making_rubber)Látex$(), ou de Chapas de Borracha. Elas oferecem proteção contra quaisquer riscos de $(item)Contato com a Pele$(), como Beriliose." + }, + { + "type": "tfc:knapping_recipe", + "recipe": "tfchotornot:leather_knapping/mittens", + "text": "Primeiro, trabalhe o couro em mitenes." + }, + { + "type": "tfc:sealed_barrel_recipe", + "recipe": "tfg:sealed_barrel/prepared_leather_gloves", + "text": "As Mitenes são então embebidas em $(thing)Vinagre$(), uma mistura de frutas e álcool." + }, + { + "type": "patchouli:spotlight", + "item": "tfg:latex_soaked_gloves", + "text": "Luvas de couro preparadas são então aquecidas em uma $(thing)cubat$() com $(thing)Látex Vulcanizado$(), a um passo da borracha." + }, + { + "type": "patchouli:spotlight", + "item": "gtceu:rubber_gloves", + "text": "Por fim, as luvas embebidas em látex são aquecidas em um $(l:firmalife/oven)Forno$()." + }, + { + "type": "patchouli:spotlight", + "title": "Rochas", + "item": { "tag": "tfc:rock_knapping" }, + "text": "A maneira mais fácil de evitar que itens perigosos entrem no seu inventário é não pegá-los. $(br)Preencher seu inventário com $(thing)Rochas$(), por exemplo, permitirá que você escolha quais itens deseja pegar, permitindo que você lide com os perigosos de uma só vez mais tarde." + }, + { + "type": "patchouli:spotlight", + "title": "Recipientes", + "text": "Materiais perigosos só causam dano enquanto estiverem em seu $(thing)inventário$(), mas isso não se aplica a outros contêineres!$(br)Materiais perigosos não causarão dano enquanto estiverem em outro contêiner, como uma $(l:tfg_tips/inventory_management)Mochila$() ou $(l:getting_started/pottery#vessel)Vaso$(). $(thing)Clicar com o botão direito$() enquanto segura um vaso permitirá a transferência direta do seu conteúdo de e para outros contêineres.", + "item": "sophisticatedbackpacks:backpack,tfc:ceramic/vessel,tfc:ceramic/large_vessel" + }, + { + "type": "patchouli:spotlight", + "title": "Água Termal", + "item": "tfc:bucket/spring_water", + "text": "Ficar na $(thing)Água Termal$() causará um efeito lento de $(thing)Regeneração$()." + }, + { + "type": "patchouli:spotlight", + "title": "Álcool Envelhecido", + "text": "$(thing)Álcool Envelhecido$() dará bônus de poções, alguns dos quais você pode achar úteis.$(br2)Você pode bebê-las com um $(l:getting_started/pottery#jug)Cântaro$() ou um $(l:waterflasks/recipes)Cantil$().", + "item": "tfcagedalcohol:bucket/aged_beer,tfcagedalcohol:bucket/aged_cider,tfcagedalcohol:bucket/aged_rum,tfcagedalcohol:bucket/aged_sake,tfcagedalcohol:bucket/aged_vodka,tfcagedalcohol:bucket/aged_whiskey,tfcagedalcohol:bucket/aged_corn_whiskey,tfcagedalcohol:bucket/aged_rye_whiskey" + }, + { + "type": "patchouli:text", + "text": "Cerveja Envelhecida: Absorção II (20:00)$(br2)Sidra Envelhecida: Velocidade (5:20)$(br2)Rum Envelhecido: Velocidade II (2:40)$(br2)Saquê Envelhecido: Resistência (5:20)$(br2)Vodca Envelhecida: Resistência II (2:40)$(br2)Uísque de Milho Envelhecido: Pressa (5:20)$(br2)Uísque de Centeio Envelhecido: Pressa (5:20)$(br2)Uísque Envelhecido: Pressa II (2:40)" + }, + { + "type": "patchouli:spotlight", + "item": { "tag": "tfc:foods" }, + "title": "Nutrição", + "text": "Comer alimentos melhores com mais $(l:getting_started/food_and_water#nutrients)nutrição$() aumentará seu HP máximo em uma quantidade significativa.$(br2)$(l:mechanics/pot#soup)Sopas$(), $(l:mechanics/sandwiches)Sanduíches$() e $(l:mechanics/salad)Saladas$() são ótimos para isso." + }, + { + "type": "patchouli:spotlight", + "title": "Cama", + "item": { "tag": "minecraft:beds" }, + "text": "Se tudo mais falhar, levar uma cama para renascer é uma boa ideia.$(br2)Se você não tiver acesso a $(thing)Lã$() ou $(thing)Linha$(), você também pode fazer uma $(l:getting_started/a_place_to_sleep)Cama de Palha$()." + } + ] +} diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/moon_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/moon_vein_index.json index 9e2b41499..5fc41c51a 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/moon_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/moon_vein_index.json @@ -14,12 +14,12 @@ }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/moon_vein_index#moon_apatite)Apatite & Pyrochlore$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_monazite)Bastnasite & Monazite$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_bauxite)Bauxite & Ilmenite$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_quartz)Certus Quartz$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_magnetite)Chromite & Magnetite$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_sheldonite)Cooperite & Bornite$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_desh)Desh & Ilmenite$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_beryllium)Emerald & Beryllium$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_garnierite)Garnierite & Cobaltite$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_graphite)Graphite & Diamond$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_mica)Kyanite, Mica, & Bauxite$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_manganese)Manganese & Tantalum$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_pyrolusite)Pyrolusite and Cobalt$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_redstone)Redstone, Cinnabar, & Ruby$()$()", + "text": "$(li)$(l:tfg_ores/moon_vein_index#moon_apatite)Apatita e Pirocloro$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_monazite)Bastnasita e Monazita$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_bauxite)Bauxita e Ilmenita$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_mica)Cianita, Mica e Bauxita$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_sheldonite)Cooperita e Bornita$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_magnetite)Cromita e Magnetita$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_desh)Desh e Ilmenita$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_sphalerite)Esfalerita e Pirita$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_beryllium)Esmeralda e Berílio$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_garnierite)Garnierita e Cobaltita$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_graphite)Grafite e Diamante$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_manganese)Manganês e Tântalo$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_lubricant)Pedra-sabão, Talco e Trona$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_pyrolusite)Pirolusita e Cobalto$()$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/moon_vein_index#moon_saltpeter)Saltpeter & Electrotine$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_sapphire)Sapphire & Almandine$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_scheelite)Scheelite & Tungstate$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_silver)Silver, Galena, & Lead$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_lubricant)Soapstone, Talc, & Trona$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_sphalerite)Sphalerite & Pyrite$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_topaz)Topaz & Chalcocite$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_molybdenum)Wulfenite & Molybdenite$()$()", + "text": "$(li)$(l:tfg_ores/moon_vein_index#moon_silver)Prata, Galena e Chumbo$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_quartz)Quartzo Certus$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_redstone)Redstone, Cinábrio e Rubi$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_sapphire)Safira e Almandina$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_saltpeter)Salitre e Eletrotina$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_scheelite)Sheelita e Tungstato$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_topaz)Topázio e Calcosita$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_molybdenum)Wulfenita e Molibdenita$()$()", "type": "patchouli:text" }, { @@ -29,8 +29,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 250$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 100$(br)$(thing)Tamanho$(): 35$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Anorthosite, Diorite, Norite", - "title": "Apatite & Pyrochlore", + "text": "$(thing)Raridade$(): 250$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 100$(br)$(thing)Tamanho$(): 35$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Anortosito, Diorito, Norito", + "title": "Apatita e Pirocloro", "type": "patchouli:text", "anchor": "moon_apatite" }, @@ -121,8 +121,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 310$(br)$(thing)Densidade$(): 0.2$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 50$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Andesite, Dacite, Phonolite, Rhyolite", - "title": "Bastnasite & Monazite", + "text": "$(thing)Raridade$(): 310$(br)$(thing)Densidade$(): 0.2$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 50$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Andesito, Dacito, Fonolito, Riolito", + "title": "Bastnasita e Monazita", "type": "patchouli:text", "anchor": "moon_monazite" }, @@ -213,8 +213,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 200$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 80$(br)$(thing)Tamanho$(): 50$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Anorthosite, Basalt, Diorite, Norite, Phonolite, Rhyolite", - "title": "Bauxite & Ilmenite", + "text": "$(thing)Raridade$(): 200$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 80$(br)$(thing)Tamanho$(): 50$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Anortosito, Basalto, Diorito, Fonolito, Norito, Riolito", + "title": "Bauxita e Ilmenita", "type": "patchouli:text", "anchor": "moon_bauxite" }, @@ -275,677 +275,13 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 21%$(br)$(thing)Fonte de$(): Magnésio, Rutilo, Titânio$(br)$(thing)Fórmula$(): TODO", + "text": "$(thing)Porcentagem$(): 21%$(br)$(thing)Fonte de$(): Magnésio, Rutilo, Titânio$(br)$(thing)Fórmula$(): (Mg,Fe)Ti₂O₅", "type": "patchouli:multiblock" }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 230$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 10 — 100$(br)$(thing)Tamanho$(): 60$(br)$(thing)Profundidade Máxima do Indicador$(): 80$(br2)$(thing)Tipos de Pedra$(): Andesite, Anorthosite, Basalt, Dacite, Diorite, Gabbro, Norite, Phonolite, Rhyolite", - "title": "Certus Quartz", - "type": "patchouli:text", - "anchor": "moon_quartz" - }, - { - "Type": "patchouli:multiblock", - "name": "Quartzo Certus", - "multiblock": { - "mapping": { - "0": "#forge:ores/certus_quartz" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 45%$(br)$(thing)Usado para$(): Applied Energistics 2$(br)$(thing)Fórmula$(): SiO₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Quartzo do Nether", - "multiblock": { - "mapping": { - "0": "#forge:ores/nether_quartz" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 30%$(br)$(thing)Usado para$(): Applied Energistics 2$(br)$(thing)Fórmula$(): SiO₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Quartzito", - "multiblock": { - "mapping": { - "0": "#forge:ores/quartzite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Usado para$(): Componentes LV$(br)$(thing)Fórmula$(): SiO₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Barita", - "multiblock": { - "mapping": { - "0": "#forge:ores/barite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Fonte de$(): Bário$(br)$(thing)Fórmula$(): BaSO₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 280$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 90$(br)$(thing)Tamanho$(): 70$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Anorthosite, Diorite, Gabbro, Norite", - "title": "Chromite & Magnetite", - "type": "patchouli:text", - "anchor": "moon_magnetite" - }, - { - "Type": "patchouli:multiblock", - "name": "Cromita", - "multiblock": { - "mapping": { - "0": "#forge:ores/chromite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Fonte de$(): Cromo$(br)$(thing)Fórmula$(): FeCr₂O₄$(br)$(thing)Perigo$(): $(c)$(t:Requer Luvas de Borracha)Irritante (Contato com a Pele)$(/t)$()", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Magnetita", - "multiblock": { - "mapping": { - "0": "#forge:ores/magnetite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): Fe₃O₄", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Magnetita de Vanádio", - "multiblock": { - "mapping": { - "0": "#forge:ores/vanadium_magnetite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Ferro, Vanádio$(br)$(thing)Fórmula$(): (Fe₃O₄)V", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Ouro Nativo", - "multiblock": { - "mapping": { - "0": "#forge:ores/gold" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Derrete em$(): Ouro$(br)$(thing)Fórmula$(): Au", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Safira", - "multiblock": { - "mapping": { - "0": "#forge:ores/sapphire" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Fonte de$(): Alimínio$(br)$(thing)Fórmula$(): Al₂O₃", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 260$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 30$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Andesite, Basalt, Phonolite", - "title": "Cooperite & Bornite", - "type": "patchouli:text", - "anchor": "moon_sheldonite" - }, - { - "Type": "patchouli:multiblock", - "name": "Bornita", - "multiblock": { - "mapping": { - "0": "#forge:ores/bornite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Cobre$(br)$(thing)Fórmula$(): Cu₅FeS₄", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Cooperita", - "multiblock": { - "mapping": { - "0": "#forge:ores/cooperite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Platina, Níquel, Paládio$(br)$(thing)Fórmula$(): Pt₃NiSPd", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Níquel", - "multiblock": { - "mapping": { - "0": "#forge:ores/nickel" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Derrete em$(): Níquel$(br)$(thing)Fórmula$(): Ni", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Platina", - "multiblock": { - "mapping": { - "0": "#forge:ores/platinum" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Derrete em$(): Platina$(br)$(thing)Fórmula$(): Pt", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 230$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 10 — 80$(br)$(thing)Tamanho$(): 45$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Andesite, Basalt, Dacite, Gabbro", - "title": "Desh & Ilmenite", - "type": "patchouli:text", - "anchor": "moon_desh" - }, - { - "Type": "patchouli:multiblock", - "name": "Desh", - "multiblock": { - "mapping": { - "0": "#forge:ores/desh" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Fonte de$(): Ferro, Titânio, Nitrogênio$(br)$(thing)Fórmula$(): (Mg₂Fe(SiO₂)₂)₂(TiO₂)N₄", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Ilmenita", - "multiblock": { - "mapping": { - "0": "#forge:ores/ilmenite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Ferro, Titânio$(br)$(thing)Fórmula$(): FeTiO₃", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Alumínio", - "multiblock": { - "mapping": { - "0": "#forge:ores/aluminium" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Fonte de$(): Alumínio$(br)$(thing)Fórmula$(): Al", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Armalcolita", - "multiblock": { - "mapping": { - "0": "#forge:ores/armalcolite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Magnésio, Rutilo, Titânio$(br)$(thing)Fórmula$(): TODO", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 260$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio Tubular$(br)$(thing)Y$(): 0 — 120$(br)$(thing)Altura$(): 70$(br)$(thing)Raio$(): 10$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Anorthosite, Basalt, Phonolite", - "title": "Emerald & Beryllium", - "type": "patchouli:text", - "anchor": "moon_beryllium" - }, - { - "Type": "patchouli:multiblock", - "name": "Esmeralda", - "multiblock": { - "mapping": { - "0": "#forge:ores/emerald" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 45%$(br)$(thing)Usado para$(): Components MV, Filtros de Tag de Item$(br)$(thing)Fórmula$(): Be₃Al₂Si₆O₁₈", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Berílio", - "multiblock": { - "mapping": { - "0": "#forge:ores/beryllium" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 31%$(br)$(thing)Fonte de$(): Berílio$(br)$(thing)Fórmula$(): Be$(br)$(thing)Perigo$(): $(c)$(t:Requer Luvas de Borracha)Beriliose (Contato com a Pele)$(/t)$()", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Sal-gema", - "multiblock": { - "mapping": { - "0": "#forge:ores/rock_salt" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 18%$(br)$(thing)Fonte de$(): Potássio, Cloro$(br)$(thing)Fórmula$(): KCl", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Olivina", - "multiblock": { - "mapping": { - "0": "#forge:ores/olivine" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 4%$(br)$(thing)Fonte de$(): Magnésio, Ferro$(br)$(thing)Fórmula$(): Mg₂Fe(SiO₂)₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Tório", - "multiblock": { - "mapping": { - "0": "#forge:ores/thorium" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 0%$(br)$(thing)Fonte de$(): Tório$(br)$(thing)Fórmula$(): Th", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 250$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 5 — 85$(br)$(thing)Tamanho$(): 55$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Rhyolite", - "title": "Garnierite & Cobaltite", - "type": "patchouli:text", - "anchor": "moon_garnierite" - }, - { - "Type": "patchouli:multiblock", - "name": "Garnierita", - "multiblock": { - "mapping": { - "0": "#forge:ores/garnierite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 23%$(br)$(thing)Derrete em$(): Níquel$(br)$(thing)Fórmula$(): NiO", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Pentlandita", - "multiblock": { - "mapping": { - "0": "#forge:ores/pentlandite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 23%$(br)$(thing)Derrete em$(): Níquel$(br)$(thing)Fórmula$(): Ni₉S₈", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Níquel", - "multiblock": { - "mapping": { - "0": "#forge:ores/nickel" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 19%$(br)$(thing)Derrete em$(): Níquel$(br)$(thing)Fórmula$(): Ni", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Cobaltita", - "multiblock": { - "mapping": { - "0": "#forge:ores/cobaltite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 19%$(br)$(thing)Fonte de$(): Cobalto, Arsênico$(br)$(thing)Fórmula$(): CoAsS$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Arsenicose (Inalação)$(/t)$()", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Cobalto", - "multiblock": { - "mapping": { - "0": "#forge:ores/cobalt" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 14%$(br)$(thing)Derrete em$(): Cobalto$(br)$(thing)Fórmula$(): Co", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 260$(br)$(thing)Densidade$(): 0.55$(br)$(thing)Tipo$(): Veio Tubular$(br)$(thing)Y$(): 0 — 120$(br)$(thing)Altura$(): 60$(br)$(thing)Raio$(): 12$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Anorthosite, Basalt, Basalt, Gabbro, Phonolite", - "title": "Graphite & Diamond", - "type": "patchouli:text", - "anchor": "moon_graphite" - }, - { - "Type": "patchouli:multiblock", - "name": "Grafite", - "multiblock": { - "mapping": { - "0": "#forge:ores/graphite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 52%$(br)$(thing)Usado para$(): $(l:mechanics/fire_clay)Argila Refratária$(), Grafeno$(br)$(thing)Fórmula$(): C", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Diamante", - "multiblock": { - "mapping": { - "0": "#forge:ores/diamond" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 36%$(br)$(thing)Usado para$(): Maceradores, AE2$(br)$(thing)Fórmula$(): C", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Olivina", - "multiblock": { - "mapping": { - "0": "#forge:ores/olivine" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 10%$(br)$(thing)Fonte de$(): Magnésio, Ferro$(br)$(thing)Fórmula$(): Mg₂Fe(SiO₂)₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 250$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 120$(br)$(thing)Tamanho$(): 35$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Anorthosite, Diorite, Gabbro, Norite", - "title": "Kyanite, Mica, & Bauxite", + "text": "$(thing)Raridade$(): 250$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 120$(br)$(thing)Tamanho$(): 35$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Anortosito, Diorito, Gabro, Norito", + "title": "Cianita, Mica e Bauxita", "type": "patchouli:text", "anchor": "moon_mica" }, @@ -1051,8 +387,647 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 215$(br)$(thing)Densidade$(): 0.5$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 5 — 80$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesite, Basalt, Basalt, Dacite, Gabbro, Norite", - "title": "Manganese & Tantalum", + "text": "$(thing)Raridade$(): 260$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 30$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Andesito, Basalto, Fonolito", + "title": "Cooperita e Bornita", + "type": "patchouli:text", + "anchor": "moon_sheldonite" + }, + { + "Type": "patchouli:multiblock", + "name": "Bornita", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Cobre$(br)$(thing)Fórmula$(): Cu₅FeS₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cooperita", + "multiblock": { + "mapping": { + "0": "#forge:ores/cooperite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Platina, Níquel, Paládio$(br)$(thing)Fórmula$(): Pt₃NiSPd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Níquel", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Derrete em$(): Níquel$(br)$(thing)Fórmula$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Platina", + "multiblock": { + "mapping": { + "0": "#forge:ores/platinum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Derrete em$(): Platina$(br)$(thing)Fórmula$(): Pt", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 280$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 90$(br)$(thing)Tamanho$(): 70$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Anortosito, Diorito, Gabro, Norito", + "title": "Cromita e Magnetita", + "type": "patchouli:text", + "anchor": "moon_magnetite" + }, + { + "Type": "patchouli:multiblock", + "name": "Cromita", + "multiblock": { + "mapping": { + "0": "#forge:ores/chromite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Fonte de$(): Cromo$(br)$(thing)Fórmula$(): FeCr₂O₄$(br)$(thing)Perigo$(): $(c)$(t:Requer Luvas de Borracha)Irritante (Contato com a Pele)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Magnetita", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): Fe₃O₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Magnetita de Vanádio", + "multiblock": { + "mapping": { + "0": "#forge:ores/vanadium_magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Ferro, Vanádio$(br)$(thing)Fórmula$(): (Fe₃O₄)V", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Ouro Nativo", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Derrete em$(): Ouro$(br)$(thing)Fórmula$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Safira", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Fonte de$(): Alimínio$(br)$(thing)Fórmula$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 230$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 10 — 80$(br)$(thing)Tamanho$(): 45$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Andesito, Basalto, Dacito, Gabro", + "title": "Desh e Ilmenita", + "type": "patchouli:text", + "anchor": "moon_desh" + }, + { + "Type": "patchouli:multiblock", + "name": "Desh", + "multiblock": { + "mapping": { + "0": "#forge:ores/desh" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Fonte de$(): Ferro, Titânio, Nitrogênio$(br)$(thing)Fórmula$(): (Mg₂Fe(SiO₂)₂)₂(TiO₂)N₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Ilmenita", + "multiblock": { + "mapping": { + "0": "#forge:ores/ilmenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Ferro, Titânio$(br)$(thing)Fórmula$(): FeTiO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Alumínio", + "multiblock": { + "mapping": { + "0": "#forge:ores/aluminium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Fonte de$(): Alumínio$(br)$(thing)Fórmula$(): Al", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Armalcolita", + "multiblock": { + "mapping": { + "0": "#forge:ores/armalcolite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Magnésio, Rutilo, Titânio$(br)$(thing)Fórmula$(): (Mg,Fe)Ti₂O₅", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 205$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 2 — 75$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Andesito, Basalto, Dacito, Fonolito, Gabro", + "title": "Esfalerita e Pirita", + "type": "patchouli:text", + "anchor": "moon_sphalerite" + }, + { + "Type": "patchouli:multiblock", + "name": "Esfalerita", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 50%$(br)$(thing)Derrete em$(): Zinco$(br)$(thing)Fórmula$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pirita", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Desh", + "multiblock": { + "mapping": { + "0": "#forge:ores/desh" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Ferro, Titânio, Nitrogênio$(br)$(thing)Fórmula$(): (Mg₂Fe(SiO₂)₂)₂(TiO₂)N₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 260$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio Tubular$(br)$(thing)Y$(): 0 — 120$(br)$(thing)Altura$(): 70$(br)$(thing)Raio$(): 10$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Anortosito, Basalto, Fonolito", + "title": "Esmeralda e Berílio", + "type": "patchouli:text", + "anchor": "moon_beryllium" + }, + { + "Type": "patchouli:multiblock", + "name": "Esmeralda", + "multiblock": { + "mapping": { + "0": "#forge:ores/emerald" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 45%$(br)$(thing)Usado para$(): Components MV, Filtros de Tag de Item$(br)$(thing)Fórmula$(): Be₃Al₂Si₆O₁₈", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Berílio", + "multiblock": { + "mapping": { + "0": "#forge:ores/beryllium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 31%$(br)$(thing)Fonte de$(): Berílio$(br)$(thing)Fórmula$(): Be$(br)$(thing)Perigo$(): $(c)$(t:Requer Luvas de Borracha)Beriliose (Contato com a Pele)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sal-gema", + "multiblock": { + "mapping": { + "0": "#forge:ores/rock_salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 18%$(br)$(thing)Fonte de$(): Potássio, Cloro$(br)$(thing)Fórmula$(): KCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Olivina", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 4%$(br)$(thing)Fonte de$(): Magnésio, Ferro$(br)$(thing)Fórmula$(): Mg₂Fe(SiO₂)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Tório", + "multiblock": { + "mapping": { + "0": "#forge:ores/thorium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 0%$(br)$(thing)Fonte de$(): Tório$(br)$(thing)Fórmula$(): Th", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 250$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 5 — 85$(br)$(thing)Tamanho$(): 55$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Diorito, Gabro, Riolito", + "title": "Garnierita e Cobaltita", + "type": "patchouli:text", + "anchor": "moon_garnierite" + }, + { + "Type": "patchouli:multiblock", + "name": "Garnierita", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnierite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 23%$(br)$(thing)Derrete em$(): Níquel$(br)$(thing)Fórmula$(): NiO", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pentlandita", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 23%$(br)$(thing)Derrete em$(): Níquel$(br)$(thing)Fórmula$(): Ni₉S₈", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Níquel", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 19%$(br)$(thing)Derrete em$(): Níquel$(br)$(thing)Fórmula$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cobaltita", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobaltite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 19%$(br)$(thing)Fonte de$(): Cobalto, Arsênico$(br)$(thing)Fórmula$(): CoAsS$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Arsenicose (Inalação)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cobalto", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobalt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 14%$(br)$(thing)Derrete em$(): Cobalto$(br)$(thing)Fórmula$(): Co", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 260$(br)$(thing)Densidade$(): 0.55$(br)$(thing)Tipo$(): Veio Tubular$(br)$(thing)Y$(): 0 — 120$(br)$(thing)Altura$(): 60$(br)$(thing)Raio$(): 12$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Anortosito, Basalto, Basalto, Fonolito, Gabro", + "title": "Grafite e Diamante", + "type": "patchouli:text", + "anchor": "moon_graphite" + }, + { + "Type": "patchouli:multiblock", + "name": "Grafite", + "multiblock": { + "mapping": { + "0": "#forge:ores/graphite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 52%$(br)$(thing)Usado para$(): $(l:mechanics/fire_clay)Argila Refratária$(), Grafeno$(br)$(thing)Fórmula$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Diamante", + "multiblock": { + "mapping": { + "0": "#forge:ores/diamond" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 36%$(br)$(thing)Usado para$(): Maceradores, AE2$(br)$(thing)Fórmula$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Olivina", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 10%$(br)$(thing)Fonte de$(): Magnésio, Ferro$(br)$(thing)Fórmula$(): Mg₂Fe(SiO₂)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 215$(br)$(thing)Densidade$(): 0.5$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 5 — 80$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesito, Basalto, Basalto, Dacito, Gabro, Norito", + "title": "Manganês e Tântalo", "type": "patchouli:text", "anchor": "moon_manganese" }, @@ -1143,550 +1118,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 210$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 20 — 80$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Andesite, Anorthosite, Basalt, Gabbro, Norite", - "title": "Pyrolusite and Cobalt", - "type": "patchouli:text", - "anchor": "moon_pyrolusite" - }, - { - "Type": "patchouli:multiblock", - "name": "Pirolusita", - "multiblock": { - "mapping": { - "0": "#forge:ores/pyrolusite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 38%$(br)$(thing)Fonte de$(): Manganês$(br)$(thing)Fórmula$(): MnO₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Cobaltita", - "multiblock": { - "mapping": { - "0": "#forge:ores/cobaltite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 23%$(br)$(thing)Fonte de$(): Cobalto, Arsênico$(br)$(thing)Fórmula$(): CoAsS$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Arsenicose (Inalação)$(/t)$()", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Cobalto", - "multiblock": { - "mapping": { - "0": "#forge:ores/cobalt" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 23%$(br)$(thing)Derrete em$(): Cobalto$(br)$(thing)Fórmula$(): Co", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Tantalita", - "multiblock": { - "mapping": { - "0": "#forge:ores/tantalite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 14%$(br)$(thing)Fonte de$(): Manganês, Tântalo$(br)$(thing)Fórmula$(): MnTa₂O₆", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 250$(br)$(thing)Densidade$(): 0.2$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 20 — 100$(br)$(thing)Tamanho$(): 45$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Andesite, Dacite, Phonolite", - "title": "Redstone, Cinnabar, & Ruby", - "type": "patchouli:text", - "anchor": "moon_redstone" - }, - { - "Type": "patchouli:multiblock", - "name": "Redstone", - "multiblock": { - "mapping": { - "0": "#forge:ores/redstone" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 42%$(br)$(thing)Derrete em$(): Redstone$(br)$(thing)Fórmula$(): Si(FeS₂)₅(CrAl₂O₃)Hg₃", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Rubi", - "multiblock": { - "mapping": { - "0": "#forge:ores/ruby" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 33%$(br)$(thing)Fonte de$(): Cromo, Alumínio$(br)$(thing)Fórmula$(): CrAl₂O₃", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Cinábrio", - "multiblock": { - "mapping": { - "0": "#forge:ores/cinnabar" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 19%$(br)$(thing)Fonte de$(): Mercúrio$(br)$(thing)Fórmula$(): HgS", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Olivina", - "multiblock": { - "mapping": { - "0": "#forge:ores/olivine" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 4%$(br)$(thing)Fonte de$(): Magnésio, Ferro$(br)$(thing)Fórmula$(): Mg₂Fe(SiO₂)₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 210$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 90$(br)$(thing)Tamanho$(): 35$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Andesite, Dacite, Norite, Rhyolite", - "title": "Saltpeter & Electrotine", - "type": "patchouli:text", - "anchor": "moon_saltpeter" - }, - { - "Type": "patchouli:multiblock", - "name": "Eletrotina", - "multiblock": { - "mapping": { - "0": "#forge:ores/electrotine" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 37%$(br)$(thing)Fonte de$(): Ouro, Prata, Redstone$(br)$(thing)Fórmula$(): (Si(FeS₂)₅(CrAl₂O₃)Hg₃)(AgAu)", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Salitre", - "multiblock": { - "mapping": { - "0": "#forge:ores/saltpeter" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 29%$(br)$(thing)Fonte de$(): Potássio, Nitrogênio$(br)$(thing)Fórmula$(): KNO₃", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Pedra-sabão", - "multiblock": { - "mapping": { - "0": "#forge:ores/soapstone" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Fonte de$(): Magnésio$(br)$(thing)Fórmula$(): Mg₃Si₄H₂O₁₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Talco", - "multiblock": { - "mapping": { - "0": "#forge:ores/talc" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 12%$(br)$(thing)Fonte de$(): Magnésio$(br)$(thing)Fórmula$(): Mg₃Si₄H₂O₁₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 280$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): 0 — 100$(br)$(thing)Tamanho$(): 28$(br)$(thing)Altura$(): 8$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Basalt, Norite", - "title": "Sapphire & Almandine", - "type": "patchouli:text", - "anchor": "moon_sapphire" - }, - { - "Type": "patchouli:multiblock", - "name": "Almandina", - "multiblock": { - "mapping": { - "0": "#forge:ores/almandine" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 38%$(br)$(thing)Fonte de$(): Alumínio, Ferro$(br)$(thing)Fórmula$(): Al₂Fe₃Si₃O₁₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Piropo", - "multiblock": { - "mapping": { - "0": "#forge:ores/pyrope" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 27%$(br)$(thing)Fonte de$(): Alumínio, Magnésio$(br)$(thing)Fórmula$(): Al₂Mg₃Si₃O₁₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Safira", - "multiblock": { - "mapping": { - "0": "#forge:ores/sapphire" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 16%$(br)$(thing)Fonte de$(): Alimínio$(br)$(thing)Fórmula$(): Al₂O₃", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Safira Verde", - "multiblock": { - "mapping": { - "0": "#forge:ores/green_sapphire" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 16%$(br)$(thing)Fonte de$(): Aluminium$(br)$(thing)Fórmula$(): Al₂O₃", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Olivina", - "multiblock": { - "mapping": { - "0": "#forge:ores/olivine" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 2%$(br)$(thing)Fonte de$(): Magnésio, Ferro$(br)$(thing)Fórmula$(): Mg₂Fe(SiO₂)₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 200$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 20$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Gabbro, Phonolite, Rhyolite", - "title": "Scheelite & Tungstate", - "type": "patchouli:text", - "anchor": "moon_scheelite" - }, - { - "Type": "patchouli:multiblock", - "name": "Tungstato", - "multiblock": { - "mapping": { - "0": "#forge:ores/tungstate" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 50%$(br)$(thing)Fonte de$(): Tungstênio, Lítio$(br)$(thing)Fórmula$(): Li₂(WO₃)O", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Sheelita", - "multiblock": { - "mapping": { - "0": "#forge:ores/scheelite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Fonte de$(): Tungstênio$(br)$(thing)Fórmula$(): Ca(WO₃)O", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Lítio", - "multiblock": { - "mapping": { - "0": "#forge:ores/lithium" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 10%$(br)$(thing)Fonte de$(): Lítio$(br)$(thing)Fórmula$(): Li", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 210$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 20 — 75$(br)$(thing)Tamanho$(): 30$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Anorthosite, Dacite, Diorite, Norite, Rhyolite", - "title": "Silver, Galena, & Lead", - "type": "patchouli:text", - "anchor": "moon_silver" - }, - { - "Type": "patchouli:multiblock", - "name": "Prata Nativa", - "multiblock": { - "mapping": { - "0": "#forge:ores/silver" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 42%$(br)$(thing)Derrete em$(): Prata$(br)$(thing)Fórmula$(): Ag", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Galena", - "multiblock": { - "mapping": { - "0": "#forge:ores/galena" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 28%$(br)$(thing)Derrete em$(): Chumbo$(br)$(thing)Fórmula$(): PbS$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Pouco Venenoso (Inalação)$(/t)$()", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Chumbo", - "multiblock": { - "mapping": { - "0": "#forge:ores/lead" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 23%$(br)$(thing)Derrete em$(): Chumbo$(br)$(thing)Fórmula$(): Pb$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Pouco Venenoso (Inalação)$(/t)$()", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Olivina", - "multiblock": { - "mapping": { - "0": "#forge:ores/olivine" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 4%$(br)$(thing)Fonte de$(): Magnésio, Ferro$(br)$(thing)Fórmula$(): Mg₂Fe(SiO₂)₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 190$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 66$(br)$(thing)Tamanho$(): 36$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Anorthosite, Basalt, Diorite, Gabbro, Norite", - "title": "Soapstone, Talc, & Trona", + "text": "$(thing)Raridade$(): 190$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 66$(br)$(thing)Tamanho$(): 36$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Anortosito, Basalto, Diorito, Gabro, Norito", + "title": "Pedra-sabão, Talco e Trona", "type": "patchouli:text", "anchor": "moon_lubricant" }, @@ -1792,17 +1225,17 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 205$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 2 — 75$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): Andesite, Basalt, Dacite, Gabbro, Phonolite", - "title": "Sphalerite & Pyrite", + "text": "$(thing)Raridade$(): 210$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 20 — 80$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Andesito, Anortosito, Basalto, Gabro, Norito", + "title": "Pirolusita e Cobalto", "type": "patchouli:text", - "anchor": "moon_sphalerite" + "anchor": "moon_pyrolusite" }, { "Type": "patchouli:multiblock", - "name": "Esfalerita", + "name": "Pirolusita", "multiblock": { "mapping": { - "0": "#forge:ores/sphalerite" + "0": "#forge:ores/pyrolusite" }, "pattern": [ [ @@ -1814,15 +1247,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 50%$(br)$(thing)Derrete em$(): Zinco$(br)$(thing)Fórmula$(): ZnS", + "text": "$(thing)Porcentagem$(): 38%$(br)$(thing)Fonte de$(): Manganês$(br)$(thing)Fórmula$(): MnO₂", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Pirita", + "name": "Cobaltita", "multiblock": { "mapping": { - "0": "#forge:ores/pyrite" + "0": "#forge:ores/cobaltite" }, "pattern": [ [ @@ -1834,15 +1267,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeS₂", + "text": "$(thing)Porcentagem$(): 23%$(br)$(thing)Fonte de$(): Cobalto, Arsênico$(br)$(thing)Fórmula$(): CoAsS$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Arsenicose (Inalação)$(/t)$()", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Desh", + "name": "Cobalto", "multiblock": { "mapping": { - "0": "#forge:ores/desh" + "0": "#forge:ores/cobalt" }, "pattern": [ [ @@ -1854,13 +1287,580 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Ferro, Titânio, Nitrogênio$(br)$(thing)Fórmula$(): (Mg₂Fe(SiO₂)₂)₂(TiO₂)N₄", + "text": "$(thing)Porcentagem$(): 23%$(br)$(thing)Derrete em$(): Cobalto$(br)$(thing)Fórmula$(): Co", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Tantalita", + "multiblock": { + "mapping": { + "0": "#forge:ores/tantalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 14%$(br)$(thing)Fonte de$(): Manganês, Tântalo$(br)$(thing)Fórmula$(): MnTa₂O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 210$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 20 — 75$(br)$(thing)Tamanho$(): 30$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Anortosito, Dacito, Diorito, Norito, Riolito", + "title": "Prata, Galena e Chumbo", + "type": "patchouli:text", + "anchor": "moon_silver" + }, + { + "Type": "patchouli:multiblock", + "name": "Prata Nativa", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 42%$(br)$(thing)Derrete em$(): Prata$(br)$(thing)Fórmula$(): Ag", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Galena", + "multiblock": { + "mapping": { + "0": "#forge:ores/galena" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 28%$(br)$(thing)Derrete em$(): Chumbo$(br)$(thing)Fórmula$(): PbS$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Pouco Venenoso (Inalação)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Chumbo", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 23%$(br)$(thing)Derrete em$(): Chumbo$(br)$(thing)Fórmula$(): Pb$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Pouco Venenoso (Inalação)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Olivina", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 4%$(br)$(thing)Fonte de$(): Magnésio, Ferro$(br)$(thing)Fórmula$(): Mg₂Fe(SiO₂)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 230$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 10 — 100$(br)$(thing)Tamanho$(): 60$(br)$(thing)Profundidade Máxima do Indicador$(): 80$(br2)$(thing)Tipos de Pedra$(): Andesito, Anortosito, Basalto, Dacito, Diorito, Fonolito, Gabro, Norito, Riolito", + "title": "Quartzo Certus", + "type": "patchouli:text", + "anchor": "moon_quartz" + }, + { + "Type": "patchouli:multiblock", + "name": "Quartzo Certus", + "multiblock": { + "mapping": { + "0": "#forge:ores/certus_quartz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 45%$(br)$(thing)Usado para$(): Applied Energistics 2$(br)$(thing)Fórmula$(): SiO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Quartzo do Nether", + "multiblock": { + "mapping": { + "0": "#forge:ores/nether_quartz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 30%$(br)$(thing)Usado para$(): Applied Energistics 2$(br)$(thing)Fórmula$(): SiO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Quartzito", + "multiblock": { + "mapping": { + "0": "#forge:ores/quartzite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Usado para$(): Componentes LV$(br)$(thing)Fórmula$(): SiO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Barita", + "multiblock": { + "mapping": { + "0": "#forge:ores/barite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Fonte de$(): Bário$(br)$(thing)Fórmula$(): BaSO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 250$(br)$(thing)Densidade$(): 0.2$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 20 — 100$(br)$(thing)Tamanho$(): 45$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Andesito, Dacito, Fonolito", + "title": "Redstone, Cinábrio e Rubi", + "type": "patchouli:text", + "anchor": "moon_redstone" + }, + { + "Type": "patchouli:multiblock", + "name": "Redstone", + "multiblock": { + "mapping": { + "0": "#forge:ores/redstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 42%$(br)$(thing)Derrete em$(): Redstone$(br)$(thing)Fórmula$(): Si(FeS₂)₅(CrAl₂O₃)Hg₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Rubi", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 33%$(br)$(thing)Fonte de$(): Cromo, Alumínio$(br)$(thing)Fórmula$(): CrAl₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cinábrio", + "multiblock": { + "mapping": { + "0": "#forge:ores/cinnabar" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 19%$(br)$(thing)Fonte de$(): Mercúrio$(br)$(thing)Fórmula$(): HgS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Olivina", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 4%$(br)$(thing)Fonte de$(): Magnésio, Ferro$(br)$(thing)Fórmula$(): Mg₂Fe(SiO₂)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 280$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): 0 — 100$(br)$(thing)Tamanho$(): 28$(br)$(thing)Altura$(): 8$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Basalto, Norito", + "title": "Safira e Almandina", + "type": "patchouli:text", + "anchor": "moon_sapphire" + }, + { + "Type": "patchouli:multiblock", + "name": "Almandina", + "multiblock": { + "mapping": { + "0": "#forge:ores/almandine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 38%$(br)$(thing)Fonte de$(): Alumínio, Ferro$(br)$(thing)Fórmula$(): Al₂Fe₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Piropo", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrope" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 27%$(br)$(thing)Fonte de$(): Alumínio, Magnésio$(br)$(thing)Fórmula$(): Al₂Mg₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Safira", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 16%$(br)$(thing)Fonte de$(): Alimínio$(br)$(thing)Fórmula$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Safira Verde", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 16%$(br)$(thing)Fonte de$(): Aluminium$(br)$(thing)Fórmula$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Olivina", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 2%$(br)$(thing)Fonte de$(): Magnésio, Ferro$(br)$(thing)Fórmula$(): Mg₂Fe(SiO₂)₂", "type": "patchouli:multiblock" }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 210$(br)$(thing)Densidade$(): 0.5$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): 0 — 120$(br)$(thing)Tamanho$(): 64$(br)$(thing)Altura$(): 25$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesite, Anorthosite, Basalt, Dacite, Diorite, Gabbro, Norite, Phonolite, Rhyolite", - "title": "Topaz & Chalcocite", + "text": "$(thing)Raridade$(): 210$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 90$(br)$(thing)Tamanho$(): 35$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Andesito, Dacito, Norito, Riolito", + "title": "Salitre e Eletrotina", + "type": "patchouli:text", + "anchor": "moon_saltpeter" + }, + { + "Type": "patchouli:multiblock", + "name": "Eletrotina", + "multiblock": { + "mapping": { + "0": "#forge:ores/electrotine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 37%$(br)$(thing)Fonte de$(): Ouro, Prata, Redstone$(br)$(thing)Fórmula$(): (Si(FeS₂)₅(CrAl₂O₃)Hg₃)(AgAu)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Salitre", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 29%$(br)$(thing)Fonte de$(): Potássio, Nitrogênio$(br)$(thing)Fórmula$(): KNO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pedra-sabão", + "multiblock": { + "mapping": { + "0": "#forge:ores/soapstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Fonte de$(): Magnésio$(br)$(thing)Fórmula$(): Mg₃Si₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Talco", + "multiblock": { + "mapping": { + "0": "#forge:ores/talc" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 12%$(br)$(thing)Fonte de$(): Magnésio$(br)$(thing)Fórmula$(): Mg₃Si₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 200$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 20$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Fonolito, Gabro, Riolito", + "title": "Sheelita e Tungstato", + "type": "patchouli:text", + "anchor": "moon_scheelite" + }, + { + "Type": "patchouli:multiblock", + "name": "Tungstato", + "multiblock": { + "mapping": { + "0": "#forge:ores/tungstate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 50%$(br)$(thing)Fonte de$(): Tungstênio, Lítio$(br)$(thing)Fórmula$(): Li₂(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sheelita", + "multiblock": { + "mapping": { + "0": "#forge:ores/scheelite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Fonte de$(): Tungstênio$(br)$(thing)Fórmula$(): Ca(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Lítio", + "multiblock": { + "mapping": { + "0": "#forge:ores/lithium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 10%$(br)$(thing)Fonte de$(): Lítio$(br)$(thing)Fórmula$(): Li", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 210$(br)$(thing)Densidade$(): 0.5$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): 0 — 120$(br)$(thing)Tamanho$(): 64$(br)$(thing)Altura$(): 25$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesito, Anortosito, Basalto, Dacito, Diorito, Fonolito, Gabro, Norito, Riolito", + "title": "Topázio e Calcosita", "type": "patchouli:text", "anchor": "moon_topaz" }, @@ -1951,8 +1951,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 245$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 50$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Basalt, Dacite, Gabbro, Norite", - "title": "Wulfenite & Molybdenite", + "text": "$(thing)Raridade$(): 245$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 50$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Basalto, Dacito, Gabro, Norito", + "title": "Wulfenita e Molibdenita", "type": "patchouli:text", "anchor": "moon_molybdenum" }, diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/nether_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/nether_vein_index.json index 8dac34723..40320e307 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/nether_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/nether_vein_index.json @@ -14,23 +14,23 @@ }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/nether_vein_index#nether_garnet)Amethyst, Opal, & Garnet$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_anthracite)Anthracite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_apatite)Apatite & Pyrochlore$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_monazite)Bastnasite & Monazite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_olivine)Bentonite & Olivine$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_cassiterite)Cassiterite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_magnetite)Chromite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sheldonite)Cooperite & Bornite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_copper)Copper & Chalcopyrite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_beryllium)Emerald & Beryllium$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_garnet_tin)Garnet & Cassiterite Sands$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_garnierite)Garnierite & Cobaltite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_goethite)Goethite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_gold)Gold & Hematite$()$()", + "text": "$(li)$(l:tfg_ores/nether_vein_index#nether_garnet)Ametista, Opala e Granada$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_anthracite)Antracito$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_apatite)Apatita e Pirocloro$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_basaltic_sands)Areias Minerais$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_monazite)Bastnasita e Monazita$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_olivine)Bentonita e Olivina$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_cassiterite)Cassiterita$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_mica)Cianita, Mica e Bauxita$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_copper)Cobre e Calcopirita$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sheldonite)Cooperita e Bornita$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_magnetite)Cromita$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sulfur)Enxofre e Pirita$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sphalerite)Esfalerita e Pirita$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_beryllium)Esmeralda e Berílio$()$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/nether_vein_index#nether_graphite)Graphite & Diamond$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_hematite)Hematite & Limonite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_mica)Kyanite, Mica, & Bauxite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_lapis)Lapis, Lazurite, & Sodalite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_manganese)Manganese & Tantalum$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_basaltic_sands)Mineral Sands$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_naquadah)Naquadah & Plutonium$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_quartz)Nether Quartz$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_redstone)Redstone, Cinnabar, & Ruby$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_saltpeter)Saltpeter & Electrotine$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sapphire)Sapphire & Almandine$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_scheelite)Scheelite & Tungstate$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_silver)Silver, Galena, & Lead$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_lubricant)Soapstone, Talc, & Trona$()$()", + "text": "$(li)$(l:tfg_ores/nether_vein_index#nether_garnierite)Garnierita e Cobaltita$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_goethite)Goethita$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_graphite)Grafite e Diamante$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_garnet_tin)Granada e Areia Cassiterita$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_hematite)Hematita e Limonita$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_lapis)Lápis-lazúri, Lazurita e Sodalita$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_manganese)Manganês e Tântalo$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_naquadah)Naquadah e Plutônio$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_quartz)Nether Quartzo$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_gold)Ouro e Hematita$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_lubricant)Pedra-sabão, Talco e Trona$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_silver)Prata, Galena e Chumbo$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_redstone)Redstone, Cinábrio e Rubi$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sapphire)Safira e Almandina$()$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/nether_vein_index#nether_sphalerite)Sphalerite & Pyrite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sulfur)Sulfur & Pyrite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sylvite)Sylvite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_tetrahedrite)Tetrahedrite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_topaz)Topaz & Chalcocite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_pitchblende)Uraninite & Pitchblende$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_molybdenum)Wulfenite & Molybdenite$()$()", + "text": "$(li)$(l:tfg_ores/nether_vein_index#nether_saltpeter)Salitre e Eletrotina$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_scheelite)Sheelita e Tungstato$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sylvite)Silvita$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_tetrahedrite)Tetraedrita$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_topaz)Topázio e Calcosita$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_pitchblende)Uraninita e Pechblenda$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_molybdenum)Wulfenita e Molibdenita$()$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 230$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 45$(br)$(thing)Altura$(): 8$(br2)$(thing)Tipos de Pedra$(): Basalt, Migmatite, Pyroxenite, Travertine", - "title": "Amethyst, Opal, & Garnet", + "text": "$(thing)Raridade$(): 230$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 45$(br)$(thing)Altura$(): 8$(br2)$(thing)Tipos de Pedra$(): Basalto, Migmatito, Piroxenito, Travertino", + "title": "Ametista, Opala e Granada", "type": "patchouli:text", "anchor": "nether_garnet" }, @@ -121,8 +121,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 35$(br)$(thing)Densidade$(): 0.8$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): 48 — 127$(br)$(thing)Tamanho$(): 13$(br)$(thing)Altura$(): 4$(br2)$(thing)Tipos de Pedra$(): Migmatite", - "title": "Anthracite", + "text": "$(thing)Raridade$(): 35$(br)$(thing)Densidade$(): 0.8$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): 48 — 127$(br)$(thing)Tamanho$(): 13$(br)$(thing)Altura$(): 4$(br2)$(thing)Tipos de Pedra$(): Migmatito", + "title": "Antracito", "type": "patchouli:text", "anchor": "nether_anthracite" }, @@ -148,8 +148,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 220$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 48 — 128$(br)$(thing)Tamanho$(): 39$(br2)$(thing)Tipos de Pedra$(): Gneiss, Schist", - "title": "Apatite & Pyrochlore", + "text": "$(thing)Raridade$(): 220$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 48 — 128$(br)$(thing)Tamanho$(): 39$(br2)$(thing)Tipos de Pedra$(): Gnaisse, Xisto", + "title": "Apatita e Pirocloro", "type": "patchouli:text", "anchor": "nether_apatite" }, @@ -215,8 +215,100 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 245$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 24 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", - "title": "Bastnasite & Monazite", + "text": "$(thing)Raridade$(): 160$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): 48 — 128$(br)$(thing)Tamanho$(): 48$(br)$(thing)Altura$(): 9$(br2)$(thing)Tipos de Pedra$(): Basalto, Granito", + "title": "Areias Minerais", + "type": "patchouli:text", + "anchor": "nether_basaltic_sands" + }, + { + "Type": "patchouli:multiblock", + "name": "Areia Mineral Basáltica", + "multiblock": { + "mapping": { + "0": "#forge:ores/basaltic_mineral_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): (Fe₃O₄)((Mg₂Fe(SiO₂)₂)(CaCo₃)₃(SiO₂)₈C₄)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Areia Mineral Granítica", + "multiblock": { + "mapping": { + "0": "#forge:ores/granitic_mineral_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): (Fe₃O₄)((SiO₂)₄(KMg₃Al₃F₂Si₃O₁₀))", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Terra de Fuller", + "multiblock": { + "mapping": { + "0": "#forge:ores/fullers_earth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Magnésio$(br)$(thing)Fórmula$(): MgSi₄H(H₂O)₄O₁₁", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Gipsita", + "multiblock": { + "mapping": { + "0": "#forge:ores/gypsum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Usado para$(): Tijolos de Alabastro (tingíveis)$(br)$(thing)Fórmula$(): CaS(H₂O)₂O₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 245$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 24 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Diorito, Gabro, Gnaisse, Granito, Piroxenito, Xisto", + "title": "Bastnasita e Monazita", "type": "patchouli:text", "anchor": "nether_monazite" }, @@ -282,8 +374,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 250$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 24 — 128$(br)$(thing)Tamanho$(): 31$(br2)$(thing)Tipos de Pedra$(): Basalt, Migmatite, Pyroxenite, Travertine", - "title": "Bentonite & Olivine", + "text": "$(thing)Raridade$(): 250$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 24 — 128$(br)$(thing)Tamanho$(): 31$(br2)$(thing)Tipos de Pedra$(): Basalto, Migmatito, Piroxenito, Travertino", + "title": "Bentonita e Olivina", "type": "patchouli:text", "anchor": "nether_olivine" }, @@ -374,8 +466,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.5$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 32 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", - "title": "Cassiterite", + "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.5$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 32 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Diorito, Gabro, Gnaisse, Granito, Piroxenito, Xisto", + "title": "Cassiterita", "type": "patchouli:text", "anchor": "nether_cassiterite" }, @@ -426,8 +518,259 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 205$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 39$(br2)$(thing)Tipos de Pedra$(): Basalt, Migmatite, Pyroxenite, Travertine", - "title": "Chromite", + "text": "$(thing)Raridade$(): 220$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 32 — 128$(br)$(thing)Tamanho$(): 41$(br2)$(thing)Tipos de Pedra$(): Diorito, Gabro, Gnaisse, Granito, Piroxenito, Xisto", + "title": "Cianita, Mica e Bauxita", + "type": "patchouli:text", + "anchor": "nether_mica" + }, + { + "Type": "patchouli:multiblock", + "name": "Cianita", + "multiblock": { + "mapping": { + "0": "#forge:ores/kyanite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 46%$(br)$(thing)Fonte de$(): Alumínio$(br)$(thing)Fórmula$(): Al₂SiO₅", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Mica", + "multiblock": { + "mapping": { + "0": "#forge:ores/mica" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 33%$(br)$(thing)Fonte de$(): Potássio, Alumínio, Flúor$(br)$(thing)Fórmula$(): KAl₃Si₃F₂O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Polucita", + "multiblock": { + "mapping": { + "0": "#forge:ores/pollucite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Fonte de$(): Césio, Alumínio$(br)$(thing)Fórmula$(): Cs₂Al₂Si₄(H₂O)₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.5$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 32 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Basalto, Migmatito, Piroxenito, Travertino", + "title": "Cobre e Calcopirita", + "type": "patchouli:text", + "anchor": "nether_copper" + }, + { + "Type": "patchouli:multiblock", + "name": "Cobre Nativo", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 65%$(br)$(thing)Derrete em$(): Cobre$(br)$(thing)Fórmula$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Calcopirita", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcopyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Derrete em$(): Cobre$(br)$(thing)Fórmula$(): CuFeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pirita", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 10%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematita", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 250$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 35$(br2)$(thing)Tipos de Pedra$(): Basalto, Migmatito, Piroxenito, Travertino", + "title": "Cooperita e Bornita", + "type": "patchouli:text", + "anchor": "nether_sheldonite" + }, + { + "Type": "patchouli:multiblock", + "name": "Bornita", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 41%$(br)$(thing)Derrete em$(): Cobre$(br)$(thing)Fórmula$(): Cu₅FeS₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cooperita", + "multiblock": { + "mapping": { + "0": "#forge:ores/cooperite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 29%$(br)$(thing)Fonte de$(): Platina, Níquel, Paládio$(br)$(thing)Fórmula$(): Pt₃NiSPd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Níquel", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 23%$(br)$(thing)Derrete em$(): Níquel$(br)$(thing)Fórmula$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Platina", + "multiblock": { + "mapping": { + "0": "#forge:ores/platinum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Derrete em$(): Platina$(br)$(thing)Fórmula$(): Pt", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 205$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 39$(br2)$(thing)Tipos de Pedra$(): Basalto, Migmatito, Piroxenito, Travertino", + "title": "Cromita", "type": "patchouli:text", "anchor": "nether_magnetite" }, @@ -533,17 +876,17 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 250$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 35$(br2)$(thing)Tipos de Pedra$(): Basalt, Migmatite, Pyroxenite, Travertine", - "title": "Cooperite & Bornite", + "text": "$(thing)Raridade$(): 165$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 50$(br2)$(thing)Tipos de Pedra$(): Basalto, Diorito, Piroxenito, Xisto", + "title": "Enxofre e Pirita", "type": "patchouli:text", - "anchor": "nether_sheldonite" + "anchor": "nether_sulfur" }, { "Type": "patchouli:multiblock", - "name": "Bornita", + "name": "Enxofre", "multiblock": { "mapping": { - "0": "#forge:ores/bornite" + "0": "#forge:ores/sulfur" }, "pattern": [ [ @@ -555,119 +898,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 41%$(br)$(thing)Derrete em$(): Cobre$(br)$(thing)Fórmula$(): Cu₅FeS₄", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Cooperita", - "multiblock": { - "mapping": { - "0": "#forge:ores/cooperite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 29%$(br)$(thing)Fonte de$(): Platina, Níquel, Paládio$(br)$(thing)Fórmula$(): Pt₃NiSPd", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Níquel", - "multiblock": { - "mapping": { - "0": "#forge:ores/nickel" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 23%$(br)$(thing)Derrete em$(): Níquel$(br)$(thing)Fórmula$(): Ni", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Platina", - "multiblock": { - "mapping": { - "0": "#forge:ores/platinum" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Derrete em$(): Platina$(br)$(thing)Fórmula$(): Pt", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.5$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 32 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Basalt, Migmatite, Pyroxenite, Travertine", - "title": "Copper & Chalcopyrite", - "type": "patchouli:text", - "anchor": "nether_copper" - }, - { - "Type": "patchouli:multiblock", - "name": "Cobre Nativo", - "multiblock": { - "mapping": { - "0": "#forge:ores/copper" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 65%$(br)$(thing)Derrete em$(): Cobre$(br)$(thing)Fórmula$(): Cu", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Calcopirita", - "multiblock": { - "mapping": { - "0": "#forge:ores/chalcopyrite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Derrete em$(): Cobre$(br)$(thing)Fórmula$(): CuFeS₂", + "text": "$(thing)Porcentagem$(): 50%$(br)$(thing)Fonte de$(): Enxofre$(br)$(thing)Fórmula$(): S", "type": "patchouli:multiblock" }, { @@ -687,15 +918,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 10%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeS₂", + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeS₂", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Hematita", + "name": "Esfalerita", "multiblock": { "mapping": { - "0": "#forge:ores/hematite" + "0": "#forge:ores/sphalerite" }, "pattern": [ [ @@ -707,18 +938,80 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): Fe₂O₃", + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Derrete em$(): Zinco$(br)$(thing)Fórmula$(): ZnS", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.5$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 32 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Basalto, Migmatito, Piroxenito, Travertino", + "title": "Esfalerita e Pirita", + "type": "patchouli:text", + "anchor": "nether_sphalerite" + }, + { + "Type": "patchouli:multiblock", + "name": "Esfalerita", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Derrete em$(): Zinco$(br)$(thing)Fórmula$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Enxofre", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): Enxofre$(br)$(thing)Fórmula$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pirita", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeS₂", + "type": "patchouli:multiblock" }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 250$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio Tubular$(br)$(thing)Y$(): 32 — 128$(br)$(thing)Altura$(): 60$(br)$(thing)Raio$(): 12$(br2)$(thing)Tipos de Pedra$(): Basalt, Migmatite, Pyroxenite, Travertine", - "title": "Emerald & Beryllium", + "text": "$(thing)Raridade$(): 250$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio Tubular$(br)$(thing)Y$(): 32 — 128$(br)$(thing)Altura$(): 60$(br)$(thing)Raio$(): 12$(br2)$(thing)Tipos de Pedra$(): Basalto, Migmatito, Piroxenito, Travertino", + "title": "Esmeralda e Berílio", "type": "patchouli:text", "anchor": "nether_beryllium" }, @@ -809,100 +1102,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 270$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 24 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Gneiss, Granite, Migmatite, Pyroxenite, Schist, Travertine", - "title": "Garnet & Cassiterite Sands", - "type": "patchouli:text", - "anchor": "nether_garnet_tin" - }, - { - "Type": "patchouli:multiblock", - "name": "Areia Cassiterita", - "multiblock": { - "mapping": { - "0": "#forge:ores/cassiterite_sand" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)Fórmula$(): SnO₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Areia Granada", - "multiblock": { - "mapping": { - "0": "#forge:ores/garnet_sand" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Almandina, Andradita, Glossulária, Piropo, Espessartita, Uvarovita", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Amianto", - "multiblock": { - "mapping": { - "0": "#forge:ores/asbestos" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Magnésio, Câncer de pulmão$(br)$(thing)Fórmula$(): Mg₃Si₂H₄O₉$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Asbestose (Inalação)$(/t)$()", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Diatomita", - "multiblock": { - "mapping": { - "0": "#forge:ores/diatomite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Ferro, Alumínio$(br)$(thing)Fórmula$(): (SiO₂)₈(Fe₂O₃)(Al₂O₃)", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 160$(br)$(thing)Densidade$(): 0.5$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 16 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Pyroxenite", - "title": "Garnierite & Cobaltite", + "text": "$(thing)Raridade$(): 160$(br)$(thing)Densidade$(): 0.5$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 16 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Diorito, Gabro, Piroxenito", + "title": "Garnierita e Cobaltita", "type": "patchouli:text", "anchor": "nether_garnierite" }, @@ -1008,8 +1209,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 240$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 37$(br2)$(thing)Tipos de Pedra$(): Basalt, Migmatite, Pyroxenite, Travertine", - "title": "Goethite", + "text": "$(thing)Raridade$(): 240$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 37$(br2)$(thing)Tipos de Pedra$(): Basalto, Migmatito, Piroxenito, Travertino", + "title": "Goethita", "type": "patchouli:text", "anchor": "nether_goethite" }, @@ -1100,100 +1301,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 260$(br)$(thing)Densidade$(): 0.55$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 37$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", - "title": "Gold & Hematite", - "type": "patchouli:text", - "anchor": "nether_gold" - }, - { - "Type": "patchouli:multiblock", - "name": "Ouro Nativo", - "multiblock": { - "mapping": { - "0": "#forge:ores/gold" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 75%$(br)$(thing)Derrete em$(): Ouro$(br)$(thing)Fórmula$(): Au", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Hematita", - "multiblock": { - "mapping": { - "0": "#forge:ores/hematite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): Fe₂O₃", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Goethita", - "multiblock": { - "mapping": { - "0": "#forge:ores/goethite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeHO₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Limonita Amarela", - "multiblock": { - "mapping": { - "0": "#forge:ores/yellow_limonite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeHO₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 120$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Tubular$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Altura$(): 60$(br)$(thing)Raio$(): 12$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", - "title": "Graphite & Diamond", + "text": "$(thing)Raridade$(): 120$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Tubular$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Altura$(): 60$(br)$(thing)Raio$(): 12$(br2)$(thing)Tipos de Pedra$(): Diorito, Gabro, Gnaisse, Granito, Piroxenito, Xisto", + "title": "Grafite e Diamante", "type": "patchouli:text", "anchor": "nether_graphite" }, @@ -1259,8 +1368,100 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 220$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 35$(br2)$(thing)Tipos de Pedra$(): Basalt, Migmatite, Pyroxenite, Travertine", - "title": "Hematite & Limonite", + "text": "$(thing)Raridade$(): 270$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 24 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Diorito, Gabro, Gnaisse, Granito, Migmatito, Piroxenito, Travertino, Xisto", + "title": "Granada e Areia Cassiterita", + "type": "patchouli:text", + "anchor": "nether_garnet_tin" + }, + { + "Type": "patchouli:multiblock", + "name": "Areia Cassiterita", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)Fórmula$(): SnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Areia Granada", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnet_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Almandina, Andradita, Glossulária, Piropo, Espessartita, Uvarovita", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Amianto", + "multiblock": { + "mapping": { + "0": "#forge:ores/asbestos" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Magnésio, Câncer de pulmão$(br)$(thing)Fórmula$(): Mg₃Si₂H₄O₉$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Asbestose (Inalação)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Diatomita", + "multiblock": { + "mapping": { + "0": "#forge:ores/diatomite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Ferro, Alumínio$(br)$(thing)Fórmula$(): (SiO₂)₈(Fe₂O₃)(Al₂O₃)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 220$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 35$(br2)$(thing)Tipos de Pedra$(): Basalto, Migmatito, Piroxenito, Travertino", + "title": "Hematita e Limonita", "type": "patchouli:text", "anchor": "nether_hematite" }, @@ -1366,75 +1567,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 220$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 32 — 128$(br)$(thing)Tamanho$(): 41$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", - "title": "Kyanite, Mica, & Bauxite", - "type": "patchouli:text", - "anchor": "nether_mica" - }, - { - "Type": "patchouli:multiblock", - "name": "Cianita", - "multiblock": { - "mapping": { - "0": "#forge:ores/kyanite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 46%$(br)$(thing)Fonte de$(): Alumínio$(br)$(thing)Fórmula$(): Al₂SiO₅", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Mica", - "multiblock": { - "mapping": { - "0": "#forge:ores/mica" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 33%$(br)$(thing)Fonte de$(): Potássio, Alumínio, Flúor$(br)$(thing)Fórmula$(): KAl₃Si₃F₂O₁₀", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Polucita", - "multiblock": { - "mapping": { - "0": "#forge:ores/pollucite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Fonte de$(): Césio, Alumínio$(br)$(thing)Fórmula$(): Cs₂Al₂Si₄(H₂O)₂O₁₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 220$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 32 — 128$(br)$(thing)Tamanho$(): 40$(br2)$(thing)Tipos de Pedra$(): Migmatite, Pyroxenite, Travertine", - "title": "Lapis, Lazurite, & Sodalite", + "text": "$(thing)Raridade$(): 220$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 32 — 128$(br)$(thing)Tamanho$(): 40$(br2)$(thing)Tipos de Pedra$(): Migmatito, Piroxenito, Travertino", + "title": "Lápis-lazúri, Lazurita e Sodalita", "type": "patchouli:text", "anchor": "nether_lapis" }, @@ -1525,8 +1659,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 225$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 32 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Basalt, Migmatite, Pyroxenite, Travertine", - "title": "Manganese & Tantalum", + "text": "$(thing)Raridade$(): 225$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 32 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Basalto, Migmatito, Piroxenito, Travertino", + "title": "Manganês e Tântalo", "type": "patchouli:text", "anchor": "nether_manganese" }, @@ -1617,100 +1751,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 160$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): 48 — 128$(br)$(thing)Tamanho$(): 48$(br)$(thing)Altura$(): 9$(br2)$(thing)Tipos de Pedra$(): Basalt, Granite", - "title": "Mineral Sands", - "type": "patchouli:text", - "anchor": "nether_basaltic_sands" - }, - { - "Type": "patchouli:multiblock", - "name": "Areia Mineral Basáltica", - "multiblock": { - "mapping": { - "0": "#forge:ores/basaltic_mineral_sand" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): (Fe₃O₄)((Mg₂Fe(SiO₂)₂)(CaCo₃)₃(SiO₂)₈C₄)", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Areia Mineral Granítica", - "multiblock": { - "mapping": { - "0": "#forge:ores/granitic_mineral_sand" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): (Fe₃O₄)((SiO₂)₄(KMg₃Al₃F₂Si₃O₁₀))", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Terra de Fuller", - "multiblock": { - "mapping": { - "0": "#forge:ores/fullers_earth" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Magnésio$(br)$(thing)Fórmula$(): MgSi₄H(H₂O)₄O₁₁", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Gipsita", - "multiblock": { - "mapping": { - "0": "#forge:ores/gypsum" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Usado para$(): Tijolos de Alabastro (tingíveis)$(br)$(thing)Fórmula$(): CaS(H₂O)₂O₄", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 250$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 38$(br)$(thing)Tamanho$(): 32$(br2)$(thing)Tipos de Pedra$(): Basalt, Pyroxenite", - "title": "Naquadah & Plutonium", + "text": "$(thing)Raridade$(): 250$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 38$(br)$(thing)Tamanho$(): 32$(br2)$(thing)Tipos de Pedra$(): Basalto, Piroxenito", + "title": "Naquadah e Plutônio", "type": "patchouli:text", "anchor": "nether_naquadah" }, @@ -1761,8 +1803,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 150$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Basalt, Diorite, Gabbro, Granite, Migmatite, Pyroxenite, Travertine", - "title": "Nether Quartz", + "text": "$(thing)Raridade$(): 150$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Basalto, Diorito, Gabro, Granito, Migmatito, Piroxenito, Travertino", + "title": "Nether Quartzo", "type": "patchouli:text", "anchor": "nether_quartz" }, @@ -1828,17 +1870,17 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 160$(br)$(thing)Densidade$(): 0.5$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Granite, Pyroxenite", - "title": "Redstone, Cinnabar, & Ruby", + "text": "$(thing)Raridade$(): 260$(br)$(thing)Densidade$(): 0.55$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 37$(br2)$(thing)Tipos de Pedra$(): Diorito, Gabro, Gnaisse, Granito, Piroxenito, Xisto", + "title": "Ouro e Hematita", "type": "patchouli:text", - "anchor": "nether_redstone" + "anchor": "nether_gold" }, { "Type": "patchouli:multiblock", - "name": "Redstone", + "name": "Ouro Nativo", "multiblock": { "mapping": { - "0": "#forge:ores/redstone" + "0": "#forge:ores/gold" }, "pattern": [ [ @@ -1850,15 +1892,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 45%$(br)$(thing)Derrete em$(): Redstone$(br)$(thing)Fórmula$(): Si(FeS₂)₅(CrAl₂O₃)Hg₃", + "text": "$(thing)Porcentagem$(): 75%$(br)$(thing)Derrete em$(): Ouro$(br)$(thing)Fórmula$(): Au", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Rubi", + "name": "Hematita", "multiblock": { "mapping": { - "0": "#forge:ores/ruby" + "0": "#forge:ores/hematite" }, "pattern": [ [ @@ -1870,15 +1912,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): Cromo, Alumínio$(br)$(thing)Fórmula$(): CrAl₂O₃", + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): Fe₂O₃", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Cinábrio", + "name": "Goethita", "multiblock": { "mapping": { - "0": "#forge:ores/cinnabar" + "0": "#forge:ores/goethite" }, "pattern": [ [ @@ -1890,42 +1932,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Fonte de$(): Mercúrio$(br)$(thing)Fórmula$(): HgS", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 210$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 32 — 128$(br)$(thing)Tamanho$(): 50$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", - "title": "Saltpeter & Electrotine", - "type": "patchouli:text", - "anchor": "nether_saltpeter" - }, - { - "Type": "patchouli:multiblock", - "name": "Salitre", - "multiblock": { - "mapping": { - "0": "#forge:ores/saltpeter" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): Potássio, Nitrogênio$(br)$(thing)Fórmula$(): KNO₃", + "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeHO₂", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Diatomita", + "name": "Limonita Amarela", "multiblock": { "mapping": { - "0": "#forge:ores/diatomite" + "0": "#forge:ores/yellow_limonite" }, "pattern": [ [ @@ -1937,47 +1952,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Ferro, Alumínio$(br)$(thing)Fórmula$(): (SiO₂)₈(Fe₂O₃)(Al₂O₃)", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Eletrotina", - "multiblock": { - "mapping": { - "0": "#forge:ores/electrotine" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Ouro, Prata, Redstone$(br)$(thing)Fórmula$(): (Si(FeS₂)₅(CrAl₂O₃)Hg₃)(AgAu)", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Alunita", - "multiblock": { - "mapping": { - "0": "#forge:ores/alunite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Potássio, Alumínio$(br)$(thing)Fórmula$(): KAl₃Si₂H₆O₁₄", + "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeHO₂", "type": "patchouli:multiblock" }, { @@ -1987,234 +1962,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 180$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 33$(br)$(thing)Altura$(): 8$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", - "title": "Sapphire & Almandine", - "type": "patchouli:text", - "anchor": "nether_sapphire" - }, - { - "Type": "patchouli:multiblock", - "name": "Almandina", - "multiblock": { - "mapping": { - "0": "#forge:ores/almandine" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 38%$(br)$(thing)Fonte de$(): Alumínio, Ferro$(br)$(thing)Fórmula$(): Al₂Fe₃Si₃O₁₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Piropo", - "multiblock": { - "mapping": { - "0": "#forge:ores/pyrope" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 27%$(br)$(thing)Fonte de$(): Alumínio, Magnésio$(br)$(thing)Fórmula$(): Al₂Mg₃Si₃O₁₂", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Safira", - "multiblock": { - "mapping": { - "0": "#forge:ores/sapphire" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 16%$(br)$(thing)Fonte de$(): Alimínio$(br)$(thing)Fórmula$(): Al₂O₃", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Safira Verde", - "multiblock": { - "mapping": { - "0": "#forge:ores/green_sapphire" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 16%$(br)$(thing)Fonte de$(): Aluminium$(br)$(thing)Fórmula$(): Al₂O₃", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 180$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 25$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", - "title": "Scheelite & Tungstate", - "type": "patchouli:text", - "anchor": "nether_scheelite" - }, - { - "Type": "patchouli:multiblock", - "name": "Sheelita", - "multiblock": { - "mapping": { - "0": "#forge:ores/scheelite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 45%$(br)$(thing)Fonte de$(): Tungstênio$(br)$(thing)Fórmula$(): Ca(WO₃)O", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Tungstato", - "multiblock": { - "mapping": { - "0": "#forge:ores/tungstate" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): Tungstênio, Lítio$(br)$(thing)Fórmula$(): Li₂(WO₃)O", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Lítio", - "multiblock": { - "mapping": { - "0": "#forge:ores/lithium" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Fonte de$(): Lítio$(br)$(thing)Fórmula$(): Li", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 160$(br)$(thing)Densidade$(): 0.5$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 24 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Gneiss, Granite, Pyroxenite", - "title": "Silver, Galena, & Lead", - "type": "patchouli:text", - "anchor": "nether_silver" - }, - { - "Type": "patchouli:multiblock", - "name": "Prata Nativa", - "multiblock": { - "mapping": { - "0": "#forge:ores/silver" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Prata$(br)$(thing)Fórmula$(): Ag", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Chumbo", - "multiblock": { - "mapping": { - "0": "#forge:ores/lead" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Chumbo$(br)$(thing)Fórmula$(): Pb$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Pouco Venenoso (Inalação)$(/t)$()", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:multiblock", - "name": "Galena", - "multiblock": { - "mapping": { - "0": "#forge:ores/galena" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 30%$(br)$(thing)Derrete em$(): Chumbo$(br)$(thing)Fórmula$(): PbS$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Pouco Venenoso (Inalação)$(/t)$()", - "type": "patchouli:multiblock" - }, - { - "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 250$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 32 — 128$(br)$(thing)Tamanho$(): 41$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", - "title": "Soapstone, Talc, & Trona", + "text": "$(thing)Raridade$(): 250$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 32 — 128$(br)$(thing)Tamanho$(): 41$(br2)$(thing)Tipos de Pedra$(): Diorito, Gabro, Gnaisse, Granito, Piroxenito, Xisto", + "title": "Pedra-sabão, Talco e Trona", "type": "patchouli:text", "anchor": "nether_lubricant" }, @@ -2320,17 +2069,17 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.5$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 32 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Basalt, Migmatite, Pyroxenite, Travertine", - "title": "Sphalerite & Pyrite", + "text": "$(thing)Raridade$(): 160$(br)$(thing)Densidade$(): 0.5$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 24 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Gnaisse, Granito, Piroxenito", + "title": "Prata, Galena e Chumbo", "type": "patchouli:text", - "anchor": "nether_sphalerite" + "anchor": "nether_silver" }, { "Type": "patchouli:multiblock", - "name": "Esfalerita", + "name": "Prata Nativa", "multiblock": { "mapping": { - "0": "#forge:ores/sphalerite" + "0": "#forge:ores/silver" }, "pattern": [ [ @@ -2342,15 +2091,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Derrete em$(): Zinco$(br)$(thing)Fórmula$(): ZnS", + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Prata$(br)$(thing)Fórmula$(): Ag", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Enxofre", + "name": "Chumbo", "multiblock": { "mapping": { - "0": "#forge:ores/sulfur" + "0": "#forge:ores/lead" }, "pattern": [ [ @@ -2362,15 +2111,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): Enxofre$(br)$(thing)Fórmula$(): S", + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Chumbo$(br)$(thing)Fórmula$(): Pb$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Pouco Venenoso (Inalação)$(/t)$()", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Pirita", + "name": "Galena", "multiblock": { "mapping": { - "0": "#forge:ores/pyrite" + "0": "#forge:ores/galena" }, "pattern": [ [ @@ -2382,22 +2131,22 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeS₂", + "text": "$(thing)Porcentagem$(): 30%$(br)$(thing)Derrete em$(): Chumbo$(br)$(thing)Fórmula$(): PbS$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Pouco Venenoso (Inalação)$(/t)$()", "type": "patchouli:multiblock" }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 165$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 50$(br2)$(thing)Tipos de Pedra$(): Basalt, Diorite, Pyroxenite, Schist", - "title": "Sulfur & Pyrite", + "text": "$(thing)Raridade$(): 160$(br)$(thing)Densidade$(): 0.5$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Granito, Piroxenito", + "title": "Redstone, Cinábrio e Rubi", "type": "patchouli:text", - "anchor": "nether_sulfur" + "anchor": "nether_redstone" }, { "Type": "patchouli:multiblock", - "name": "Enxofre", + "name": "Redstone", "multiblock": { "mapping": { - "0": "#forge:ores/sulfur" + "0": "#forge:ores/redstone" }, "pattern": [ [ @@ -2409,15 +2158,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 50%$(br)$(thing)Fonte de$(): Enxofre$(br)$(thing)Fórmula$(): S", + "text": "$(thing)Porcentagem$(): 45%$(br)$(thing)Derrete em$(): Redstone$(br)$(thing)Fórmula$(): Si(FeS₂)₅(CrAl₂O₃)Hg₃", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Pirita", + "name": "Rubi", "multiblock": { "mapping": { - "0": "#forge:ores/pyrite" + "0": "#forge:ores/ruby" }, "pattern": [ [ @@ -2429,15 +2178,15 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeS₂", + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): Cromo, Alumínio$(br)$(thing)Fórmula$(): CrAl₂O₃", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Esfalerita", + "name": "Cinábrio", "multiblock": { "mapping": { - "0": "#forge:ores/sphalerite" + "0": "#forge:ores/cinnabar" }, "pattern": [ [ @@ -2449,13 +2198,264 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Derrete em$(): Zinco$(br)$(thing)Fórmula$(): ZnS", + "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Fonte de$(): Mercúrio$(br)$(thing)Fórmula$(): HgS", "type": "patchouli:multiblock" }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 75$(br)$(thing)Densidade$(): 0.6$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 64$(br)$(thing)Tamanho$(): 17$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Pyroxenite", - "title": "Sylvite", + "text": "$(thing)Raridade$(): 180$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 33$(br)$(thing)Altura$(): 8$(br2)$(thing)Tipos de Pedra$(): Diorito, Gabro, Gnaisse, Granito, Piroxenito, Xisto", + "title": "Safira e Almandina", + "type": "patchouli:text", + "anchor": "nether_sapphire" + }, + { + "Type": "patchouli:multiblock", + "name": "Almandina", + "multiblock": { + "mapping": { + "0": "#forge:ores/almandine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 38%$(br)$(thing)Fonte de$(): Alumínio, Ferro$(br)$(thing)Fórmula$(): Al₂Fe₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Piropo", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrope" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 27%$(br)$(thing)Fonte de$(): Alumínio, Magnésio$(br)$(thing)Fórmula$(): Al₂Mg₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Safira", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 16%$(br)$(thing)Fonte de$(): Alimínio$(br)$(thing)Fórmula$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Safira Verde", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 16%$(br)$(thing)Fonte de$(): Aluminium$(br)$(thing)Fórmula$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 210$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 32 — 128$(br)$(thing)Tamanho$(): 50$(br2)$(thing)Tipos de Pedra$(): Diorito, Gabro, Gnaisse, Granito, Piroxenito, Xisto", + "title": "Salitre e Eletrotina", + "type": "patchouli:text", + "anchor": "nether_saltpeter" + }, + { + "Type": "patchouli:multiblock", + "name": "Salitre", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): Potássio, Nitrogênio$(br)$(thing)Fórmula$(): KNO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Diatomita", + "multiblock": { + "mapping": { + "0": "#forge:ores/diatomite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Ferro, Alumínio$(br)$(thing)Fórmula$(): (SiO₂)₈(Fe₂O₃)(Al₂O₃)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Eletrotina", + "multiblock": { + "mapping": { + "0": "#forge:ores/electrotine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Ouro, Prata, Redstone$(br)$(thing)Fórmula$(): (Si(FeS₂)₅(CrAl₂O₃)Hg₃)(AgAu)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Alunita", + "multiblock": { + "mapping": { + "0": "#forge:ores/alunite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Potássio, Alumínio$(br)$(thing)Fórmula$(): KAl₃Si₂H₆O₁₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 180$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 25$(br2)$(thing)Tipos de Pedra$(): Diorito, Gabro, Gnaisse, Granito, Piroxenito, Xisto", + "title": "Sheelita e Tungstato", + "type": "patchouli:text", + "anchor": "nether_scheelite" + }, + { + "Type": "patchouli:multiblock", + "name": "Sheelita", + "multiblock": { + "mapping": { + "0": "#forge:ores/scheelite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 45%$(br)$(thing)Fonte de$(): Tungstênio$(br)$(thing)Fórmula$(): Ca(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Tungstato", + "multiblock": { + "mapping": { + "0": "#forge:ores/tungstate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): Tungstênio, Lítio$(br)$(thing)Fórmula$(): Li₂(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Lítio", + "multiblock": { + "mapping": { + "0": "#forge:ores/lithium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Fonte de$(): Lítio$(br)$(thing)Fórmula$(): Li", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 75$(br)$(thing)Densidade$(): 0.6$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 64$(br)$(thing)Tamanho$(): 17$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Piroxenito", + "title": "Silvita", "type": "patchouli:text", "anchor": "nether_sylvite" }, @@ -2481,8 +2481,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.5$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 32 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Gneiss, Migmatite, Pyroxenite, Schist, Travertine", - "title": "Tetrahedrite", + "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.5$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 32 — 128$(br)$(thing)Tamanho$(): 45$(br2)$(thing)Tipos de Pedra$(): Gnaisse, Migmatito, Piroxenito, Travertino, Xisto", + "title": "Tetraedrita", "type": "patchouli:text", "anchor": "nether_tetrahedrite" }, @@ -2548,8 +2548,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 180$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 33$(br)$(thing)Altura$(): 7$(br2)$(thing)Tipos de Pedra$(): Basalt, Migmatite, Pyroxenite, Travertine", - "title": "Topaz & Chalcocite", + "text": "$(thing)Raridade$(): 180$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 33$(br)$(thing)Altura$(): 7$(br2)$(thing)Tipos de Pedra$(): Basalto, Migmatito, Piroxenito, Travertino", + "title": "Topázio e Calcosita", "type": "patchouli:text", "anchor": "nether_topaz" }, @@ -2640,8 +2640,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 220$(br)$(thing)Densidade$(): 0.55$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 29$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", - "title": "Uraninite & Pitchblende", + "text": "$(thing)Raridade$(): 220$(br)$(thing)Densidade$(): 0.55$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 29$(br2)$(thing)Tipos de Pedra$(): Diorito, Gabro, Gnaisse, Granito, Piroxenito, Xisto", + "title": "Uraninita e Pechblenda", "type": "patchouli:text", "anchor": "nether_pitchblende" }, @@ -2692,8 +2692,8 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 245$(br)$(thing)Densidade$(): 0.55$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 31$(br2)$(thing)Tipos de Pedra$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", - "title": "Wulfenite & Molybdenite", + "text": "$(thing)Raridade$(): 245$(br)$(thing)Densidade$(): 0.55$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 128$(br)$(thing)Tamanho$(): 31$(br2)$(thing)Tipos de Pedra$(): Diorito, Gabro, Gnaisse, Granito, Piroxenito, Xisto", + "title": "Wulfenita e Molibdenita", "type": "patchouli:text", "anchor": "nether_molybdenum" }, diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/ore_basics.json b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/ore_basics.json new file mode 100644 index 000000000..197d71593 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/ore_basics.json @@ -0,0 +1,43 @@ +{ + "name": "Mineração no TFG", + "icon": "minecraft:diamond_pickaxe", + "category": "tfc:tfg_ores", + "priority": true, + "sortnum": 0, + "pages": [ + { + "type": "patchouli:text", + "text": "Você precisará de uma $(thing)picareta$() ou uma $(thing)marreta de mineração$() para minerar minérios.$(br2)Um $(thing)martelo$() comum também pode quebrar blocos de pedra rapidamente, mas não dropará minérios. No entanto, ele ainda pode ser útil para $(l:getting_started/primitive_anvils#raw_rock)extrair$() blocos de pedra." + }, + { + "type": "patchouli:crafting", + "recipe": "gtceu:shaped/pickaxe_copper", + "recipe2": "gtceu:shaped/mining_hammer_copper" + }, + { + "type": "patchouli:spotlight", + "title": "Picareta", + "text": "Quebrar um bloco de minério com uma picareta renderá $(thing)minérios brutos$() (pobres, normais ou ricos), além de um pouco de pó de pedra. Cada um deles não vale muitos mB e você precisará de vários para fazer um único lingote. No entanto, alguns outros minerais só podem ser usados nesse estado, como $(thing)carvão$().", + "item": { "tag": "minecraft:pickaxes" } + }, + { + "type": "patchouli:spotlight", + "title": "Marreta de Mineração", + "text": "Basicamente, são picaretas com alcance 3x3 e também rendem $(thing)minérios brutos$(). Também são boas para limpar pedras depois de martelar os minérios!$(br2)Segurar $(thing)agachar$() quebrará apenas um bloco por vez.", + "item": { "tag": "forge:tools/mining_hammers" } + }, + { + "type": "patchouli:spotlight", + "title": "Processamento básico de minério", + "anchor": "processing", + "item": "gtceu:crushed_copper_ore", + "text": "O processamento de minérios resultará em quantidades muito maiores de metal utilizável. O primeiro passo é usar uma $(l:mechanics/quern)Pedra Mó$() para triturar o minério bruto. Essa etapa pode ser automatizada no futuro com máquinas aprimoradas, como a $(thing)Moenda$(), a $(thing)Roda de Esmagamento$(), o $(thing)Macerador$() e o $(thing)Martelo de Forja$()." + }, + { + "type": "patchouli:crafting", + "title": "Purificando pó", + "recipe": "gtceu:shapeless/crushed_ore_to_dust_copper", + "text": "Para fazer seus minérios triturados derreterem em ainda mais mB, primeiro coloque-os em uma grade de criação junto com um $(thing)Martelo$(). Isso produzirá $(thing)Pó Impuro$(). Para purificar o pó, jogue-o na água ou $(item)$(k:key.use)$() um $(thing)Caldeirão$() cheio de água." + } + ] +} diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/moon_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/moon_vein_index.json index da17dab13..321621d68 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/moon_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/moon_vein_index.json @@ -111,7 +111,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Процент руды$(): 15%$(br)$(thing)Source of$(): Magnesium, Rutile, Titanium$(br)$(thing)Формула$(): TODO", + "text": "$(thing)Процент руды$(): 15%$(br)$(thing)Source of$(): Magnesium, Rutile, Titanium$(br)$(thing)Формула$(): (Mg,Fe)Ti₂O₅", "type": "patchouli:multiblock" }, { @@ -459,7 +459,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Процент руды$(): 21%$(br)$(thing)Source of$(): Magnesium, Rutile, Titanium$(br)$(thing)Формула$(): TODO", + "text": "$(thing)Процент руды$(): 21%$(br)$(thing)Source of$(): Magnesium, Rutile, Titanium$(br)$(thing)Формула$(): (Mg,Fe)Ti₂O₅", "type": "patchouli:multiblock" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/moon_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/moon_vein_index.json index 045d83f25..2418dc197 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/moon_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/moon_vein_index.json @@ -275,7 +275,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 21%$(br)$(thing)Джерело$(): Магнію, Рутилу, Титану$(br)$(thing)Формула$(): TODO", + "text": "$(thing)Відсоток$(): 21%$(br)$(thing)Джерело$(): Магнію, Рутилу, Титану$(br)$(thing)Формула$(): (Mg,Fe)Ti₂O₅", "type": "patchouli:multiblock" }, { @@ -628,7 +628,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Джерело$(): Магнію, Рутилу, Титану$(br)$(thing)Формула$(): TODO", + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Джерело$(): Магнію, Рутилу, Титану$(br)$(thing)Формула$(): (Mg,Fe)Ti₂O₅", "type": "patchouli:multiblock" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/firmaciv/rowboat.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/firmaciv/rowboat.json new file mode 100644 index 000000000..760710e74 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/firmaciv/rowboat.json @@ -0,0 +1,154 @@ +{ + "name": "划艇", + "category": "tfc:firmaciv", + "icon": "firmaciv:rowboat_icon_only", + "pages": [ + { + "type": "patchouli:text", + "text": "那么,已经进入了铁器时代后,你想升级吗?好吧,划艇就是为你量身定制的。它有三个座位,可以容纳3名玩家,或者最多容纳2只动物,包括马!和往常一样,您也可以用一些容器更换座椅(驾驶员座椅除外)。您也可以在船尾放置另外两个容器。" + }, + { + "type": "patchouli:text", + "text": "在划艇中,与其他船只不同,当你驾驶船只时,你会凡着做。这将能让你借力,以更方便的使用桨!当然,你可以用第一人称视角驾驶划艇,但你肯定会认为第三人称看着更舒服。" + }, + { + "type": "patchouli:crafting", + "recipe": "firmaciv:crafting/watercraft_frame_angled", + "text": "要建造一艘划艇,你需要先造出造船厂的脚手架。脚手架可以让你在建造时将船的材料维持在原位而不掉下来。$(br2)然后,将它们面朝内放置在一个2乘3的区域中。" + }, + { + "type": "patchouli:multiblock", + "multiblock": { + "pattern": [ + [ + " ", + " ", + " " + ], + [ + " 12", + " 04", + " 56" + ] + ], + "mapping": { + "1": "firmaciv:watercraft_frame_angled[facing=west,shape=inner_right]", + "2": "firmaciv:watercraft_frame_angled[facing=west,shape=inner_left]", + "0": "firmaciv:watercraft_frame_angled[facing=north,shape=straight]", + "4": "firmaciv:watercraft_frame_angled[facing=south,shape=straight]", + "5": "firmaciv:watercraft_frame_angled[facing=east,shape=inner_left]", + "6": "firmaciv:watercraft_frame_angled[facing=east,shape=inner_right]" + } + }, + "name": "划艇脚手架", + "text": "造船者为建造划艇而设置的脚手架。", + "enable_visualize": true + }, + + { + "type": "patchouli:text", + "text": "下一步,你需要放上合适的结实的硬木木板:$(br2)金合欢木$(br)梣木$(br)山杨木$(br)桦木$(br)黑木$(br)栗木$(br)山胡桃木$(br)枫木$(br)橡木$(br)红木$(br)悬铃木" + }, + { + "type": "patchouli:multiblock", + "multiblock": { + "pattern": [ + [ + " ", + " ", + " " + ], + [ + " 12", + " 04", + " 56" + ] + ], + "mapping": { + "1": "firmaciv:wood/watercraft_frame/angled/hickory[facing=west,shape=inner_right,frame_processed=3]", + "2": "firmaciv:wood/watercraft_frame/angled/hickory[facing=west,shape=inner_left,frame_processed=3]", + "0": "firmaciv:wood/watercraft_frame/angled/hickory[facing=north,shape=straight,frame_processed=3]", + "4": "firmaciv:wood/watercraft_frame/angled/hickory[facing=south,shape=straight,frame_processed=3]", + "5": "firmaciv:wood/watercraft_frame/angled/hickory[facing=east,shape=inner_left,frame_processed=3]", + "6": "firmaciv:wood/watercraft_frame/angled/hickory[facing=east,shape=inner_right,frame_processed=3]" + } + }, + "name": "搭建划艇的脚手架", + "text": "每个脚手架上放了四块木板。", + "enable_visualize": true + }, + { + "type": "patchouli:multiblock", + "multiblock": { + "pattern": [ + [ + " ", + " ", + " " + ], + [ + " 12", + " 04", + " 56" + ] + ], + "mapping": { + "1": "firmaciv:wood/watercraft_frame/angled/hickory[facing=west,shape=inner_right,frame_processed=7]", + "2": "firmaciv:wood/watercraft_frame/angled/hickory[facing=west,shape=inner_left,frame_processed=7]", + "0": "firmaciv:wood/watercraft_frame/angled/hickory[facing=north,shape=straight,frame_processed=7]", + "4": "firmaciv:wood/watercraft_frame/angled/hickory[facing=south,shape=straight,frame_processed=7]", + "5": "firmaciv:wood/watercraft_frame/angled/hickory[facing=east,shape=inner_left,frame_processed=7]", + "6": "firmaciv:wood/watercraft_frame/angled/hickory[facing=east,shape=inner_right,frame_processed=7]" + } + }, + "name": "搭建划艇的脚手架", + "text": "在你的副手中拿一把锤子,在每个脚手架上打进四个铜螺栓。铜螺栓是用铜棒锻造而成的。", + "enable_visualize": true + }, + { + "type": "patchouli:multiblock", + "multiblock": { + "pattern": [ + [ + " ", + " LR", + " " + ], + [ + " 12", + " 04", + " 56" + ] + ], + "mapping": { + "1": "firmaciv:wood/watercraft_frame/angled/hickory[facing=west,shape=inner_right,frame_processed=7]", + "2": "firmaciv:wood/watercraft_frame/angled/hickory[facing=west,shape=inner_left,frame_processed=7]", + "0": "firmaciv:wood/watercraft_frame/angled/hickory[facing=north,shape=straight,frame_processed=7]", + "4": "firmaciv:wood/watercraft_frame/angled/hickory[facing=south,shape=straight,frame_processed=7]", + "5": "firmaciv:wood/watercraft_frame/angled/hickory[facing=east,shape=inner_left,frame_processed=7]", + "6": "firmaciv:wood/watercraft_frame/angled/hickory[facing=east,shape=inner_right,frame_processed=7]", + "L": "alekiships:oarlock[facing=north]", + "R": "alekiships:oarlock[facing=south]" + } + }, + "name": "搭建划艇的脚手架", + "text": "最后,在划艇的正中央放入桨架。", + "enable_visualize": true + }, + { + "type": "patchouli:crafting", + "recipe2": "firmaciv:crafting/oar", + "text": "现在,用$(item)$(k:key.use)$()把桨安装到划艇上,划艇就可以下水啦!" + }, + { + "type": "patchouli:image", + "title": "划艇", + "images": [ + "firmaciv:textures/gui/book/rowboat_isometric.png" + ], + "text": "一只建造完成的划艇。" + } + ], + "read_by_default": true, + "sortnum": 3 +} diff --git a/kubejs/assets/tfg/blockstates/loose/red_granite.json b/kubejs/assets/tfg/blockstates/loose/red_granite.json new file mode 100644 index 000000000..c47cad90e --- /dev/null +++ b/kubejs/assets/tfg/blockstates/loose/red_granite.json @@ -0,0 +1,55 @@ +{ + "variants": { + "count=1": [ + { + "model": "tfg:block/loose/red_granite_1", + "y": 90 + }, + { + "model": "tfg:block/loose/red_granite_1" + }, + { + "model": "tfg:block/loose/red_granite_1", + "y": 180 + }, + { + "model": "tfg:block/loose/red_granite_1", + "y": 270 + } + ], + "count=2": [ + { + "model": "tfg:block/loose/red_granite_2", + "y": 90 + }, + { + "model": "tfg:block/loose/red_granite_2" + }, + { + "model": "tfg:block/loose/red_granite_2", + "y": 180 + }, + { + "model": "tfg:block/loose/red_granite_2", + "y": 270 + } + ], + "count=3": [ + { + "model": "tfg:block/loose/red_granite_3", + "y": 90 + }, + { + "model": "tfg:block/loose/red_granite_3" + }, + { + "model": "tfg:block/loose/red_granite_3", + "y": 180 + }, + { + "model": "tfg:block/loose/red_granite_3", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/hardened_red_granite.json b/kubejs/assets/tfg/blockstates/rock/hardened_red_granite.json new file mode 100644 index 000000000..ae062d2ae --- /dev/null +++ b/kubejs/assets/tfg/blockstates/rock/hardened_red_granite.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "tfg:block/rock/hardened_red_granite" + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/spike/red_granite_spike.json b/kubejs/assets/tfg/blockstates/spike/red_granite_spike.json new file mode 100644 index 000000000..33c19859e --- /dev/null +++ b/kubejs/assets/tfg/blockstates/spike/red_granite_spike.json @@ -0,0 +1,13 @@ +{ + "variants": { + "part=base": { + "model": "tfg:block/spike/red_granite_base" + }, + "part=middle": { + "model": "tfg:block/spike/red_granite_middle" + }, + "part=tip": { + "model": "tfg:block/spike/red_granite_tip" + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/lang/en_us.json b/kubejs/assets/tfg/lang/en_us.json index d0a23e134..044b9f1c0 100644 --- a/kubejs/assets/tfg/lang/en_us.json +++ b/kubejs/assets/tfg/lang/en_us.json @@ -131,6 +131,12 @@ "block.tfg.migmatite_support": "Migmatite Support", "block.tfg.travertine_support_horizontal": "Travertine Horizontal Support", "block.tfg.travertine_support": "Travertine Support", + "block.tfg.glacian_support": "Glacian Support", + "block.tfg.glacian_support_horizontal": "Glacian Horizontal Support", + "block.tfg.strophar_support": "Strophar Support", + "block.tfg.strophar_support_horizontal": "Strophar Horizontal Support", + "block.tfg.aeronos_support": "Aeronos Support", + "block.tfg.aeronos_support_horizontal": "Aeronos Horizontal Support", "block.tfg.rock.hardened_deepslate": "Hardened Migmatite", "block.tfg.rock.hardened_blackstone": "Hardened Pyroxenite", "block.tfg.rock.hardened_dripstone": "Hardened Travertine", @@ -167,6 +173,9 @@ "block.tfg.rock.spike.stromatolite": "Stromatolite Spike", "block.tfg.rock.raw.geyserite": "Raw Geyserite", "block.tfg.rock.spike.geyserite": "Geyserite Spike", + "block.tfg.rock.hardened_red_granite": "Hardened Red Granite", + "block.tfg.loose.red_granite": "Loose Red Granite Rock", + "block.tfg.spike.red_granite_spike": "Red Granite Spike", "block.tfg.lunar_roots": "Lunar Lightblooms", "block.tfg.lunar_sprouts": "Lunar Lightgrass", "block.tfg.lunar_chorus_plant": "Chorus Plant", @@ -192,6 +201,10 @@ "block.tfg.mv_food_refrigerator": "§bAdvanced Refrigerator", "block.tfg.hv_food_refrigerator": "§6Advanced Refrigerator II§r", "block.tfg.ev_food_refrigerator": "§5Advanced Refrigerator III§r", + "block.tfg.lv_gas_pressurizer": "Basic Gas Pressurizer", + "block.tfg.mv_gas_pressurizer": "§bAdvanced Gas Pressurizer§r", + "block.tfg.hv_gas_pressurizer": "§6Advanced Gas Pressurizer II§r", + "block.tfg.ev_gas_pressurizer": "§5Advanced Gas Pressurizer III§r", "block.tfg.interplanetary_item_launcher": "Interplanetary Railgun", "block.tfg.railgun_item_loader_in": "Interplanetary Railgun Input Bus", "block.tfg.interplanetary_item_reciever": "Interplanetary Receiver", @@ -269,6 +282,13 @@ "block.tfg.sandstone.stairs.smooth.fluorapatite.yellow": "Smooth Yellow Fluorapatite Sandstone Stairs", "block.tfg.sandstone.fluorapatite.yellow": "Cut Yellow Fluorapatite Sandstone", "block.tfg.sandstone.smooth.chiseled.fluorapatite.yellow": "Chiseled Yellow Fluorapatite Sandstone", + "tfg:nether_slurry": "Nether Slurry", + "tfg:enriched_nether_slurry": "Enriched Nether Slurry", + "tfg:ender_slurry": "Ender Slurry", + "tfg:enriched_ender_slurry": "Enriched Ender Slurry", + "tfg:semiheavy_ammoniacal_water": "Semiheavy Ammoniacal Water", + "tfg:sulfur_fumes": "Sulfur Fumes", + "tfg:super_heated_slurry": "Super Heated Slurry", "item.tfg.antipoison_pill": "Antipoison Pill", "item.tfg.haste_pill": "Haste Pill", "item.tfg.night_vision_pill": "Night Vision Pill", @@ -318,6 +338,7 @@ "item.tfg.spade_head_extruder_mold": "Extruder Mold (Spade Head)", "item.tfg.unfired_chalk": "Unfired Chalk Stick", "item.tfg.armor_stand_arms": "Armor Stand with Arms", + "item.tfg.flint_club_head": "Flint Club Head", "item.tfg.brick.deepslate": "Migmatite Brick", "item.tfg.loose.moon_stone": "Loose Anorthosite", "item.tfg.brick.moon_stone": "Anorthosite Brick", @@ -408,6 +429,7 @@ "item.tfg.food.freeze_dried.pineapple": "Freeze Dried Pineapple", "item.tfg.food.calorie_paste": "Calorie Paste", "item.tfg.food.meal_bag": "Meal Bag", + "item.tfg.food.ice_soup": "Ice Soup", "item.tfg.roasted_sunflower_seeds": "Roasted Sunflower Seeds", "item.tfg.sunflower_seeds": "Sunflower Seed", "item.tfg.sunflower_product": "Sunflower Cap", @@ -420,6 +442,10 @@ "item.tfg.large_bullet_casing": "Large Bullet Casing", "item.tfg.shell_bullet_casing": "Shell Bullet Casing", "item.tfg.nitrocellulose": "Nitrocellulose", + "item.tfg.aes_wool": "Alkaline Earth Silicate Wool", + "item.tfg.aes_compressed_wool": "Compressed Alkaline Earth Silicate Wool", + "item.tfg.aes_insulation_sheet": "Sheet of Alkaline Earth Silicate Insulation", + "item.tfg.aes_insulation_roll": "Roll of Alkaline Earth Silicate Insulation", "item.tfg.marker.earth_orbit": "Earth Orbit", "item.tfg.marker.moon_orbit": "Moon Orbit", "item.tfg.marker.mars_orbit": "Mars Orbit", @@ -438,6 +464,11 @@ "item.tfg.compressed_heliox_3_bucket": "Heliox-3 Bucket", "item.tfg.compressed_trimix_bucket": "50/30/20 Trimix Bucket", "item.tfg.compressed_trimix_3_bucket": "50/30/20 Trimix-3 Bucket", + "item.tfg.harvest_basket": "Harvest Basket", + "item.tfg.aluminium_harvest_basket": "Aluminium Harvest Basket", + "item.tfg.wood.lumber.aeronos": "Aeronos Lumber", + "item.tfg.wood.lumber.strophar": "Strophar Lumber", + "item.tfg.wood.lumber.glacian": "Glacian Lumber", "material.tfg.latex": "Latex", "material.tfg.vulcanized_latex": "Vulcanized Latex", "material.tfg.fluix": "Fluix", @@ -468,6 +499,8 @@ "material.gtceu.asurine": "Asurine", "material.tfg.kaolinite": "Kaolinite", "material.tfg.vitrified_pearl": "Vitrified Ender", + "material.tfg.aes_mix": "Alkaline Earth Silicate Mixture", + "material.tfg.molten_aes": "Molten Alkaline Earth Silicate", "material.tfg.compressed_nitrox": "Compressed Nitrox", "material.tfg.compressed_heliox": "Compressed Heliox", "material.tfg.compressed_heliox_3": "Compressed Heliox-3", @@ -665,6 +698,7 @@ "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_orange_block": "Dyeing", "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_red_block": "Dyeing", "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_brown_block": "Dyeing", + "tfc.recipe.barrel.tfg.barrel.treated_chipboard_composite": "Treating Chipboard Composite", "tfc.recipe.barrel.tfg.barrel.soak_hardwood_strip": "Soaking Hardwood Strips", "tfc.recipe.barrel.tfg.barrel.treated_wood_planks": "Treating Wood Planks", "tfc.recipe.barrel.tfg.barrel.packed_ice": "Freezing Ice", @@ -731,7 +765,39 @@ "tfg.grapplemod.upgrades.angle": "Increases the §lHorizontal Angle§r for throwing your §lDouble Hooks§r by 5°, up to 90°.\nOnly accessible with a §lDouble Hook§r installed.", "tfg.grapplemod.downgrades.angle": "Decreases the §lHorizontal Angle§r for throwing your §lDouble Hooks§r by 5°, down to 5°°.\nOnly accessible with a §lDouble Hook§r installed.", "quests.ae2": "Applied Energistics 2", - "quests.ae2.subtitle": "The strongest tool to help you with Gregtech, unlocked after your first trip to the moon", + "quests.ae2.subtitle": "The strongest tool to help you with GregTech, unlocked after your first trip to the moon", + "quests.ae2.certus_quartz.title": "Certus Quartz", + "quests.ae2.certus_quartz.subtitle": "One small step for you, one giant leap for logistics", + "quests.ae2.certus_quartz.desc": "With your first step on the Moon comes access to your first &bCertus Quartz&r vein.\nDon't worry, they're quite common and should be easy to locate, though having a decent &9Ore Scanner&r wouldn't hurt.\n\nWhether you decide to set up a miner or manually dig out a full vein, make sure to gather a &dhefty amount&r, as you'll need it to progress through &bAE2&r.", + "quests.ae2.certus_quartz.task": "Certus Quartz Ore", + "quests.ae2.polarizer.title": "Polarizer", + "quests.ae2.polarizer.subtitle": "Redstone isn't enough", + "quests.ae2.polarizer.desc": "One of your main resources for &dApplied Energistics 2&r will be &bCharged Certus Quartz&r.\n\nTo obtain it, there’s really only one method: the &6HV&r Polarizer.\n\nYou’ll quickly notice how long this recipe takes, so it’s strongly recommended to dedicate a Polarizer exclusively to this task.\n\nIt may seem expensive or daunting at first, but don't worry—it’s absolutely worth it.\n\nAlso, remember not to charge all your Certus Quartz!\nYou’ll need some uncharged ones for items like the &aAnnihilation Core&r, so always keep a small reserve on hand.", + "quests.ae2.hv_machines.title": "The Three Musketeers", + "quests.ae2.hv_machines.subtitle": "Or is it four?", + "quests.ae2.hv_machines.desc": "The &eSifter&r is used for ore processing to increase your yield of &bCertus Quartz&r, &7Quartzite&r, &fNether Quartz&r, &cRuby&r, and &dArmalcolite&r—all of which are essential for AE2. Alternatively, you can smelt the ores directly in a Furnace if you're in a rush, but you'll lose out on a lot of free resources by doing that.\n\nThe second machine, the &eMixer&r, is your only method to create &dFluix Crystals&r (more about that in the next quest). Don’t forget that you can also use the &6Greate Mixer&r as a &6HS&r-tier machine.\n\nThirdly, a Laser Engraver can combine lesser quality gems together into Exquisite, which will give you better Fluix yields.\n\nLastly, keep in mind that an &aAutoclave&r can help you generate even more gems from dusts. Once you have the resources, crafting one will make your life significantly easier.", + "quests.ae2.hv_machines.task": "Greate or GregTech?", + "quests.ae2.fluix_crystal.subtitle": "Energetic Crystal", + "quests.ae2.fluix_crystal.desc": "As you can see, there are multiple ways to create &dFluix Crystals&r using a &eMixer&r.\n\nThe higher the purity of your input gems, the better the yield—that’s exactly why we recommended crafting a &eSifter&r earlier.\n\nYou’ll need a massive amount of &dFluix Crystals&r, especially since the &5liquid version&r is used in most &dApplied Energistics 2&r recipes.\n\nSo prepare yourself—you’re going to need a lot!", + "quests.ae2.extractor.title": "Fluid Extractor", + "quests.ae2.extractor.subtitle": "The precious fluix", + "quests.ae2.extractor.desc": "Most of your &dFluix Crystals&r will be converted into &5Liquid Fluix&r.\nHowever, make sure to keep a few in their crystal form for the occasional recipe that specifically requires it.\n\nAny &eExtractor&r will do the job here—no need for anything fancy.", + "quests.ae2.extractor.task": "Any Extractor", + "quests.ae2.fluix_liquid.title": "Liquid Fluix", + "quests.ae2.fluix_liquid.subtitle": "The Moon is so cheap", + "quests.ae2.fluix_liquid.desc": "We told you you'd need a vast quantity of &dLiquid Fluix&r… but we didn’t mention there’s a way to drastically increase your yield per &dFluix Crystal&r.\n\nIntroducing: &bCryogenized Fluix&r, an ultra-cold fluid only craftable on the Moon using a &bVacuum Freezer&r. Simply combine &dLiquid Fluix&r with &bHelium-3&r!\n\nThis special fluid can be used as a substitute in nearly all recipes that require &dLiquid Fluix&r—but only when you're crafting on the Moon.\n\nMoon-based AE2 recipes come with huge benefits: reduced &6energy&r costs, less &ecomponents&r needed or sometimes both. Investing in a proper Moon base for AE2 production will pay off massively, especially in early game.\n\nIt’s not strictly mandatory — yet. But setting up a second base now will ease your future progression, as planet-based infrastructure becomes essential later on. So… why not get ahead of the curve?", + "quests.ae2.ae_processor.title": "Processors", + "quests.ae2.ae_processor.subtitle": "AE2 Components", + "quests.ae2.ae_processor.desc": "All three &eProcessors&r will be used extensively across &dApplied Energistics 2&r recipes.\n\nThis also gives you a great opportunity to see how effective the &3Moon&r recipes can be for crafting them.\n\n&6But in the end, the choice is yours&r — build your infrastructure where it suits you best.", + "quests.ae2.forming_press.title": "Forming Press", + "quests.ae2.forming_press.subtitle": "Small is good too", + "quests.ae2.forming_press.desc": "To get the printed circuits, you'll need to craft the &6HV&r Forming Press.\n\nThe good news? It has multiple input slots, meaning you can insert all your circuit &ePresses&r at once. With that setup, a single &6HV&r Forming Press is enough to handle every printed circuit type.", + "quests.ae2.ae_press.title": "Inscriber Press", + "quests.ae2.ae_press.subtitle": "Treasure hunt", + "quests.ae2.ae_press.desc": "One of the last things you’ll need before diving fully into &dApplied Energistics 2&r is collecting the 4 &ePresses&r.\n\nTo obtain them, you must locate an &eAE2 Meteorite&r on the &3Moon&r — they will look like dark spheres at the bottom of large craters. Luckily, they aren't particularly rare, and a single meteorite will contain all four &ePresses&r.\n\n&cBe careful though&r — these meteorites are often guarded, and hostile entities may spawn nearby as well.\n\nGear up, bring a scanner if you have one, and happy hunting!", + "quests.ae2.ae_guide.title": "Welcome to AE2", + "quests.ae2.ae_guide.subtitle": "We'll give you another book", + "quests.ae2.ae_guide.desc": "Here you are, ready to begin your &bAE2&r infrastructure!\n\nThis chapter will mainly guide you through what you can and cannot craft yet.\nWe’ll also highlight the most important items you should focus on.\n\nHowever, to fully understand &bApplied Energistics 2&r, we strongly recommend:\n\n&7- Use the &b-G-&r keybind or open the &bME Guide&r we provide as a reward from this quest. It’s the best in-game tutorial for &bAE2&r.\n&7- Watch some online videos about &bAE2&r on &61.20.1&r for more detailed explanations.\n\n&dPro tip&r: Many &bAE2&r recipes have &6alternative Moon recipes&r that are much cheaper.\nOnce again, investing in your &bMoon base&r will greatly reward you throughout the entire game.", "quests.tasktype.checkmark": "Click here to complete this quest/task", "quests.tasktype.item.any": "Any Item of type:", "quests.tasktype.lookat": "Look at a:", @@ -765,7 +831,7 @@ "quests.create_logistics.postbox.desc.2": "One last cool thing about &3Postboxes&r is that when extracting automatically from them (via chutes, funnels, etc), only packages with a destination that &amatches the Postbox's name&r will be taken out and any packages with a different destination will remain inside to be loaded onto trains later.", "quests.create_logistics.nbt_handling.title": "Tell me more", "quests.create_logistics.nbt_handling.subtitle": "Other information on packages and addresses", - "quests.create_logistics.nbt_handling.desc.1": "Here are some other important things that may be useful when trying to route packages around:\n\n&3-&r Packages are randomly created from a selection of four possible items, so stuff like Gregtech's &3Item Filters&r will be &cvery tedious to set up&r! We recommend using the &3Package Filter&r wherever you can, but...\n\n&3-&r If you really want to try using other methods to move packages around, the destination address is stored as NBT data in the tag &eAddress&r. For example, a package with the destination address \"Home\" will have in its NBT data: &e{Address:\"Home\"}&r.", + "quests.create_logistics.nbt_handling.desc.1": "Here are some other important things that may be useful when trying to route packages around:\n\n&3-&r Packages are randomly created from a selection of four possible items, so stuff like GregTech's &3Item Filters&r will be &cvery tedious to set up&r! We recommend using the &3Package Filter&r wherever you can, but...\n\n&3-&r If you really want to try using other methods to move packages around, the destination address is stored as NBT data in the tag &eAddress&r. For example, a package with the destination address \"Home\" will have in its NBT data: &e{Address:\"Home\"}&r.", "quests.create_logistics.nbt_handling.desc.2": "&3-&r Package address filtering actually supports a simplified form of &eRegEx&r. This means you can:\n\n&e-&r Match any length string with *\n\n&e-&r Match any single character with ?\n\n&e-&r Match a single character from a group of characters surrounded by [] (e.g. A[cr]t will match 'Act' and 'Art', but not 'Ant')\n\n&e-&r Match a single character that does not belong to a group of characters surrounded by [! ] (e.g. A[!cr]t will match 'Aft' and 'Apt', but not 'Act' or 'Art')\n\n&e-&r Match a string from a list of strings given inside {}(e.g. TerraFirma{Craft,Greg} will match both TerraFirma&eCraft&r and TerraFirma&eGreg&r)\n\n&e-&r All previous symbols can be escaped; For example, A\\* will be read as A* and only match 'A*'.", "quests.create_logistics.bottler.title": "Bottler", "quests.create_logistics.bottler.subtitle": "A packager but for fluids", @@ -805,7 +871,7 @@ "quests.create_logistics.factory_gauge.desc.3": "For the &9Recipe Mode&r, the specified address should point towards wherever you manufacture the product.\n\nAdditionally, you need to set up one additional gauge for each type of ingredient used, then connect them to the first gauge with &a'Add New Connection'&r in the GUI.\nIf the product you are trying to craft in &9Recipe Mode&r is a normal crafting recipe, you will need to &a'Use Mechanical Crafting'&r and ensure that the package is unwraped into a 3x3 &3Mechanical Crafter&r array.", "quests.create_logistics.factory_gauge.desc.4": "&cIt is important that the package is not unwrapped en route&r, as the package itself holds crafting recipe instructions - if the ingredients must come from different sources, look into using a &3Re-Packager&r to act as a buffer for the packages.\n\n&3Note:&r Factory Gauge requests are technically 'Promises', which are guarantees by the network that the items in question &owill&r be delivered at some point in the future. This is done to prevent the items from being over-requested. By default, these promises never expire; This means the promise will remain in place forever if the items are unlikely to be delivered in the future. You can change this behavior by adjusting the bottom section of the gauge GUI, which will limit how long promises stick around for.", "quests.development": "Progression Table", - "quests.development.subtitle": "An easy way to understand your progression on Gregtech", + "quests.development.subtitle": "An easy way to understand your progression on GregTech", "quests.development.explanation.title": "Let's do some explaining", "quests.development.explanation.subtitle": "It is actually quite easy", "quests.development.explanation.desc.1": "The &lCircuit Progression&r of GregTech can seem intimidating at first, but it's not that bad.\n\nFirst, you need to understand that circuits of the same tier are interchangeable. For example, to craft an &6HV&r &6Mixer&r, you can use any &6HV-tier&r circuit.", @@ -864,54 +930,54 @@ "quests.development.hull_zpm.title": "Craftable in &cZPM&r", "quests.development.hull_zpm.subtitle": "Soft and Wetware", "quests.development.hull_zpm.desc": "This is the &9Wetware&r Circuit line.\n\nIt will be the biggest automation challenge to face in this modpack. Best of luck.", - "quests.gregtech_energy": "Gregtech Energy", + "quests.gregtech_energy": "GregTech Energy", "quests.gregtech_energy.subtitle": "So how does all of that work?", "quests.gregtech_energy.start.title": "Let's do some explaining", - "quests.gregtech_energy.start.desc": "We know that &5GregTech&r isn’t the easiest mod to get into — especially when it comes to the &cenergy system&r. That’s why we’ll take our time in this chapter to explain as much as we can.\n\nSome things here might not make full sense until later in your progression, so &adon’t stress yourself&r. Just try to understand what you can for now, and feel free to &dcome back to this chapter&r whenever you have questions.\n\nWe’ve split this chapter into &efour categories&r, each one covering a topic related to the &6GregTech Energy System&r. We’ll provide as many examples as possible to help you understand how it all works.", + "quests.gregtech_energy.start.desc": "We know that GregTech isn’t the easiest mod to get into — especially when it comes to the &cenergy system&r. That’s why we’ll take our time in this chapter to explain as much as we can.\n\nSome things here might not make full sense until later in your progression, so don’t stress yourself. Just try to understand what you can for now, and feel free to &dcome back to this chapter&r whenever you have questions.\n\nWe’ve split this chapter into &efour categories&r, each one covering a topic related to the GregTech Energy System. We’ll provide as many examples as possible to help you understand how it all works.", "quests.gregtech_energy.start.task": "Welcome aboard", - "quests.gregtech_energy.start.subtitle": "It's not as bad as you could think", + "quests.gregtech_energy.start.subtitle": "It's not as bad as you think", "quests.gregtech_energy.moving.title": "Moving your Energy", - "quests.gregtech_energy.moving.subtitle": "So Energy transfer uh", - "quests.gregtech_energy.moving.desc": "&6Moving Energy in Gregtech&r means understanding a few core mechanics.\n\nFirst, &bEnergy Tiers&r. From &aLV&r to &cUHV&r, everything in Gregtech — wires, machines, recipes — is tied to a tier. You’ll need the &ecorrect cable material&r to move energy. For example:\n&8•&r Tin wire = &aLV&r\n&8•&r Copper wire= &bMV&r\n\nSecond, you’ve got the &bAmperage&r mechanic. Think of &d1 Amp&r (or &d1A&r) as &ea packet of energy&r. It moves down your cable to the closest machine needing power.\n&8•&r 1A of LV = &a32 EU&r\n&8•&r 1A of HV = &e512 EU&r\n\nMost machines and energy hatches can only take &62A at once&r.\n\nMastering these two ideas is key before going further into energy distribution.", + "quests.gregtech_energy.moving.subtitle": "So, energy transfer, huh", + "quests.gregtech_energy.moving.desc": "Moving Energy in GregTech means understanding a few core mechanics.\n\nFirst, &bEnergy Tiers&r. From &aLV&r to &cUHV&r, everything in GregTech — wires, machines, recipes — is tied to a tier. You’ll need the &ecorrect cable material&r to move energy. For example:\n&8•&r Tin wire = &aLV&r\n&8•&r Copper wire= &bMV&r\n\nSecond, you’ve got the &bAmperage&r mechanic. Think of 1 Amp (or 1A) as &ea packet of energy&r. Machines request energy \"packets\", which then get sent down the wire.\n&8•&r 1A of LV = &a32 EU&r\n&8•&r 1A of HV = &e512 EU&r\n\nMost machines and energy hatches will only request &62A at maximum&r.\n\nMastering these two ideas is key before going further into energy distribution.", "quests.gregtech_energy.moving.task": "I understand", "quests.gregtech_energy.transformer.title": "The Super Transformer", "quests.gregtech_energy.transformer.subtitle": "Better than Optimus Prime", - "quests.gregtech_energy.transformer.desc": "&6For every problem, Gregtech has a multiblock solution.&r Enter the &dActive Transformer&r.\n\nThis beast is your &9ultimate transformer&r. It can &echannel energy between any tiers&r — from &aLV&r to &cUHV&r — with &cno explosions&r. But that's not even the best part.\n\nIt can &btransmit energy using Laser Pipes&r.\n&8•&r Lasers send absurd amounts of Amps.\n&8•&r No loss. No cables. Just pure energy.\n&8•&r Only one catch: it &chas to be in a perfectly straight line&r.\n\n&7When cables feel weak, &luse lasers&r.", + "quests.gregtech_energy.transformer.desc": "For every problem, GregTech has a multiblock solution. Enter the &dActive Transformer&r.\n\nThis beast is your ultimate transformer. It can channel energy between any tiers — from &aLV&r to &cUHV&r — with no explosions. But that's not even the best part.\n\nIt can transmit energy using Laser Pipes.\n&8•&r Lasers send absurd amounts of Amps.\n&8•&r No loss. No cables. Just pure energy.\n&8•&r Only one catch: it &chas to be in a perfectly straight line&r.\n\nWhen cables feel weak, &luse lasers.", "quests.gregtech_energy.moving_wire.title": "Moving with wires", "quests.gregtech_energy.moving_wire.subtitle": "Funky to place", - "quests.gregtech_energy.moving_wire.desc": "&6Moving energy around in Gregtech can be tricky&b — we got cable loss&r. For every block, for every amp, you might lose energy as it travels through your wires. But don’t worry, there are &7solutions&r:\n\n&8•&r &bCover your wires&r with rubber. By doing so, you'll significantly reduce energy loss over distance. Just check the quest items for a reference.\n&8•&r &bUse higher-tier cables&r. Platinum cables, for example, only lose 1 EU per block — &9practically nothing&r when compared to the 8192 EU it can carry.\n&8•&r &bSuperconductors&r. These beauties are a bit pricier, but they have &9zero loss&r. They don’t need rubber covers, &cno shock&r. Just be aware that they require specific components based on their tier.\n\n&7Optimize your energy flow — &breduce losses&r and make your systems more efficient.", - "quests.gregtech_energy.moving_wire.task": "I finished look at wires", + "quests.gregtech_energy.moving_wire.desc": "Moving energy around in GregTech can be tricky — &bmost cables are lossy&r. For every block, for every amp, you might lose energy as it travels through your wires. But don’t worry, there are solutions:\n\n&8•&r Cover your wires with rubber. By doing so, you'll significantly reduce energy loss over distance. Just check the quest items for a reference.\n&8•&r Use higher-tier cables. Platinum cables, for example, only lose 1 EU per block — practically nothing when compared to the 8192 EU it can carry.\n&8•&r &bSuperconductors&r. These beauties are a bit pricier, but they have &9zero loss&r. They don’t need rubber covers, and won't zap you either. Just be aware that they're usually only craftable near the end of their tier.\n\nOptimize your energy flow — &breduce losses&r and make your systems more efficient.", + "quests.gregtech_energy.moving_wire.task": "I finished looking at wires", "quests.gregtech_energy.moving_amp.title": "Managing Amp", "quests.gregtech_energy.moving_amp.subtitle": "It burns?", - "quests.gregtech_energy.moving_amp.desc.1": "You’ll notice in a wire’s tooltip its &eMax Amperage&r — that’s the amount of amps a cable can safely carry before burning.\nTo know how many amps will flow through a cable, you must consider two things:\n\n&6- A Generator or Battery outputs a specific amount of Amps:&r\n&7Battery Buffers&r will output as many amps as they have batteries inside.\nEvery single-block generator outputs &e1A&r.\nFor multiblock generators, it depends on the &aDynamo Energy Hatch&r — the value is shown in its tooltip.\n\n&6- Amperage output is also based on what is needed:&r\nEach machine connected to a power line will request amps to fill its internal buffer.", - "quests.gregtech_energy.moving_amp.desc.2": "Let’s look at an example:\nYou have &e6 machines&r connected to an &e8x Battery Buffer&r filled with batteries.\nThe buffer will try to send &e1A&r to each machine — that’s &e6A&r total.\nThe amps are delivered in order: the closest machines get power first, and the furthest ones last.\nIf your cables only support &c4A&r, they’ll &cBURN&r. You’ll need &a8A cables&r in this case.\n\n&bTip:&r The first machine in the line might need a cable that handles &e8A&r,\nbut the last machine may only need &e1A&r, as it’s only receiving what’s left.\n&c⚠ Be careful:&r adding another machine at the end could cause the cable to burn if it exceeds the limit.", + "quests.gregtech_energy.moving_amp.desc.1": "You’ll notice each wire has its own &eMax Amperage&r — that’s the amount of amps a cable can safely carry before burning.\nTo know how many amps will flow through a cable, you must consider two things:\n\n- A Generator or Battery outputs a specific amount of Amps:\nBattery Buffers will output as many amps as they have batteries inside.\nEvery single-block generator outputs &e1A&r.\nFor multiblock generators, it depends on the &aDynamo Energy Hatch&r — the value is shown in its tooltip.\n\nAmperage output is also based on what is needed: each machine connected to a power line will request amps to fill its internal buffer.", + "quests.gregtech_energy.moving_amp.desc.2": "Let’s look at an example:\nYou have &e6 machines&r connected to an &e8x Battery Buffer&r filled with 8 batteries.\nThe buffer will try to send &e1A&r to each machine — that’s &e6A&r total.\nThe amps are delivered in order: the closest machines get power first, and the furthest ones last.\nIf your cables only support &c4A&r, they’ll &cBURN&r. You’ll need &a8A cables&r in this case.\n\n&bTip:&r The first machine in the line might need a cable that handles &e8A&r,\nbut the last machine may only need &e1A&r, as it’s only receiving what’s left.\n&c⚠ Be careful:&r adding another machine at the end could cause the cable to burn if it exceeds the limit.", "quests.gregtech_energy.moving_amp.task": "I got it", "quests.gregtech_energy.produce_energy.title": "Producing Energy", "quests.gregtech_energy.produce_energy.subtitle": "Gas or Oil?", "quests.gregtech_energy.produce_energy.desc": "It’s all about making energy, right? This part won’t be the most complicated one, since &eproducing energy&r in &2TerraFirmaGreg&r works pretty much like in &5standard GregTech&r.\n\nYou’ll learn about the various &6methods to generate energy&r, as well as some of the &afuels&r you can use to get the most out of your setup.", - "quests.gregtech_energy.produce_energy.task": "Got it", + "quests.gregtech_energy.produce_energy.task": "Let's go!", "quests.gregtech_energy.first_generator.title": "Your first generators", - "quests.gregtech_energy.first_generator.subtitle": "It begins small", - "quests.gregtech_energy.first_generator.desc": "All of these are your basic &61-block Generators&r. They have a single &9input&r for their fuel — whether it’s &esteam&r, &agas&r, or &6liquid fuel&r — and they output exactly &e1A&r of power at their energy tier.\n\nThey’re simple to work with and will be your &ofirst source of power&r in &5GregTech&r until you reach the &dlarge multiblock generators&r.\n\nTo know what fuels can be used, &aEMI&r is your best friend — or you can check the &bquests on the left&r, where we’ve listed the most &aoptimal inputs&r.", - "quests.gregtech_energy.first_generator.task": "Get any of them", + "quests.gregtech_energy.first_generator.subtitle": "Start small", + "quests.gregtech_energy.first_generator.desc": "All of these are your basic &61-block Generators&r. They have a single &9input&r for their fuel — whether it’s &esteam&r, &agas&r, or &6liquid fuel&r — and they output exactly &e1A&r of power at their energy tier.\n\nThey’re simple to work with and will be your &ofirst source of power&r in &5GregTech&r until you reach the &dlarge multiblock generators&r later on.\n\nTo know what fuels can be used, &aEMI&r is your best friend — or you can check the &bquests on the left&r, where we’ve listed the most &aoptimal inputs&r.", + "quests.gregtech_energy.first_generator.task": "Any single-block generator", "quests.gregtech_energy.lv_generator.title": "Let's make energy", "quests.gregtech_energy.lv_generator.subtitle": "Welcome to LV", "quests.gregtech_energy.lv_generator.desc.1": "With your first step into the Electrical Age, you will need to produce energy, called EU (Electrical Unit) in GregTech.\n\nThere are three main ways to generate it:", - "quests.gregtech_energy.lv_generator.desc.2": "&e1. Steam Power&r:\n\nThis is the most classic method. You can convert the steam produced by your High Pressure Boilers into EU using a Steam Turbine.\n\nIt generates &e32 EU/t&r with &e64 mB/t&r of steam. If you follow this path, we highly recommend making a Large Bronze Boiler, which can easily be fueled with Lava or Creosote.", - "quests.gregtech_energy.lv_generator.desc.3": "&e2. Create Rotational Power&r:\n\nYou can use &eCreate&r's rotational power with an Alternator to generate RF, then convert it into EU using an &7LV&r Converter.\n\n&7(Check the Alternators quest in LV Chapter for more details.)&r", - "quests.gregtech_energy.lv_generator.desc.4": "&e3. Biodiesel Power (TFG Exclusive)&r:\n\nBy processing &eRapeseed&r or &eSunflower&r, you can obtain large amounts of Seed Oil. Combine it with TFC Alcohol to produce Biodiesel.\n\nThis method may seem more complex, but Biodiesel is extremely powerful during &7LV&r and &bMV&r stages. It scales well into &5EV&r with &eCetane-Boosted Diesel&r later on.\n\nTo use Biodiesel, you’ll need a &7LV&r Combustion Generator. While it may be slightly more expensive, every &emB&r of Biodiesel provides a high amount of EU, making it easier to transport and store.\n\n&6It's your choice how you want to start your energy production.&r", - "quests.gregtech_energy.lv_generator.task": "Get any of them", + "quests.gregtech_energy.lv_generator.desc.2": "&e1. Steam Power&r:\n\nThis is the most classic method. You can convert the steam produced by your High Pressure Boilers into EU using a Steam Turbine.\n\nIt generates &e32 EU/t&r with &e64 mB/t&r of steam. If you follow this path, we highly recommend making a Large Bronze Boiler, which can easily be fueled with Lava, Creosote, or other burnable solid fuels (check JEI!).", + "quests.gregtech_energy.lv_generator.desc.3": "&e2. Rotational Power&r:\n\nYou can use Create's rotational power with an Alternator to generate RF, then convert it into EU using an &7LV&r Converter.\n\n(Check the Alternators quest in the LV Chapter for more details.)", + "quests.gregtech_energy.lv_generator.desc.4": "&e3. Biodiesel Power (TFG Exclusive)&r:\n\nRapeseed and Sunflowers can be processed into large amounts of Seed Oil. Combine it with TFC Alcohol to produce Biodiesel.\n\nThis method may seem more complex, but Biodiesel is extremely powerful during &7LV&r and &bMV&r tiers. It scales well into &5EV&r with &eCetane-Boosted Diesel&r later on.\n\nTo use Biodiesel, you’ll need a &7LV&r Combustion Generator. While it may be slightly more expensive, every mB of Biodiesel provides a high amount of EU, making it easier to transport and store.\n\nIt's your choice how you want to start your energy production.", + "quests.gregtech_energy.lv_generator.task": "Any LV Generator", "quests.gregtech_energy.mv_generator.title": "The MV Generators", "quests.gregtech_energy.mv_generator.subtitle": "Basically the same as the LV ones", - "quests.gregtech_energy.mv_generator.desc": "To run your &bMV&r machines, you will need to upgrade your power production.\n\nIf an &7LV&r Generator produces &e32 EU/t&r, the &bMV&r Generator runs at &e128 EU/t&r.\nIt consumes four times more fuel to produce four times more energy.\n\nTo better understand power generation at &7LV&r, we strongly recommend checking the dedicated quest in the &bMV&r chapter, located right at the beginning.\n\nAt &bMV&r, you also gain access to more options:\n\n- You can continue using &eBiodiesel&r or &eSteam&r, though you may need larger pipes (&7Aluminium&r, &7Steel&r, or &7Potin&r can handle it).\n- Gas-based fuels like &eBenzene&r, &eLPG&r, or &eMethane&r also become viable solutions.\n\n&6Explore your options carefully to optimize your energy setup.&r", - "quests.gregtech_energy.mv_generator.task": "Any MV Generator can work", + "quests.gregtech_energy.mv_generator.desc": "To run your &bMV&r machines, you will need to upgrade your power production.\n\nIf an &7LV&r Generator produces &e32 EU/t&r, the &bMV&r Generator runs at &e128 EU/t&r.\nIt consumes four times more fuel to produce four times more energy.\n\nTo better understand power generation at &bMV&r, we strongly recommend checking the dedicated quest in the &bMV&r chapter, located right at the beginning.\n\nAt &bMV&r, you also gain access to more options:\n\n- Oil-based fuels like Diesel or Light Fuel\n- Gas-based fuels like Benzene, LPG, or Methane\n- You can continue using Biodiesel or Steam, though you may need larger pipes (Aluminium, Steel, or Potin can handle it)\n\nExplore your options carefully to optimize your energy setup.", + "quests.gregtech_energy.mv_generator.task": "Any MV Generator", "quests.gregtech_energy.hv_single_generator.title": "The last single block generators", - "quests.gregtech_energy.hv_single_generator.subtitle": "Third time the charm", + "quests.gregtech_energy.hv_single_generator.subtitle": "Third time's the charm?", "quests.gregtech_energy.hv_single_generator.desc": "If you don’t want to build the &eLarge Steam Turbine&r, these are your only options for &6HV&r.\n\nHowever, keep in mind that they won’t be available for &5EV&r and beyond.\n\nStill, they remain strong choices for energy generation at the &6HV&r tier.", - "quests.gregtech_energy.hv_single_generator.task": "Any HV Generator can work", + "quests.gregtech_energy.hv_single_generator.task": "Any HV Generator", "quests.gregtech_energy.hv_fuel.title": "The obtainable HV fuels", - "quests.gregtech_energy.hv_fuel.subtitle": "To each its own", - "quests.gregtech_energy.hv_fuel.desc": "These are the three fuels respectively used for the &eCombustion&r, &eSteam&r, and &eGas&r Generators.\n\nIf you have reached &6HV&r, we highly recommend choosing one of these three options.\n\nHowever, don’t worry—other fuels are not necessarily bad.\n\nYou should always pick the solution that works best for your setup and playstyle.", + "quests.gregtech_energy.hv_fuel.subtitle": "To each their own", + "quests.gregtech_energy.hv_fuel.desc": "These are the three fuels respectively used for the Combustion, Steam, and Gas Generators.\n\nIf you have reached &6HV&r, we highly recommend choosing one of these three options.\n\nHowever, don’t worry—other fuels are not necessarily bad.\n\nYou should always pick the solution that works best for your setup and playstyle.", "quests.gregtech_energy.hv_fuel.task": "I got it", "quests.gregtech_energy.hv_choice.title": "Producing at HV", "quests.gregtech_energy.hv_choice.subtitle": "Your choice", @@ -919,36 +985,36 @@ "quests.gregtech_energy.hv_choice.task": "I understand", "quests.gregtech_energy.lpt.title": "The Large Plasma Turbine", "quests.gregtech_energy.lpt.subtitle": "You need a Fusion Reactor", - "quests.gregtech_energy.lpt.desc.1": "The &6Large Plasma Turbine&r — also known as &dLPT&r — is a real powerhouse. Not in size (it’s fairly standard), but in &ccapacity&r. You’ll need &dLuV Circuits&r, a &dLuV Machine Hull&r, and &5tons of Tungstensteel&r to craft it. It’s considered your &6most powerful generator&r in &2TerraFirmaGreg&r.\n\nSo, how does it work? You’ll need &5Plasma&r produced by a &6Fusion Reactor&r. That plasma is cooled down inside the LPT while generating energy. You will need an &2output hatch&r to get the cooled plasma.", - "quests.gregtech_energy.lpt.desc.2": "By default, the LPT starts at &e16384 EU/t&r. That energy output &cdoubles&r with each increase in the &6Rotor Holder&r after &1IV&r.\n\nFor example, using a &dLuV Rotor Holder&r (x2) with an &cHSS-E Turbine Rotor&r (x2,8) will give you a staggering &e91750 EU/t&r — that’s about &a2.8A of LuV&r power!\n\nLike other turbines, it will &8slow down&r and stop if the &dDynamo Hatch&r is full so you won't waste plasma, but doesn’t require a &7Muffler Hatch&r.", + "quests.gregtech_energy.lpt.desc.1": "The &6Large Plasma Turbine&r — also known as &dLPT&r — is a real powerhouse. Not in size (it’s fairly standard), but in capacity. You’ll need LuV Circuits, a LuV Machine Hull, and tons of Tungstensteel to craft it. It’s considered the most powerful generator in TerraFirmaGreg.\n\nSo, how does it work? You’ll need Plasma produced by a Fusion Reactor. That plasma is cooled down inside the LPT while generating energy. You will need an output hatch to get the cooled plasma out.", + "quests.gregtech_energy.lpt.desc.2": "By default, the LPT starts at &e16384 EU/t&r, which doesn't look like much, but that energy output &cdoubles&r with each increase in the Rotor Holder after &1IV&r.\n\nFor example, using a LuV Rotor Holder (x2) with an HSS-E Turbine Rotor (x2.8) will give you a staggering &e91750 EU/t&r — that’s about &a2.8A of LuV&r power!\n\nLike other turbines, it will slow down and stop if the Dynamo Hatch is full so you won't waste plasma, but unlike the others, this one doesn’t require a Muffler Hatch.", "quests.gregtech_energy.lgt.title": "The Large Gas Turbine", "quests.gregtech_energy.lgt.subtitle": "The fan favorite", - "quests.gregtech_energy.lgt.desc.1": "The &6Large Gas Turbine&r — also known as &dLGT&r — is one of your two main sources of &aenergy production&r for most of the pack. You’ll be able to build your first one at &5EV&r using &6Stainless Steel&r. It can carry you from &5EV&r all the way to &dLuV&r, until you feel ready to upgrade to the &6Large Plasma Turbine&r.\n\nThat said, many players can finish &2TerraFirmaGreg&r using only these turbines — provided you have a &cstrong infrastructure&r to handle the &agas demands&r of high-tier LGTs.\n\nTo build the LGT, you’ll need the usual &dMaintenance Hatch&r and &9Input Hatch&r. This turbine &erequires a Muffler Hatch&r, but it &cdoes not use an Output Hatch&r. &mYou’ll need to manage the &cCarbon Monoxide&r&m it emits with something like an &6Air Scrubber&r.&r", - "quests.gregtech_energy.lgt.desc.2": "The default output is &e4096 EU/t&r. That output &cdoubles&r with each upgrade to the &6Rotor Holder&r after &5EV&r. For example, an LGT using an &1IV Rotor Holder&r (×2) with a &cHSS-E Turbine Rotor&r (280 percent power) will produce:\n&e4096 × 2 × 2.8 = 22,937.6 EU/t&r — that's about &a2.8A of IV&r.\n\nTo fully extract that energy, you’ll need at least a &dIV 4A Dynamo Hatch&r. A simple Dynamo Hatch only handles &e2A&r.\n\nJust so you know: the &eEfficiency stat&r of a Turbine Rotor increases the &cduration of the recipe&r, which means you get more power from each &6mB of fuel&r.\n\nLastly, if the &dDynamo Hatch&r fills up, the LGT will automatically &8slow down&r and pause fuel usage, gradually reducing rotor speed until it resumes again. So &ayou won't lose any fuel&r during a backup.", + "quests.gregtech_energy.lgt.desc.1": "The &6Large Gas Turbine&r — also known as &dLGT&r — is one of your two main sources of energy production for most of the modpack. You’ll be able to build your first one at &5EV&r using Stainless Steel. It can carry you from &5EV&r all the way to &dLuV&r, until you feel ready to upgrade to the Large Plasma Turbine.\n\nThat said, many players can finish TerraFirmaGreg using only these turbines — provided you have a strong infrastructure to handle the gas demands of high-tier LGTs.\n\nTo build the LGT, you’ll need the usual Maintenance Hatch and Input Hatch. This turbine requires a Muffler Hatch, but it does not use an Output Hatch.", + "quests.gregtech_energy.lgt.desc.2": "The default output is &e4096 EU/t&r. That output &cdoubles&r with each upgrade to the Rotor Holder after &5EV&r. For example, an LGT using an IV Rotor Holder (×2) with a HSS-E Turbine Rotor (280%% power) will produce:\n4096 × 2 × 2.8 = &e22,937.6 EU/t&r — that's about &a2.8A of IV&r.\n\nTo fully extract that energy, you’ll need at least a IV 4A Dynamo Hatch, since a normal Dynamo Hatch only handles 2A.\n\nJust so you know: the Efficiency stat of a Turbine Rotor increases the duration of the recipe, which means you get more power from each mB of fuel.\n\nLastly, if the Dynamo Hatch fills up, the LGT will automatically slow down and pause fuel usage, gradually reducing rotor speed until it resumes again. So you won't lose any fuel during a backup.", "quests.gregtech_energy.lst.title": "The Large Steam Turbine", - "quests.gregtech_energy.lst.subtitle": "It exists", - "quests.gregtech_energy.lst.desc.1": "The &6Large Steam Turbine&r — or &dLST&r — might not be the most common &5Large Generator&r in standard GregTech, but thanks to its early unlock at &6HV&r and the fact that &eLarge Boilers&r are stronger in &2TerraFirmaGreg&r, it definitely has its place.\n\nTo make it work, you’ll need an &9Input Hatch&r for &osteam&r, an &eOutput Hatch&r for &9Distilled Water&r, and of course a &dMaintenance Hatch&r. That’s all you need.\n\nLike all &dLarge Turbines&r, you’ll place a &6Rotor Holder&r on one side and a &dDynamo Hatch&r on the other to extract power. For the LST, the Rotor Holder must be at least &6HV-tier&r. Each Rotor Holder upgrade &cdoubles&r the output and increases &aefficiency&r slightly.", - "quests.gregtech_energy.lst.desc.2": "The base output of the LST is &e1024 EU/t&r. Let’s take an example: with an &1IV Rotor Holder&r (×4) and a &cHSS-E Turbine Rotor&r (280 percent power), you’ll get:\n&e1024 × 4 × 2.8 = 11,468.8 EU/t&r — that’s about &a1.4A of IV&r.\n\nTo extract that energy, you’d need either an &dIV Dynamo Hatch&r or an &5EV 16A Dynamo Hatch&r.\n\nWhile the LST isn’t the best turbine out there, if you have &9plenty of Large Boilers&r or access to &alava&r or &7creosote&r as infinite fuel, these &esteel-based, affordable turbines&r could absolutely serve you well.", + "quests.gregtech_energy.lst.subtitle": "It... exists", + "quests.gregtech_energy.lst.desc.1": "The &6Large Steam Turbine&r — or &dLST&r — might not be the most common Large Generator in standard GregTech, but thanks to its early unlock at &6HV&r and the fact that Large Boilers are stronger in TerraFirmaGreg, it definitely has its place.\n\nTo make it work, you’ll need an Input Hatch for steam, an Output Hatch for Distilled Water, and of course a Maintenance Hatch. That’s all you need!\n\nLike all Large Turbines, you’ll place a Rotor Holder on one side and a Dynamo Hatch on the other to extract power. For the LST, the Rotor Holder must be at least &6HV-tier&r. Each Rotor Holder upgrade &cdoubles&r the output and increases efficiency slightly.", + "quests.gregtech_energy.lst.desc.2": "The base output of the LST is &e1024 EU/t&r. Let’s take an example: with an IV Rotor Holder (×4) and a HSS-E Turbine Rotor (280%% power), you’ll get:\n1024 × 4 × 2.8 = &e11,468.8 EU/t&r — that’s about &a1.4A of IV&r.\n\nTo extract that energy, you’d need either an IV Dynamo Hatch or an EV 16A Dynamo Hatch.\n\nWhile the LST isn’t the best turbine out there, if you have plenty of Large Boilers or access to a large amount of fuel, these steel-based, affordable turbines could absolutely serve you well.", "quests.gregtech_energy.lce.title": "The Large Combustion Generator", "quests.gregtech_energy.lce.subtitle": "Don't belive its GUI", - "quests.gregtech_energy.lce.desc.1": "These two &6bad boys&r are your &achampions&r if you’re into transforming &eOils&r into &cfuels&r. The &6Large Combustion Engine&r (&dLCE&r) and the &5Extreme Combustion Engine&r (&dECE&r) share the same fuel types and even look alike — but they require different materials to build.\n\nTo craft the &dLCE&r, you’ll need to reach &5EV&r and unlock &6Titanium&r, along with at least one &1IV Circuit&r. For the &dECE&r, it’ll be &5Tungstensteel&r and a &dLuV Circuit&r — something you should be able to build comfortably during the &1IV Chapter&r.", - "quests.gregtech_energy.lce.desc.2": "Both machines require an &9Input Hatch&r for &cfuel&r and also &6Lubricant&r. For the &dECE&r, adding &bOxygen&r or &bLiquid Oxygen&r will grant you a &cmassive energy boost&r. Check the &etooltip&r of your fuel to compare how much extra energy you get with oxidizers — it's well worth it.\n\nKeep in mind: both engines need a &7Muffler Hatch&r, so &cThey Will Pollute&r.", + "quests.gregtech_energy.lce.desc.1": "These two &6bad boys&r are your champions if you’re into transforming Oils into fuels. The &6Large Combustion Engine&r (&dLCE&r) and the &5Extreme Combustion Engine&r (&dECE&r) share the same fuel types and even look alike — but they require different materials to build.\n\nTo craft the LCE, you’ll need to reach &5EV&r and unlock Titanium, along with at least one IV Circuit. For the ECE, it’ll be Tungstensteel and a LuV Circuit — something you should be able to build comfortably during &1IV&r.", + "quests.gregtech_energy.lce.desc.2": "Both machines require an Input Hatch for fuel and also Lubricant. For the &dECE&r, adding Oxygen or Liquid Oxygen will grant you a &cmassive energy boost&r. Check the tooltip of your fuel to compare how much extra energy you get with oxidizers — it's well worth it.\n\nKeep in mind: both engines need a Muffler Hatch.", "quests.gregtech_energy.lpt_fuel.title": "Plasma Fuels", "quests.gregtech_energy.lpt_fuel.subtitle": "It's very hot", - "quests.gregtech_energy.lpt_fuel.desc.1": "&6Large Plasma Turbines&r require &chigh-tech fuels&r to run, and we provide you with &a2 strong options&r:\n\n&8- The first option&r becomes available with your &dMK1 Fusion Reactor&r: &eHelium Plasma&r.\nYou can create it using &3Deuterium&r and &3Tritium Gas&r — both gases are obtained by &adistilling Liquid Ender Air&r.\nThis fuel isn't the most powerful, but it's by far the &aeasiest and earliest&r to produce.", - "quests.gregtech_energy.lpt_fuel.desc.2": "&8- The second option&r requires a &5MK3 Fusion Reactor&r and allows you to generate &eNickel Plasma&r.\nTo make it, you’ll need &6Liquid Potassium&r — which you can extract from various ores — and the &4infamous Fluorine&r, which you should already know how to produce by now.\n\n⚠ Don’t forget: &eHelium Gas&r and &eLiquid Nickel&r should be &3collected and returned&r to your storage for &afuture reuse&r.\n\nThese two fuels are your &abest candidates&r for powering the &dLPT&r, depending on how far you've progressed in your &bindustrial madness&r.", + "quests.gregtech_energy.lpt_fuel.desc.1": "&6Large Plasma Turbines&r require high-tech fuels to run, and we provide you with two strong options:\n\nThe first option becomes available with your MK1 Fusion Reactor: &eHelium Plasma&r.\nYou can create it using Deuterium and Tritium Gas — both gases are obtained by distilling &aLiquid Ender Air&r.\nThis fuel isn't the most powerful, but it's by far the easiest and earliest to produce.", + "quests.gregtech_energy.lpt_fuel.desc.2": "The second option requires a MK3 Fusion Reactor and allows you to generate &eNickel Plasma&r.\nTo make it, you’ll need Liquid Potassium — which you can extract from various ores — and the infamous Fluorine, which you should already know how to produce by now.\n\n⚠ Don’t forget: Helium Gas and Liquid Nickel should be collected and returned to your storage for future reuse.\n\nThese two fuels are your best candidates for powering the &dLPT&r, depending on how far you've progressed in your industrial madness.", "quests.gregtech_energy.lpt_fuel.task": "I don't want to make a bucket of Plasma", "quests.gregtech_energy.lgt_fuel.title": "Gas Fuels", - "quests.gregtech_energy.lgt_fuel.subtitle": "The everyone favorite", - "quests.gregtech_energy.lgt_fuel.desc.1": "When we speak about &agas fuels&r, we’re really talking about &cjust one&r — &eNitrobenzene&r.\n\nYou’ll be able to produce it once you reach &6HV&r, and we &astrongly recommend it&r if you’re planning to use the &5Large Gas Turbine&r.\n\nBefore reaching Nitrobenzene, &eBenzene&r is a solid option to get started. You can obtain it via &aOrganic Chemistry&r or by processing &eHeavy Oil&r, if you’re lucky enough to have some nearby.", - "quests.gregtech_energy.lgt_fuel.desc.2": "Making &eNitrobenzene&r involves several steps — until you craft your first &6Large Chemical Reactor&r (&aLCR&r), which will let you &3skip many sub-steps&r and simplify the process.\n\nIt’s nothing too complicated: combine &3Hydrogen&r, &bNitrogen&r, and &bOxygen&r to make &eNitric Acid&r in infinite quantities. As for &eSulfuric Acid&r, you probably already know it’s just &6Sulfur&r and &9Water&r — right?\n\nOnce you get this chain going, Nitrobenzene becomes one of the &amost powerful fuels&r for gas burning.", + "quests.gregtech_energy.lgt_fuel.subtitle": "Everyone's favorite", + "quests.gregtech_energy.lgt_fuel.desc.1": "When we speak about gas fuels, we’re really talking about just one — &eNitrobenzene&r.\n\nYou’ll be able to produce it once you reach &6HV&r, and we &astrongly recommend it&r if you’re planning to use the Large Gas Turbine.\n\nBefore reaching Nitrobenzene, &eBenzene&r is a solid option to get started. You can obtain it from a tree farm or by processing Heavy Oil, if you’re lucky enough to have some nearby.", + "quests.gregtech_energy.lgt_fuel.desc.2": "Making Nitrobenzene involves several steps — until you craft your first Large Chemical Reactor (LCR), which will let you skip many sub-steps and simplify the process.\n\nIt’s nothing too complicated: combine Hydrogen, Nitrogen, and Oxygen to make &eNitric Acid&r in infinite quantities. As for Sulfuric Acid, you probably already know it’s just Sulfur and Water — right?\n\nOnce you get this chain going, Nitrobenzene becomes one of the &amost powerful fuels&r for gas burning.", "quests.gregtech_energy.lgt_fuel.task": "Gas in a bucket?", "quests.gregtech_energy.lst_fuel.title": "This is Steam", "quests.gregtech_energy.lst_fuel.subtitle": "Not much of a choice", "quests.gregtech_energy.lst_fuel.desc": "Steam isn’t really complicated — just &aboil water&r to get steam.\n\nTo do it efficiently, we recommend using &6Large Boilers&r. You’ll find &c4 versions&r: one each for &8ULV&r, &bMV&r, &5EV&r, and &1IV&r. Each tier provides a &dstrong increase&r in steam output.\n\nHowever, be aware: the scaling of the &dLarge Steam Turbine&r with these boilers is &cnot the best&r compared to other power generation methods.\n\nMost players will &7skip&r the &5Titanium&r and &dTungstensteel&r Boilers — they exist if you want them, but aren’t really &aefficient or worth building&r in most cases.\n\nAs a reminder: &e2 mB&r of steam = &e1 EU&r.", "quests.gregtech_energy.lst_fuel.task": "", "quests.gregtech_energy.lce_fuel.title": "Liquid fuel", - "quests.gregtech_energy.lce_fuel.subtitle": "This one is killing hard the planet", + "quests.gregtech_energy.lce_fuel.subtitle": "The polluter's favourite", "quests.gregtech_energy.lce_fuel.desc.1": "All of these &cfuels&r are used for &6Combustion Generators&r — ranked here from the &cleast efficient&r to the &abest&r.\n\nDuring &bMV&r, we recommend starting with &eDiesel&r or &eBiodiesel&r. Later on, you can upgrade to &eCetane-Boosted Diesel&r at &6HV&r by mixing it with &bNitrogen&r, &3Hydrogen&r, and &bOxygen&r.", "quests.gregtech_energy.lce_fuel.desc.2": "Once you reach &5EV&r and get your hands on a &6Distillation Tower&r, it's time to switch over to &eGasoline&r and &eHigh Octane Gasoline&r. Don’t attempt this too early — &coils need to be distilled properly&r, and doing it with a &cDistillery&r is &cnot efficient&r at all.\n\nTo make this work, you'll need a combination of oil distillation and some &aorganic compound processing&r. Thankfully, a &6Pyrolyse Oven&r and a &6Distillation Tower&r will handle it all smoothly.\n\nIf you manage a &asteady supply&r of &eHigh Octane Gasoline&r, you should be able to &3finish the entire modpack&r running only on &6Combustion Generators&r.", "quests.gregtech_energy.lce_fuel.task": "I got enough", @@ -961,7 +1027,7 @@ "quests.gregtech_energy.storage.title": "Storing Energy", "quests.gregtech_energy.storage.desc": "Storing your energy is one of the &emost fundamental aspects&r of the power system in &dGregTech&r.\n\nWhy is that? Simply because even the &cstrongest generators&r won't be enough to keep up when you launch a &ebig craft&r — especially in late game.\n\nTo deal with this, GregTech provides &6multiple solutions&r to store &bastronomical amounts of EU&r. These storages act as a &3buffer&r between your energy production and the machines that drain it during complex operations.\n\nWhether you’re preparing for a &1Fusion Reactor&r, a &dLCT&r, or any &6HV-IV scale crafting chain&r, you’ll need that extra backup of energy to keep everything stable.\n\nDon’t underestimate the &apower of a good battery&r — it may just be the thing that saves your base from crashing during your most ambitious moments.", "quests.gregtech_energy.storage.task": "I understand", - "quests.gregtech_energy.storage.subtitle": "Gregtech has some tremendous storage capacity", + "quests.gregtech_energy.storage.subtitle": "GregTech has some tremendous storage capacity", "quests.gregtech_energy.tank.title": "Storing the Fuel", "quests.gregtech_energy.tank.desc.1": "Obviously, storing energy can also mean &estoring the fuel that makes it&r.\n\nFor this scenario, while &7Drums&r and &6Crates&r are decent early options, you should not overlook the &dSuper Tank&r and the &dSuper Chest&r.", "quests.gregtech_energy.tank.desc.2": "These &abeasts&r are capable of storing &ctremendous amounts of fluid or items&r — perfect for &3autonomous energy setups&r, especially when you want to generate power &cfar away from your main base&r without having to build an entire cable network.\n\nJust load them up with &egas, fuel, steam&r or even &4plasma&r, and let them handle the rest. With proper planning, your outposts can be fully operational with &ano live connection&r to your central grid.\n\nEnergy doesn’t always come in wires — sometimes, it comes in barrels.", @@ -976,16 +1042,16 @@ "quests.gregtech_energy.pss.title": "The Power Substation", "quests.gregtech_energy.pss.desc.1": "This one should become your &5main focus&r once you progress into &1IV&r.\n\nThe &dPower Substation&r — also known as the &dPSS&r — is the &6ultimate custom battery multiblock&r.\nIt can store so much energy... you’d probably need &cmultiple lifetimes&r to fill it.", "quests.gregtech_energy.pss.desc.2": "&eHow it works&r:\n- Build the structure using &aPalladium Substation Casings&r.\n- Add at least &b1 Energy Hatch&r (input) and &b1 Dynamo Hatch&r (output).\n- It accepts &aany hatch&r — &8Amperage-based&r or &6Laser&r.\n- &cNo risk of explosion&r — transformers are &aintegrated&r.\n\n&eCapacitor Layers&r:\n- You can add up to &d17 layers&r of &9Capacitor Blocks&r on top of the structure.\n- Each layer must be &cfully filled&r — no gaps.\n- Mix &fempty&r and &6full&r capacitors however you like.\n\nSurround each layer with &bLaminated Glass&r.\n\nLet’s be honest: &cYou’ll never need 17 layers&r... but hey, it’s nice to dream big.\nIf you ever do build a full 17-layer PSS, &lplease send help&r — you’ve gone too far.", - "quests.gregtech_energy.pss.subtitle": "Cool Gregtech Multiblock", + "quests.gregtech_energy.pss.subtitle": "Cool GregTech Multiblock", "quests.gregtech_energy.batteries.title": "Super Batteries", "quests.gregtech_energy.batteries.desc": "From &7LV&r and &bMV&r, you probably built your first batteries made of &fSodium&r or &3Lithium&r.\n\nBut let’s be honest — these are the &cweakest&r batteries GregTech has to offer.\n\nIn this quest, we’ll look at the powerful alternatives: the &acrystal batteries&r.\nThey are &emuch more potent&r, store way more energy, and can help you push your factory to the next tier.\n\nAre they &cmore expensive&r? Of course. But let’s be real...\n&6Power is Power&r. Who’s counting?", "quests.gregtech_energy.batteries.task": "Any batteries", "quests.gregtech_energy.batteries.subtitle": "Simply Better", "quests.gregtech_energy.spending_energy.title": "Spending Energy", "quests.gregtech_energy.spending_energy.subtitle": "Oh you will spend energy", - "quests.gregtech_energy.spending_energy.desc.1": "&6How to spend all this energy?&r\n\nUse your machines! Sounds simple, right?\nWell... &cnot exactly&r. There are &emany small details&r that you should learn to help you on your &dquest&r to completing &3TerraFirmaGreg&r.\n\n&bBasic Machines&r:\n- These machines are simple.\n- They can handle up to &a2A&r.\n- If you input a &chigher tier&r of energy... &4\uD83D\uDCA5 they explode&r.\n\n&dGregtech Multiblocks&r:\nNow things get interesting.\nMultiblocks offer more flexibility and power — &eif&r you understand how they work.", + "quests.gregtech_energy.spending_energy.desc.1": "&6How to spend all this energy?&r\n\nUse your machines! Sounds simple, right?\nWell... &cnot exactly&r. There are &emany small details&r that you should learn to help you on your &dquest&r to completing &3TerraFirmaGreg&r.\n\n&bBasic Machines&r:\n- These machines are simple.\n- They can handle up to &a2A&r.\n- If you input a &chigher tier&r of energy... &4\uD83D\uDCA5 they explode&r.\n\n&dGregTech Multiblocks&r:\nNow things get interesting.\nMultiblocks offer more flexibility and power — &eif&r you understand how they work.", "quests.gregtech_energy.spending_energy.desc.2": "&eStandard Mechanics&r:\n- If a multiblock can accept &aTWO&r &bEnergy Hatches&r this allows you to use &ahigher-tier recipes&r than the machine’s base tier.\n\nExample:\nIf you're using a &dLarge Mixing Vessel&r and you install &12x IV Energy Hatches&r,\nit will be able to process &cLuV-tier Mixer recipes&r — this is how works the &cElectric Blast Furnace&r.\n\nKnowing this will help you get the &6maximum efficiency&r out of your setup and progressing into higher tier materials.", - "quests.gregtech_energy.spending_energy.desc.3": "&6Some multiblocks only accept one Energy Hatch, but that doesn't mean you're limited to 1A.&r\n\nYou can still use a &e4A or 16A Energy Hatch&r. This will allow &bOverclocking&r of recipes but &cnot recipe tier upgrades&r.\n\n&dExample&r:\nThe &aLarge Circuit Assembler&r only accepts &eone Energy Hatch&r. If you install a &c4A IV Energy Hatch&r, you will be able to &eOverclock all IV and lower recipes&r.\n\nHowever, you &ccannot craft LuV-tier recipes&r because the machine doesn't support multiple hatches. That limitation is &aintentional&r to prevent skipping the Gregtech progression system.", + "quests.gregtech_energy.spending_energy.desc.3": "&6Some multiblocks only accept one Energy Hatch, but that doesn't mean you're limited to 1A.&r\n\nYou can still use a &e4A or 16A Energy Hatch&r. This will allow &bOverclocking&r of recipes but &cnot recipe tier upgrades&r.\n\n&dExample&r:\nThe &aLarge Circuit Assembler&r only accepts &eone Energy Hatch&r. If you install a &c4A IV Energy Hatch&r, you will be able to &eOverclock all IV and lower recipes&r.\n\nHowever, you &ccannot craft LuV-tier recipes&r because the machine doesn't support multiple hatches. That limitation is &aintentional&r to prevent skipping the GregTech progression system.", "quests.gregtech_energy.spending_energy.desc.4": "&bSo remember&r: More amps on a single hatch means faster processing, but it won’t unlock higher-tier recipes unless the multiblock is designed to allow it.", "quests.gregtech_energy.spending_energy.task": "I understand", "quests.gregtech_energy.overclock.title": "Overclock", @@ -1002,7 +1068,7 @@ "quests.gregtech_energy.blast_oc.task": "Got it", "quests.gregtech_energy.subtick.title": "Subtick", "quests.gregtech_energy.subtick.subtitle": "Parallel?", - "quests.gregtech_energy.subtick.desc.1": "&6Another hidden mechanic in Gregtech Multiblocks: the &dSubtick&r.\n\nWhat is it?\nSubtick activates when a recipe becomes &eso fast it takes less than one tick&r to process. Normally, machines can’t go faster than one recipe per tick — but with Subtick, they can!\n\n&bHow does it work?&r\nOnce a recipe hits 1 tick duration, upgrading the Energy Hatch further won’t make it faster.\nBut thanks to Subtick, instead of wasting power, the machine will &aparallel the recipe internally&r.", + "quests.gregtech_energy.subtick.desc.1": "&6Another hidden mechanic in GregTech Multiblocks: the &dSubtick&r.\n\nWhat is it?\nSubtick activates when a recipe becomes &eso fast it takes less than one tick&r to process. Normally, machines can’t go faster than one recipe per tick — but with Subtick, they can!\n\n&bHow does it work?&r\nOnce a recipe hits 1 tick duration, upgrading the Energy Hatch further won’t make it faster.\nBut thanks to Subtick, instead of wasting power, the machine will &aparallel the recipe internally&r.", "quests.gregtech_energy.subtick.desc.2": "For example: If your &aLCR (Large Chemical Reactor)&r runs a LuV recipe at 1 tick, then at ZPM, it will run &e2 recipes per tick&r. Even faster hatches mean &emore internal parallel&r.\n\n&dNote&r: As of now all the Large Machines can subtick in a limited way but only the &aLCR supports Subtick&r and &bPerfect Overclocking&r. That’s why the LCR doesn’t need a Parallel Hatch: it’s already doing it... but better.", "quests.gregtech_energy.parallel_hatch.title": "Parallel Hatch", "quests.gregtech_energy.parallel_hatch.subtitle": "Parallel again?", @@ -1015,21 +1081,21 @@ "quests.high_voltage.energium_crystals.subtitle": "Science-fiction batteries!", "quests.high_voltage.energium_crystals.desc": "&aEnergium Crystals&r store a significant amount of &9EU&r. They're also arguably cheaper.", "quests.high_voltage.autoclave.title": "HV Autoclave", - "quests.high_voltage.autoclave.subtitle": "Never underestimate this one", + "quests.high_voltage.autoclave.subtitle": "Home-grown batteries", "quests.high_voltage.autoclave.desc": "The &3HV Autoclave&r - despite being optional - is a machine you'll definitively want to grab.\n\nThis unlocks unique Batteries that are &6far superior&r to their standard counterparts.", "quests.high_voltage.chem_bath.title": "High Voltage Bathing", - "quests.high_voltage.chem_bath.subtitle": "Please don't bathe with electronics...", + "quests.high_voltage.chem_bath.subtitle": "Please don't bathe with your toaster...", "quests.high_voltage.chem_bath.desc": "The &3HV Chemical Bath&r is used to &ddye Lenses&r using &aChemical Dye&r. This will let you engrave more types of Wafers, and cool other kinds of Hot Ingots.", "quests.high_voltage.maintenance_hatches.title": "Advanced Maintenance", "quests.high_voltage.maintenance_hatches.subtitle": "I have become maintenance, eater of tape", - "quests.high_voltage.maintenance_hatches.desc.1": "You now have access to two &3new Maintenance Hatches&r. Both hatches &6do not require Maintenance&r when first placed in a Multiblock.\n\nThe &3Automatic Maintenance Hatch&r is pretty simple - it eliminates the need for Maintenance, &6forever&r.\n\nThe &3Configurable Maintenance Hatch&r is more interesting. You can configure it to cut off &a10% duration&r on recipes, at the cost of making Maintenance happen three times as fast. That is &d16 real hours&r of activity.\n\n&9Reminder:&r You can put Tape in the maintenance Hatch to automatically fix problems.", + "quests.high_voltage.maintenance_hatches.desc.1": "You now have access to two &3new Maintenance Hatches&r. Both hatches &6do not require Maintenance&r when first placed in a Multiblock.\n\nThe &3Automatic Maintenance Hatch&r is pretty simple - it eliminates the need for Maintenance, &6forever&r.\n\nThe &3Configurable Maintenance Hatch&r is more interesting. You can configure it to cut off &a10%% duration&r on recipes, at the cost of making Maintenance happen three times as fast. That is &d16 real hours&r of activity.\n\n&9Reminder:&r You can put Tape in the maintenance Hatch to automatically fix problems.", "quests.high_voltage.maintenance_hatches.desc.2": "&l&3Lore:&r&o The Automatic Maintenance Hatch texture and mechanic comes from TecTech, an addon mod originally made for GregTech: New Horizons.\n\n&oYou'll see more from TecTech if you stick with us with the late game.", "quests.high_voltage.hv_components.title": "High Voltage Components", "quests.high_voltage.hv_components.subtitle": "We call this \"fun\"", - "quests.high_voltage.hv_components.desc.1": "Just like &bMV&r, you'll need to make higher-tier components.\n\nThe painful &dFlawless Gems&r have been replaced with slightly-more-painful &dVitrified Ender Pearls&r. Also notice that the &aMotors&r require &d2x Silver Cables&r.\n&aHulls&r and &aMachines&r use &dGold Cables&r.\n\nNow you can finally start using up that stockpile of Gold!", - "quests.high_voltage.hv_components.desc.2": "&9&lTips to make life less painful:&r\n\n- Consider using &dElectrotine decomposition&r and &dOre Processing&r for &eElectrum&r.\n- Consider using the &3Chemical Bath&r with &dMercury&r for &eGold&r and &eSilver&r from a wide variety of ores.", + "quests.high_voltage.hv_components.desc.1": "Just like &bMV&r, you'll need to make higher-tier components.\n\nThe painful &dFlawless Gems&r have been replaced with slightly-more-painful &dVitrified Ender Pearls&r. Also notice that the &aMotors&r require &d2x Silver Cables&r.\n&aHulls&r and &aMachines&r use &dGold Cables&r.\n\nFinally, a use for that stockpile of Gold!", + "quests.high_voltage.hv_components.desc.2": "&9&lTips to make life less painful:&r\n\n- Use &dElectrotine decomposition&r and &dOre Processing&r for &eElectrum&r.\n- Use the &3Chemical Bath&r with &dMercury&r for &eGold&r and &eSilver&r from a wide variety of ores.", "quests.high_voltage.assembler.title": "HV Assembling Machine", - "quests.high_voltage.assembler.desc": "The &3HV Assembler&r is the next step in progression, but also unlocks a handful of useful utilities - check around this quest for more.\\n\\nYou will need this &6HV Assembler&r to make your &dRocket&r.", + "quests.high_voltage.assembler.desc": "The &3HV Assembler&r is the next step in progression, but also unlocks a handful of useful utilities - check around this quest for more.\n\nYou will need this &6HV Assembler&r to make your &dRocket&r.", "quests.high_voltage.lenses.title": "I see the world in colour", "quests.high_voltage.lenses.desc": "The &aSimple System on Chip&r will be used for the best &dULV Circuit&r recipe.\n\nWe'd also recommend going out of your way to make all the other useful colored Lenses ahead of time. They are listed here in an &eoptional&r task.", "quests.high_voltage.ulv_circuits.title": "Best ULV circuits!", @@ -1041,12 +1107,11 @@ "quests.high_voltage.chem_reactor.desc": "The &3HV Chemical Reactor&r unlocks a ton of new recipes. Ah, who doesn't love the ever-growing demand on more advanced Chemistry?\n\n&9Note:&r We've actually unlocked a ton of new content by reaching &6HV&r. However, not every processing line or item is crucial right now. It'd make the &6HV&r chapter far too dense if we included everything!\n\nYou could still check out the &5EV&r Chapter if you want to push yourself.", "quests.high_voltage.rutile_loop.title": "Almost Titanium", "quests.high_voltage.rutile_loop.subtitle": "...means it WASN'T Titanium!", - "quests.high_voltage.rutile_loop.desc.1": "Titanium requires a slightly more &binvolved&r process than the previous materials to process. To get started, you'll need &aRutile&r, which can be obtained by processing &aBauxite&r, &aIlmenite&r and &aAluminium&r.\n\nOnce you've gotten enough &5Rutile&r, your journey to &6Titanium&r continues in the next quest. There's no need to rush things.", - "quests.high_voltage.rutile_loop.desc.2": "You may have already noticed that Bauxite is also an &6excellent source of Aluminium&r.\n\nVisiting &dThe Moon&r allows you to access a richer Bauxite vein, as well as &dArmalcolite&r - an even better source of Rutile.\n\n&9Tip:&r Ore processing for &aBauxite&r is ridiculously good! Including the &3Thermal Centrifuge&r step easily &6triples&r your &aRutile&r yield.", + "quests.high_voltage.rutile_loop.desc": "Titanium requires a slightly more &binvolved&r process than the previous materials to process. To get started, you'll need &aRutile&r, which can be obtained by processing &aBauxite&r, &aIlmenite&r, &aAluminium&r, &aArmalcolite&r and &aDesh&r, which can only be found on &dThe Moon&r.\n\nOnce you've gotten enough &5Rutile&r, your journey to &6Titanium&r continues in the next quest. There's no need to rush things.\n\n&9Tip:&r Ore processing for &aBauxite&r is ridiculously good! Including the &3Thermal Centrifuge&r step easily &6triples&r your &aRutile&r yield.", "quests.high_voltage.rutile_loop_2.title": "Almost Titanium²", "quests.high_voltage.rutile_loop_2.subtitle": "Is it titanium yet?", "quests.high_voltage.rutile_loop_2.desc.1": "To get your grubby hands on some Titanium, &aRutile&r must first be reduced to &aTitanium Tetrachloride&r in an &3HV Chemical Reactor&r, then reduced again in an &3EBF&r with &dMagnesium&r to finally arrive at Titanium.\n\nThe &dCarbon&r, &dChlorine&r, &dOxygen&r, and &dMagnesium&r used in the process can be &6perfectly recovered&r from the byproduct &dCarbon Monoxide&r and &dMagnesium Chloride&r with no loss. If you set up a system to recover them, &athe only material&r that you'll need to provide for Titanium is &dRutile&r!", - "quests.high_voltage.rutile_loop_2.desc.2": "&aTitanium Tetrachloride&r also acts as a catalyst in the production of plastics. A touch of &aTiCl₄&r in the polymerisation process can increase the polymer yield to &6133%&r&r. Naturally, this is completely optional.", + "quests.high_voltage.rutile_loop_2.desc.2": "&aTitanium Tetrachloride&r also acts as a catalyst in the production of plastics. A touch of &aTiCl₄&r in the polymerisation process can increase the polymer yield to &6133%%&r&r. Naturally, this is completely optional.", "quests.high_voltage.superconductors.title": "HV Superconductors", "quests.high_voltage.superconductors.desc": "By this point, normal Cables have such insignificant loss that superconductors aren't a requirement. That being said, they're still useful for being able to split and combine cables on the fly, and these ones are half oxygen so they're cheap too!\n\nSuperconductors are still required to craft &aField Generators&r.", "quests.high_voltage.nichrome_coils.title": "Nichrome Coils", @@ -1054,7 +1119,7 @@ "quests.high_voltage.nichrome_coils.desc.1": "&3Nichrome Heating Coils&r increase the temperature of your &3Blast Furnace&r to &d3,600K&r.\n\nDespite not being required &oyet&r, it still is a good idea to upgrade your primary &3EBF&r for those sweet, sweet &6Coil bonuses&r.", "quests.high_voltage.nichrome_coils.desc.2": "&l&3Lore:&r&o In the original GregTech 5, there were only three types of coils. This was the last tier.", "quests.high_voltage.titanium.title": "Titanium", - "quests.high_voltage.titanium.desc": "&aTitanium&r has the highest corrosion resistance and strength-to-density ratio of any metallic element, so it's only natural that we'll be using it as the main material in our &5EV&r machinery.\n\nConfirm that your closed loop for &aRutile&r is up to standard, and prepare to run a dedicated &3EBF&r for hours.\n\nA quick aside - now we're at &5EV&r, single block generators are about to fall out of style! You'll need to run several &3HV Generators&r to keep up - later, upgrades to Multiblock Generators will be required.\n\nWhile Multiblock generators are much more expensive, you'll find them to be much more energy efficient!", + "quests.high_voltage.titanium.desc": "&aTitanium&r has the highest corrosion resistance and strength-to-density ratio of any metallic element, so it's only natural that we'll be using it as the main material in our &5EV&r machinery.\n\nConfirm that your closed loop for &aRutile&r is up to standard, and prepare to run a dedicated &3EBF&r for hours.\n\nA quick aside - now we're at &5EV&r, single block generators are about to fall out of style! You'll need to run several &3HV Generators&r to keep up - later, upgrades to Multiblock Generators will be required.\n\nWhile Multiblock generators are much more expensive, you'll find them to be much more energy efficient! Have a look at the &dEnergy Chapter&r for more infos!", "quests.high_voltage.vacuum_freezer.title": "Ice Cold", "quests.high_voltage.vacuum_freezer.subtitle": "Did you know vacuums actually make things hotter?", "quests.high_voltage.vacuum_freezer.desc": "The &3Vacuum Freezer&r is a multiblock used to cool down &eHot Ingots&r. All ingots made in the EBF with a temperature above &d1750K&r will need it.\n\nMost of the time, your &3Electric Blast Furnace&r will be the bottleneck, so you don't need to worry about overclocking your freezer.\n\nSince &eHot Ingots&r &churt you&r when held, item routing will be very useful.", @@ -1067,10 +1132,10 @@ "quests.high_voltage.cleanroom.title": "The Cleanroom", "quests.high_voltage.cleanroom.subtitle": "They put me in a room... a clean room", "quests.high_voltage.cleanroom.desc.1": "The &3Cleanroom&r is a hollow multiblock free of contaminants. Going forward, most new âuit-related recipes&r, as well as some unique blocks like &3Fusion Casings&r, will need to be run in machines inside a Cleanroom.\n\nCreating it will put your &aPolyethylene&r automation to the test for all the &dPlascrete&r and/or &dCleanroom Glass&r you will make.\n\nWe'll start you off with a 5x5x5 Cleanroom, but you should upgrade its size when you start feeling cramped.", - "quests.high_voltage.cleanroom.desc.2": "&l&3Lore:&r&o The Cleanroom comes from GregTech 5, but as is often the case, the GT5 implementation is much more punishing. The recipes would run without regard to cleanliness, but had a % chance of completion equal to the cleanliness of the Cleanroom. This caused a lot of accidental voiding.\n\n&oFurthermore, if the Cleanroom had a maintenance issue, the cleanliness would cap out at 90%, which means 10% of items would be voided.\n\n&oThe GTCEu Cleanroom will &6never void&f recipe outputs.", + "quests.high_voltage.cleanroom.desc.2": "&l&3Lore:&r&o The Cleanroom comes from GregTech 5, but as is often the case, the GT5 implementation is much more punishing. The recipes would run without regard to cleanliness, but had a %% chance of completion equal to the cleanliness of the Cleanroom. This caused a lot of accidental voiding.\n\n&oFurthermore, if the Cleanroom had a maintenance issue, the cleanliness would cap out at 90%%, which means 10%% of items would be voided.\n\n&oThe GTCEu Cleanroom will &6never void&f recipe outputs.", "quests.high_voltage.prospector.title": "HV Prospector", "quests.high_voltage.prospector.desc.1": "This prospector boasts a &6higher range&r than its &7LV&r counterpart.\n\nSneak right-clicking with the Prospector in your hand will change its mode to &6Fluid Vein Mode&r. This will instead display the base &dyield&r of Fluid veins, along with how full they are.\n\nThis will be really useful to find &9Helium-3&r and &9Bedrock Veins&r on the moon.", - "quests.high_voltage.prospector.desc.2": "&9Reminder:&r The yield of a &3Fluid Drilling Rig&r is directly proportional to the \"fullness\" of the vein. When low enough, the output will default to a yield that can be defined in the CEu config.\n\n&9Tip:&r When the fullness drops below 30% (alright, rough estimate), you should consider moving to another vein for the sake of power-to-yield efficiency. Aiming for the &3Advanced Fluid Drilling Rig&r in &5EV&r may interest you, as not only does it significantly boost the output, but it also reduces the rate at which it drains the vein!\n\n&cCaution:&r Due to a bug, the Prospector display may be offset by one chunk, so avoid placing your Rig in the corners of a fluid vein, or you may end up pumping the wrong fluid!", + "quests.high_voltage.prospector.desc.2": "&9Reminder:&r The yield of a &3Fluid Drilling Rig&r is directly proportional to the \"fullness\" of the vein. When low enough, the output will default to a yield that can be defined in the CEu config.\n\n&9Tip:&r When the fullness drops below 30%% (alright, rough estimate), you should consider moving to another vein for the sake of power-to-yield efficiency. Aiming for the &3Advanced Fluid Drilling Rig&r in &5EV&r may interest you, as not only does it significantly boost the output, but it also reduces the rate at which it drains the vein!\n\n&cCaution:&r Due to a bug, the Prospector display may be offset by one chunk, so avoid placing your Rig in the corners of a fluid vein, or you may end up pumping the wrong fluid!", "quests.high_voltage.fluorine.title": "Fluorine", "quests.high_voltage.fluorine.subtitle": "Have you brushed your teeth today?", "quests.high_voltage.fluorine.desc": "Fluorine is the rarest gas to obtain from electrolysis in this game.\n\nYou can obtain it from &aLepidolite&r, &aBastnatite&r, and &aMica&r, but the best source is from &aTopaz&r.", @@ -1081,14 +1146,15 @@ "quests.high_voltage.nitrobenzene.desc": "Making &aNitrobenzene&r will boost the energy efficiency of &aBenzene&r roughly &6fourfold&r. You love to see it.\n\nThe catch here is that it takes &dDistilled Water&r, and consumes a bit of &dSulfur&r with every step.", "quests.high_voltage.lcr.title": "Large Chemical Reactor", "quests.high_voltage.lcr.desc.1": "The &3Large Chemical Reactor (LCR)&r is a multiblock &3Chemical Reactor&r with more input/output slots. Its Teflon casings allow it to process extra recipes.\n\nThe &3LCR&r can perform some exclusive reactions which allow you to combine multiple normal &3Chemical Reactor&r steps into a &6single step&r. Examples below:\n\n&9-&r &aNitrogen Dioxide&r (for Nitric Acid and Dinitrogen Tetroxide)\n&9-&r &aSulfuric Acid&r\n&9-&r &aPhenol&r\n&9-&r &aEpichlorohydrin&r (you need it for Epoxy!)\n&9-&r &aEpoxy&r", - "quests.high_voltage.lcr.desc.2": "There are also &3LCR&r exclusive recipes. For example, &dRadon&r can only be made in the LCR right now.\n\nAll &dOverclocks&r in the &3LCR&r are &6100% efficient&r (known as Perfect overclocks); each overclock will &5quadruple the speed&r, as opposed to doubling it.\n\nThe &3LCR&r has yet another &6advantage&r. You can use &32 Energy Hatches&r to allow it to run recipes of the &5next tier&r, similar to the &3Electric Blast Furnace&r.", + "quests.high_voltage.lcr.desc.2": "There are also &3LCR&r exclusive recipes. For example, &dRadon&r can only be made in the LCR right now.\n\nAll &dOverclocks&r in the &3LCR&r are &6100%% efficient&r (known as Perfect overclocks); each overclock will &5quadruple the speed&r, as opposed to doubling it.\n\nThe &3LCR&r has yet another &6advantage&r. You can use &32 Energy Hatches&r to allow it to run recipes of the &5next tier&r, similar to the &3Electric Blast Furnace&r.", "quests.high_voltage.lcr.desc.3": "&9Tip:&r Given the amount of LCRs you may end up using, why not try utilising &dwallsharing&r to its full potential?\n\nYou could share one 2A (standard) &3Energy Hatch&r between 2 LCRs.\n\nYou might want to share &3Input/Output Hatches&r, but make sure each LCR is running the correct recipe.\n\nKeep in mind Maintenance hatches are not sharable.", "quests.high_voltage.tnt.title": "TNT", - "quests.high_voltage.tnt.desc.1": "&cTNT&r (Trinitrotoluene) can't be prepared with the usual Gunpowder and Sand anymore. Instead, you'll have to produce &aGelled Toluene&r and react it with Sulfuric Acid to make TNT.\n\nUsing the &3HV Chemical Reactor&r recipe will double the yield of &aGelled Toluene&r at the cost of requiring additional inputs.", - "quests.high_voltage.tnt.desc.2": "We don't have any easy tips to give you for &aToluene&r. It's going to be tricky no matter which route you take.\n\nThat being said, don't miss out on the direct &aHeavy Fuel&r to &aToluene&r recipe in the single block &3Distillery&r.\n\n&aToluene&r can also optionally be used in &5EV&r to make &dGasoline&r.\n\n&cTNT&r is used in the &3Implosion Compressor&r to make Gems. It also blows stuff up.", + "quests.high_voltage.tnt.desc.1": "Get ready to make some explosives, as they will be required for the &cImplosion Compressor&r. You have four options, from easy to hardest, but we advise you to work towards the &dIndustrial TNT&r whenever you can.", + "quests.high_voltage.tnt.desc.2": "&cTNT&r (Trinitrotoluene) can't be prepared with the usual Gunpowder and Sand anymore. Instead, you'll have to produce &aGelled Toluene&r and react it with Sulfuric Acid to make TNT.\n\nUsing the &3HV Chemical Reactor&r recipe will double the yield of &aGelled Toluene&r at the cost of requiring additional inputs.", + "quests.high_voltage.tnt.desc.3": "We don't have any easy tips to give you for &aToluene&r. It's going to be tricky no matter which route you take.\n\nThat being said, don't miss out on the direct &aHeavy Fuel&r to &aToluene&r recipe in the single block &3Distillery&r.\n\n&aToluene&r can also optionally be used in &5EV&r to make &dGasoline&r.\n\n&cTNT&r is used in the &3Implosion Compressor&r to make Gems. It also blows stuff up.", "quests.high_voltage.ender_pearls.title": "Ender Pearls", "quests.high_voltage.ender_pearls.subtitle": "Sci-fi gemstones, or something", - "quests.high_voltage.ender_pearls.desc": "You won’t find any Endermen dropping Ender Pearls in TFG.\\nEven the ones lurking in the Beneath won’t help you there.\n\nInstead, your only option for now is to craft them yourself:\n\nCombine &2Beryllium Dust&r and &2Potassium Dust&r in a &6HV&r Mixer to create the elusive &5Ender Dust&r.\n\nOnce that’s done, throw it into an &8Implosion Compressor&r and recreate the iconic Ender Pearl — Gregtech style.", + "quests.high_voltage.ender_pearls.desc": "You won't find any Endermen dropping Ender Pearls in TFG.\nEven the ones lurking in the Beneath won’t help you there.\n\nInstead, your only option for now is to craft them yourself:\n\nCombine &2Beryllium Dust&r and &2Potassium Dust&r in a &6HV&r Mixer to create the elusive &5Ender Dust&r.\n\nOnce that's done, throw it into an &8Implosion Compressor&r and recreate the iconic Ender Pearl — GregTech style.", "quests.high_voltage.boules.title": "Phosphorus Boules", "quests.high_voltage.boules.subtitle": "That's dope, bro!", "quests.high_voltage.boules.desc": "Doping is the process of intentionally introducing impurities into semiconductors to alter their properties.\n\n&7Silicon&r can be doped with small amounts of &ePhosphorus&r to make a better &eSilicon Boule&r.\n\nPhosphorus-doped Silicon Boules typically yield &68 times&r more wafers than their non-doped counterparts. However, they are not strictly needed until &5EV&r, where they'll be used in more complex wafers.\n\n&9Note&r: All processing of Phosphorus Boules and Wafers will require a &dCleanroom&r.", @@ -1100,7 +1166,7 @@ "quests.high_voltage.nitric_acid.desc.2": "There are two main ways to make &aNitric Acid&r - &othe &agood&f way and the &4bad&f ways!&r\n\nTherefore, we'll point you towards the best method:\n\nGet a &3Large Chemical Reactor&r and use it to make &aNitrogen Dioxide&r. From there, react it in a regular &3Chemical Reactor&r with more &dOxygen&r and &dWater&r and you got yourself some &aNitric Acid&r!\n\nThis requires a lot of &dOxygen&r. Refer to its own Quest in &7LV&r for the most efficient ways to obtain in large amount. Notice that this is Hydrogen free!", "quests.high_voltage.cetane_diesel.title": "Cetane-boosted Diesel", "quests.high_voltage.cetane_diesel.subtitle": "This is to go further beyond", - "quests.high_voltage.cetane_diesel.desc": "&aCetane-Boosted Diesel&r is &650% more energy dense&r than regular &aDiesel&r, and only requires 1 part &dTetranitromethane (TNM)&r for every 50 parts &aDiesel&r. What a steal, right?\n\nThe catch comes in the complexity of making &dTNM&r. In order to concoct it, you must react &aNitric Acid&r with either &dEthenone&r or &aMethyl Acetate&r, both of which have quite an involved process themselves!", + "quests.high_voltage.cetane_diesel.desc": "Now that you unlocked the &6HV&r Mixer and have access to &eNitric Acid&r, it becomes possible to make &aCetane Boosted Diesel&r, granting a &e180%%&r increase in potency.\n\nThe only tricky part is obtaining &bTetranitromethane&r. We recommend producing it by mixing &9Nitric Acid&r and &dEthenone&r. Ethenone itself isn’t hard to make if you combine &9Sulfuric Acid&r - which you should have plenty of by now - and &cAcetic Acid&r, easily produced from &3Oxygen&r and &5Ethylene&r.\n\n&cDon’t forget&r to set your machine on Circuit 2, or else you’ll end up producing &6Polyethylene&r instead!", "quests.high_voltage.smd_components.title": "SMD Components", "quests.high_voltage.smd_components.subtitle": "Alternate components!", "quests.high_voltage.smd_components.desc": "The &eSMD&r (surface-mount device) &aComponents&r are CEu-exclusive components that are required for the next tier of circuits (&5Nano&r). They can also be used in place of their non-SMD counterparts in most Circuit recipes.\n\nOf course they're more complicated to make, this is GregTech! What did you expect?\n\nInvest in automation for these - you won't stop needing them.", @@ -1108,7 +1174,7 @@ "quests.high_voltage.smd_components_2.desc": "&aPlatinum&r (needed for SMD Diodes) has its own dedicated Quest in the &5EV&r tab. But you could also get Platinium directly from Platinium vein or Chemical Washer processing.\n\n&l&3Lore:&r&o The SMD Inductors make an appearance in GTCEu for the first time. It's more consistent and convenient to have all Circuit components receive an SMD counterpart.", "quests.high_voltage.hv_macerator.title": "Universal Macerator", "quests.high_voltage.hv_macerator.subtitle": "Shredding your Ores with byproducts", - "quests.high_voltage.hv_macerator.desc.1": "The &3HV Macerator&r finally unlocks more of the slots shown in JEI. With this, the first &9three&r slots are now available. This allows you to receive the &6unique ore Byproduct&r from macerating &dThermal &dCentrifuged Ore&r.\n\nMacerating Ores costs &a32 EU/t&r with &5two overclocks&r, which makes this machine able to fit in &7LV&r lines - very, very convenient.\n\nDespite the signicant improvements this machine provides, it still isn't completely worth it to set up advanced processing for every single ore. Energy and time are still things to consider, so only process the ores that produce &6Byproducts&r you care for.", + "quests.high_voltage.hv_macerator.desc.1": "The &3HV Macerator&r finally unlocks more of the slots shown in JEI. With this, &9all&r of the slots are now available. This also allows you to receive the &6unique ore Byproduct&r from macerating &dThermal &dCentrifuged Ore&r.\n\nMacerating Ores costs &a32 EU/t&r with &5two overclocks&r, which makes this machine able to fit in &7LV&r lines - very, very convenient.\n\nDespite the signicant improvements this machine provides, it still isn't completely worth it to set up advanced processing for every single ore. Energy and time are still things to consider!", "quests.high_voltage.hv_macerator.desc.2": "&l&3Lore:&r&o In GregTech 5u, the &6HV&r&o Macerator only gave two slots. Urgh... we weren't planning on using that Stone Dust, anyway...", "quests.high_voltage.ammonia.title": "Ammonia", "quests.high_voltage.ammonia.desc": "&aAmmonia&r is &doptional&r in &6HV&r.\n\nYou may use it in the production of:\n&9-&r Nitric Acid, although we don't recommend this.\n&9-&r Rocket Fuel, required to leave this planet.\n&9-&r Polybenzimidazole (now THAT'S a tongue twister!) in &1IV&r.\n\nThe \"least painful\" recipe should be the one in the &3HV Chemical Reactor&r. Make sure your &aHydrogen&r production (mostly from &aWater electrolysis&r) is enough to support the demand.\n\nYou could also obtain &aAmmonia&r as a waste product from &dPlatinum Group Sludge&r processing.", @@ -1128,16 +1194,53 @@ "quests.high_voltage.hv_hull.desc.3": "To reach the Moon:\n- Craft a generous amount of &6Rocket Alloy&r\n- Create your first &eEnder Eye&r using the &3Chemical Bath&r and the &8Implosion Compressor&r\n- Prepare all the &bequipment&r you'll need to &bbreathe in space&r\n\nGetting the &bVacuum Freezer&r and &6better coils&r will speed up &6Rocket Alloy&r production, but they’re not mandatory.\n\n&dChoose your path!&r", "quests.high_voltage.nichrome.title": "Nichrome Ingots", "quests.high_voltage.nichrome.subtitle": "It doesn't have much use", - "quests.high_voltage.nichrome.desc": "Your third alloy is here — and it's essential for your next set of coils in the &6EBF&r.\nThis time, you’ll notice that you can’t use a &6Chemical Washer&r. Instead, you're required to use a &6Vacuum Chamber&r.\n\nGood news: it’s actually simpler and faster.\n\nYou’ll only be using &6Nichrome&r for these coils, but don’t get too comfortable — it will return later for the next set of &5RTM Coils&r.", + "quests.high_voltage.nichrome.desc": "Your third alloy is here — and it's essential for your next set of coils in the &6EBF&r.\nThis time, you’ll notice that you can’t use a &6Chemical Washer&r. Instead, you're required to use a &6Vacuum Freezer&r.\n\nGood news: it’s actually simpler and faster.\n\nYou’ll only be using &6Nichrome&r for these coils, but don’t get too comfortable — it will return later for the next set of &5RTM Coils&r.", "quests.high_voltage.rocket_t1.title": "Your First Rocket!", "quests.high_voltage.rocket_t1.subtitle": "The first of many", - "quests.high_voltage.rocket_t1.desc": "Wow, it's time to build your &6Rocket&r!\n\nAssemble all the parts with &d8 Dense Rocket Alloy&r. To finish the insulation, you'll need &b576mb&r of &bLiquid Silicon&r (&b4 ingots&r) and &f16 pieces of dust&r.\n\nYou have two choices:\n&e-&r &eBorosilicate Glass Dust&r — crafted in a &6Mixer&r with &dBoron&r and &fGlass Dust&r\n\n&e-&r &5Vitrified Asbestos&r — obtained through a &6Pyrolysis Oven&r\n\nGo with the one you have available!", + "quests.high_voltage.rocket_t1.desc": "Wow, it's time to build your &6Rocket&r!\n\nAssemble all the parts with &d8 Dense Rocket Alloy&r. To finish the insulation, you'll need &b2304mb&r of &bLiquid Silicon&r (&b16 ingots&r) and &f16 pieces of dust&r.\n\nYou have two choices:\n&e-&r &eBorosilicate Glass Dust&r — crafted in a &6Mixer&r with &dBoron&r and &fGlass Dust&r\n\n&e-&r &5Vitrified Asbestos&r — obtained through a &6Pyrolysis Oven&r\n\nGo with whichever's easiest for you!", "quests.high_voltage.vitrified_pearl.title": "Vitrified Ender Pearl", "quests.high_voltage.vitrified_pearl.subtitle": "An Exotic Ceramic", "quests.high_voltage.vitrified_pearl.desc": "Heat the Ender Pearl in a &ePyrolyse Oven&r along with some appropriate insulation to properly vitrify it into something resembling a &3ceramic&r.\n\nYou won’t need many of these for now — at minimum, just one for your &6Rocket&r and another for your &6HV Circuit Assembler&r.\nBut be warned: from &5EV&r and beyond, the demand will rise quickly.", "quests.high_voltage.kaolinite_powder.title": "High-Temperature Refractory Fire Clay", "quests.high_voltage.kaolinite_powder.subtitle": "You didn't miss me, right?", "quests.high_voltage.kaolinite_powder.desc": "So the bad news is you've got an upcoming reunion with an old friend. The good news is the reunion is at your own house!\n\nIf you've got any &4kaolinite&r left over from forever ago, time to dig it out of your old forge building and put it to use. And if you don't, well, now you can just make it at home!\n\nKaolinite will be used again in some upcoming recipes for industrial ceramics and heat shielding.", + "quests.high_voltage.linked_quest_energy.title": "More information about energy", + "quests.high_voltage.linked_quest_energy.subtitle": "GregTech Wiki", + "quests.high_voltage.linked_quest_energy.desc": "Still stuck using steam? Want to learn more about GregTech's energy system? Make sure you've look at the GregTech Energy quest chapter!", + "quests.high_voltage.linked_quest_energy.task": "Have a look at the Energy Chapter", + "quests.high_voltage.ev_machine_hull.title": "&5EV&r Machine Hull", + "quests.high_voltage.ev_machine_hull.subtitle": "That's half of the GregTech tiers done", + "quests.high_voltage.ev_machine_hull.desc": "Well, that was quite the experience! Between the &9Rutile Processing&r line, the &5Vacuum Chamber&r, and the &5Cleanroom&r, you’ve uncovered a lot of new mechanics. \n\nThat’s great — because this is probably only the halfway point of the modpack.\n\nDid you walk on the &fMoon&r yet? If not, we strongly encourage you to go. You’ll encounter &dessential mechanics&r for later stages of the modpack and unlock &bAE2&r, all while gaining access to &aricher ore veins&r.\n\nIf you’ve already made your lunar journey, then we hope your infrastructure is solid — because it’s time to enter &5EV&r. This complex chapter will introduce &7even more advanced systems&r and take your factory to the next level.", + "quests.high_voltage.250_iq.title": "250IQ", + "quests.high_voltage.250_iq.subtitle": "Stop burning your hands!", + "quests.high_voltage.250_iq.desc.1": "This is a guide on how to automatically route &lall&r your Hot Ingots to your Chemical Bath, while keeping everything automated in tip-top shape.\n\nThe cheap way would be to use filters, and manually add Hot Ingots one by one... which is so boring! Let's try the fun option.\n\nInstall an &aItem Tag Filter&r Cover on the side of your &3Chemical Bath&r, open it and set it to whitelist -&e&l*hot_ingots*&r-.\n\nFrom here, you can route with &9any logistics system&r of your choice.", + "quests.high_voltage.250_iq.desc.2": "Connect the output of your &3EBF(s)&r to the input of your &3Chemical Bath&r and the output dump (Chest or Crate). You can also have a &dRestrictive Pipe&r in front of the output dump to ensure the Chemical Bath will be prioritized.\n\n&l&9Note:&r If you wish to know more tags for more automation setups, they will display if you press Shift when hovering over an item. For instance, an item tagged with &e&o#forge:plates/copper&r would be filtered as &e&lplates/copper&r.\n\n&9&lOther Note:&r The Item Tag Filter partially supports &dregex&r. Hover over the info icon for more information.", + "quests.high_voltage.bedrock_miner.subtitle": "Unlimited ores?", + "quests.high_voltage.bedrock_miner.desc.1": "This may be the first time you encounter the &cBedrock Ore Miner&r, as it's rarely used in GregTech. \nIt functions similarly to the &bFluid Drilling Rig&r, except the veins it targets will &nnever deplete&r.\n\nIt doesn't consume much energy — running fine at &bMV&r or &6HV&r — and requires &ano input materials&r.\n\nSo, what's the catch?\nFinding the veins.", + "quests.high_voltage.bedrock_miner.desc.2": "You’ll need a &6HV&r Ore Prospector set to &oBedrock Ore Mode&r (&7Shift + Right Click&r), and a fair bit of patience. Once you find your target, you’ll also have to figure out how to bring the resources back to your outpost.\n\nOn the &fMoon&r, you can find your first bedrock ore veins, allowing you to passively obtain several essential elements completely for free, forever. Check JEI to see what's available! The higher the Weight, the more common the vein is.\n\nSince these will be so spread apart, this sounds like a great excuse to build a &7moon train&r!", + "quests.high_voltage.space_alloy.title": "R-Aluminosteel", + "quests.high_voltage.space_alloy.subtitle": "We made this one up", + "quests.high_voltage.space_alloy.desc.1": "To make your first &6Rocket Alloy&r, you will need to put &7Aluminium&r, &7Stainless Steel&r and &cLiquid Red Steel&r into your new &6HV&r Mixer.\n\nThe recipe takes some time, so expect to have your mixer fully dedicated to this step.\n\nAfter that, your dust will need to be smelted in your EBF at &bMV&r. If you already have &6Nichrome Coils&r and your EBF is running at &6HV&r, you will be able to &aPerfect Overclock&r the recipe! (check the GregTech Energy chapter if you don't understand)", + "quests.high_voltage.space_alloy.desc.2": "You can cool the ingots down with a &9Chemical Bath&r or, if you already have one, a &9Vacuum Freezer&r for a shorter processing time.\n\n&7144mb equals 1 ingot&r, so make sure not to extract too much &cRed Steel&r.\n\nYou will need &685 Rocket Alloy&r ingots total, which means:\n- &760 Aluminium&r\n- &720 Stainless Steel&r\n- &710 Red Steel&r\n\n&aNothing too bad!&r", + "quests.high_voltage.steel_engine.subtitle": "Blue Steel is back, baby", + "quests.high_voltage.steel_engine.desc": "The &6Steel Engine&r is required so your rocket can &atravel to the Moon&r.\n\nThe recipe isn't too bad — we assume you're ready to tackle each part.\n\nTo get &91152mb of Liquid Blue Steel&r, you will need &78 ingots&r.", + "quests.high_voltage.rocket_fins.subtitle": "So you reach the right destination", + "quests.high_voltage.rocket_fins.desc": "We made the &6Rocket Fins&r use an &bAlloy Smelter&r simply to remind you that you now have access to the &bMulti-Smelter&r — a wonderful small EBF that can be used both as a &eFurnace&r and an &bAlloy Smelter&r.\n\nThe quest to craft it is in the &bMV&r Chapter. We really advise you to think about it if you haven't yet.", + "quests.high_voltage.rocket_nose_cone.subtitle": "The nose knows...", + "quests.high_voltage.rocket_nose_cone.desc": "The &6Rocket Nose Cone&r is the hardest part of your Rocket.\nYou will need a hefty amount of &aPolyethylene&r — so we hope you already have it passively produced — and a &6HV&r Emitter.\nYou should be able to get your hands on &dChromium&r by electrolyzing &cRuby Dust&r.\n\nThe &aVitrified Ender Pearl&r is trickier and requires you to follow the quest unlocked by the &6HV Chemical Reactor&r.\nGet ready to make &cTNT&r, build an &5Implosion Compressor&r, and recreate the famous Enderman drop — since you won’t find Ender Pearls natively in &2TFG&r.", + "quests.high_voltage.launch_pad.subtitle": "Ready for launch in T-10...", + "quests.high_voltage.launch_pad.desc": "The Launch Pad is &6required&r to launch your Rocket — you can't just place it on any old block!\n\n&cTriple check&r that you bring a &csecond Launch Pad&r with you, as you will need another one for the return trip!", + "quests.high_voltage.rocket_fuel.title": "Rocket Fuel", + "quests.high_voltage.rocket_fuel.subtitle": "Easier than you think", + "quests.high_voltage.rocket_fuel.desc": "For each trip in your rocket, you will need &6three buckets of Rocket Fuel&r. It may look complicated (and to be fair, it does have a lot of steps) but all you need is &bChlorine&r, &bMethane&r, &bNitrogen&r, &bOxygen&r and &bWater&r. Nothing too bad!\n\nIf you already have a &5Large Chemical Reactor&r, you could even skip some steps!\n\nIf you haven't use it yet, this is a good point to check out the &7EMI Recipe Tree&r to have an easier time. Simply click on the small icon with 4 squares on the right of the crafting recipe, then hover over the question mark at the bottom right of your screen for full instructions!", + "quests.high_voltage.space_suit.title": "Space Suit", + "quests.high_voltage.space_suit.subtitle": "This may be the hardest part", + "quests.high_voltage.space_suit.desc.1": "We know you're eager to get going, but you'll need a space suit if you want to live for more than a few seconds on the moon, loaded with a &bbreathable gas&r — and if you want to refill it without taking it off, a &eGas Tank&r.\n\nThe hardest part will definitely be the &dPolycaprolactam Fabric&r (also known as Nylon).\n\nYou will need an EBF and an &6HV&r &eChemical Reactor&r.\n\nFrom there, you'll be able to craft it using &aBenzene&r, &bHydrogen&r, &9Chlorine&r, &bOxygen&r, and &3Ammonia&r.\n\nWe won't tell you every step, but you should be able to figure it out yourself through &aEMI&r now that you're a fierce GregTech player.", + "quests.high_voltage.space_suit.desc.2": "Once everything is ready, simply &eRight-Click&r a drum or tank filled with a breathable gas like &bCompressed Nitrox&r to fill them up, just like a bucket. 1000mB will last you for 20 minutes. Once you've got your space suit on, you can \"drink\" from the Gas Tank to fill up your suit.\n\nYou may also find it helpful to take a peek at the Space Survival quest chapter, in case there's anything else you'd like to bring with you!", + "quests.high_voltage.space_suit.task": "Fill it and drink it", + "quests.high_voltage.welcome_moon.title": "I'm on the &3Moon&r!", + "quests.high_voltage.welcome_moon.subtitle": "Hope you have everything to come back", + "quests.high_voltage.welcome_moon.desc": "&2Congrats&r, you’ve successfully landed on the &7Moon&r!\nHere, you’ll find &bCertus Quartz&r veins and the meteors that allow you to begin unlocking &dAE2&r.\n\nBut that’s not all — some veins here have much higher density than those on Earth.\n\nFor instance, you can easily find &6Ilmenite&r, &7Bauxite&r, &7Aluminium&r, and &5Chromite&r veins on the Moon.\nEstablishing a small base here will be crucial to keep progressing.\n\nYour biggest challenge will be transporting resources, as there are no easy cross-dimensional tools like the &5Ender Chest&r or &dAE2 Quantum Link&r just yet.\n\nWe hope you're well prepared, unless you want to craft a second rocket and space suit just to go collect your corpse!", "quests.low_voltage": "&7LV&r - Low Voltage", "quests.low_voltage.subtitle": "Tame electricity and begin your GregTech journey", "quests.low_voltage.lv_machine_hull.title": "Your second machine hull", @@ -1290,7 +1393,7 @@ "quests.low_voltage.lv_mixer.title": "Basic Mixer", "quests.low_voltage.lv_mixer.subtitle": "The Mixer mixes...", "quests.low_voltage.lv_mixer.desc": "Using the mixer will &6significantly speed up&r the process of making colored steel, especially the &4red steel&r for your machine hulls. Even if you don't think you need it now, you'll find it &6essential&r later on.", - "quests.low_voltage.lv_mixer.task": "From Create or Gregtech", + "quests.low_voltage.lv_mixer.task": "From Create or GregTech", "quests.low_voltage.soldering_alloy.title": "Soldering Alloy", "quests.low_voltage.soldering_alloy.subtitle": "I got soul but I'm not a solder", "quests.low_voltage.soldering_alloy.desc": "&aSoldering Alloy&r is used solely as a &9Fluid&r, and in most cases is &dinterchangeable&r in circuit recipes as a cheaper alternative to Tin&r.\n\nThe choice is yours. Save more materials? Make Soldering Alloy. Spend less time crafting materials? Tin is the way to go.", @@ -1365,16 +1468,19 @@ "quests.low_voltage.mold_plate.title": "Casting Mold and Rubber Sheets", "quests.low_voltage.mold_plate.subtitle": "Even cheaper rubber", "quests.low_voltage.mold_plate.desc": "Stop wasting your time with your &6Alloy Smelter&r. You're gonna need a lot of &6Rubber Sheets&r, and later on you will also use it for other kinds of plastics.\n\nYou may think you can use the Extruder to make rubber sheets instead, but the &6Fluid Solidifier&r can do so much more, while the Extruder is pretty useless until &bMV&r.", + "quests.low_voltage.cupronickel_ingot.title": "Cupronickel Ingots", + "quests.low_voltage.cupronickel_ingot.subtitle": "It's an alloy", + "quests.low_voltage.cupronickel_ingot.desc": "&7A big part of progression in GregTech revolves around gaining access to new materials\nthat you'll use to upgrade your machines or unlock advanced components.&r\n\nThe first alloy you'll encounter is &bCupronickel&r — the beginning of a long journey.\nThis material is used to upgrade your &6Electric Blast Furnace&r, an essential step in your industrial growth.\n\nLuckily, this first step is fairly simple: a basic &7LV Alloy Smelter&r will get the job done.\nSo even if the recipe asks for &b128 Cupronickel&r, don't worry — it's easier than it looks!&r\n\nLater on, their counterparts will become much more complex, so enjoy the simplicity while it lasts!", "quests.low_voltage.cupronickel_coil.title": "Cupronickel Coils", "quests.low_voltage.cupronickel_coil.subtitle": "Baby's first heating coil", - "quests.low_voltage.cupronickel_coil.desc": "Prepare &a128 Cupronickel&r, &a32 Bronze&r and &a16 Tin Alloy&r to craft the Heating Coils required for your first Electric Blast Furnace.\n\nThis is still less than half (!) of the cost of the whole EBF in raw materials. You will also need about a stack each of Invar and Steel, so get mining.\n\nThe Cupronickel Coils will allow the EBF to perform recipes up to &d1,800K&r (ignoring Voltage bonuses). That's pretty hot if you ask us.\n\n&6This quest unlocks a new tutorial on Coils in the &lTips and Tricks&r&6 tab - check it out to learn more!&r", + "quests.low_voltage.cupronickel_coil.desc": "Prepare &a128 Cupronickel&r, &a32 Bronze&r and &a16 Tin Alloy&r to craft the Heating Coils required for your first Electric Blast Furnace.\n\nThis is still less than half (!) of the cost of the whole EBF in raw materials. You will also need about a stack each of Invar and Steel, so get mining.\n\nThe Cupronickel Coils will allow the EBF to perform recipes up to &d1,800K&r (ignoring Voltage bonuses). That's pretty hot if you ask us.\n\n&6Tutorial on Coils in the &lGregTech Energy&r&6 tab - check it out to learn more!&r", "quests.low_voltage.lv_ebf.title": "The Electric Blast Furnace", - "quests.low_voltage.lv_ebf.subtitle": "One of the core machines of Gregtech. We like it big.", + "quests.low_voltage.lv_ebf.subtitle": "One of the core machines of GregTech. We like it big.", "quests.low_voltage.lv_ebf.desc.1": "This quest explains the core mechanic of the &3Electric Blast Furnace&r, while the quest just over this one will explain the mechanics of the Multiblock Parts that you'll also need. Be sure to check this quest out.\n\nAnyway, the &3EBF&r is your &efirst electric multiblock&r! Congrats. It's used to process materials at high temperatures.\n\nYou'll become familiar with the EBF to make &aAluminium&r and progress to &d&bMV Age&r. It can also make &7Steel&r faster than the the &6Blast Furnace&r, which means you can finally tear down your old TFC smithy if you'd like.", "quests.low_voltage.lv_ebf.desc.2": "It's important to keep in mind that the EBF is a beefy boy. The minimum power cost to run a recipe is &9120 EU/t&r! That's slightly under 4 &7LV&r Generators or Alternators.\n\nYou may wish to consider building a separate power line, with separate Generators close to the EBF and Battery Buffer to run this. Be wary of the cable loss.", "quests.low_voltage.multiblock_tech.title": "Multiblock Techniques", "quests.low_voltage.multiblock_tech.subtitle": "Oh we love multiblocks right?", - "quests.low_voltage.multiblock_tech.desc": "This is the &6basics&r of what you need to build your first &bEBF&r, though it is highly customisable. Remember to use &6EMI&r, use &6U&r on the controller and don't hesitate to &6left click on the structure blocks&r to see what the possibilities are.\n\nAn important notice, each Energy Hatch can accept &a2A&r, which means that at &7LV&r they can each handle &a64 EU/t&r. With two of them, your &eEBF&r can run at &a128 EU/t&r.\n\n For more details about this mechanic, refer to the &eEnergy Chapter&r, specifically the &eSpending Energy&r section.\n\nMultiblocks bear a large variety of interesting mechanics that might seem daunting, but don't worry - you don't need to do anything fancy right yet. You'll learn more as you go!", + "quests.low_voltage.multiblock_tech.desc": "This is the &6basics&r of what you need to build your first &bEBF&r, though it is highly customisable. Remember to use &6EMI&r, use &6U&r on the controller and don't hesitate to &6left click on the structure blocks&r to see what the possibilities are.\n\nAn important notice, each Energy Hatch can accept &a2A&r, which means that at &7LV&r they can each handle &a64 EU/t&r. With two of them, your &eEBF&r can run at &a128 EU/t&r.\n\nFor more details about this mechanic, refer to the &eGregTech Energy Chapter&r, specifically the &eSpending Energy&r section.\n\nMultiblocks bear a large variety of interesting mechanics that might seem daunting, but don't worry - you don't need to do anything fancy right yet. You'll learn more as you go!", "quests.low_voltage.multiblock_tech.task.1": "Input Bus", "quests.low_voltage.multiblock_tech.task.2": "Output Bus", "quests.low_voltage.multiblock_tech.task.3": "Input Hatch", @@ -1396,9 +1502,9 @@ "quests.medium_voltage.subtitle": "Venture into petrochemistry and refine electronics", "quests.medium_voltage.mv_machine_hull.title": "Welcome to MV!", "quests.medium_voltage.mv_machine_hull.subtitle": "More technology, more problems", - "quests.medium_voltage.mv_machine_hull.desc.1": "Every time you enter a new tier, things can get a bit overwhelming. You’ll be faced with lots of &enew machines&r to build and &echemicals&r to produce.\\n\\nAs you’ve probably seen in the quests, you have &2three main objectives&r to complete before progressing into &6HV&r. Let's break them down one by one.", - "quests.medium_voltage.mv_machine_hull.desc.2": "First, you’ll need to upgrade your &dEBF&r with two new &bMV Energy Hatches&r. This will allow it to overclock and run &6HV recipes&r. That upgrade is key for producing &estainless steel&r, the main material for &6HV&r, and also &eKanthal&r, which you’ll need to upgrade your &dEBF coils&r.", - "quests.medium_voltage.mv_machine_hull.desc.3": "Your second objective—although you can tackle it first if you prefer—involves diving into chemistry. Your first plastic, &ePolyethylene&r, is essential for future progress. There are two possible paths you can follow, and the quests will help guide you:\\n\\n- &ePetrochem route&r: extract oil from the ground or oilsands. This path also unlocks &eDiesel&r production for fuel combustion.\\n\\n- &eBiochem route&r: use a &6Pyrolyse Oven&r and wood (a Create-powered tree farm works great). This method gives you more &eBenzene&r and opens the door to using a &eGas Generator&r.\\n\\nEach path has its pros and cons, but eventually, you’ll need both anyway.", + "quests.medium_voltage.mv_machine_hull.desc.1": "Every time you enter a new tier, things can get a bit overwhelming. You’ll be faced with lots of &enew machines&r to build and &echemicals&r to produce.\n\nAs you’ve probably seen in the quests, you have &2three main objectives&r to complete before progressing into &6HV&r. Let's break them down one by one.", + "quests.medium_voltage.mv_machine_hull.desc.2": "First, you'll need to upgrade your &dEBF&r with two new &bMV Energy Hatches&r. This will allow it to overclock and run &6HV recipes&r. That upgrade is key for producing &estainless steel&r, the main material for &6HV&r, and also &eKanthal&r, which you’ll need to upgrade your &dEBF coils&r.", + "quests.medium_voltage.mv_machine_hull.desc.3": "Your second objective—although you can tackle it first if you prefer—involves diving into chemistry. Your first plastic, &ePolyethylene&r, is essential for future progress. There are two possible paths you can follow, and the quests will help guide you:\n\n- &ePetrochem route&r: extract oil from the ground or oilsands. This path also unlocks &eDiesel&r production for fuel combustion.\n\n- &eBiochem route&r: use a &6Pyrolyse Oven&r and wood (a Create-powered tree farm works great). This method gives you more &eBenzene&r and opens the door to using a &eGas Generator&r.\n\nEach path has its pros and cons, but eventually, you’ll need both anyway.", "quests.medium_voltage.mv_machine_hull.desc.4": "The final step here is unlocking the &6second HV Circuit&r. It only requires &atwo steps&r, making it faster than crafting the &6first HV Circuit&r, which needs &cthree steps&r.\n\nTo achieve this, you'll need to get your hands on a &dLaser Engraver&r, which allows you to produce your first &dWafers&r. With those, you can craft an &6HV Circuit&r that you'll use to build the &bMV Circuit Assembler&r.\n\nIt's not strictly necessary to do this now—you can continue using the first HV Circuit for progression—but &ait will make your life much easier&r if you take care of it now. Trust us.", "quests.medium_voltage.mv_miner.title": "Automatic Mining", "quests.medium_voltage.mv_miner.subtitle": "So are you bored of mining yourself?", @@ -1555,7 +1661,7 @@ "quests.medium_voltage.mv_inductor.desc": "A Circuit Component that you can now make thanks to the &3MV Assembler&r and &3Polyethylene&r.\n\nIf you want the cheapest recipe, &aNickel-Zinc Ferrite&r is the way to go.", "quests.medium_voltage.mv_electronic_components.title": "Electronic Components", "quests.medium_voltage.mv_electronic_components.subtitle": "A core piece of GT progression system", - "quests.medium_voltage.mv_electronic_components.desc": "Let's talk about the &dElectronic Components&r from &dGregtech&r. They are a &ccore part&r of the mod's progression and are used to make &aall circuits&r in the game.\n\nMost components have &amultiple recipes&r. Depending on the &9materials&r you choose, you can achieve &ebetter yields&r. We encourage you to browse through &aEMI&r and decide which ones fit your situation best.\n\nThese components can be crafted in &clarge stacks&r—you'll need &ea lot&r of them for your future circuits!\n\nFor the &dTransistor&r, you’ll specifically need &5Silicon Ingots&r... but by now, you should be &cvery familiar&r with &chandling hot stuff&r, right?", + "quests.medium_voltage.mv_electronic_components.desc": "Let's talk about the &dElectronic Components&r from &dGregTech&r. They are a &ccore part&r of the mod's progression and are used to make &aall circuits&r in the game.\n\nMost components have &amultiple recipes&r. Depending on the &9materials&r you choose, you can achieve &ebetter yields&r. We encourage you to browse through &aEMI&r and decide which ones fit your situation best.\n\nThese components can be crafted in &clarge stacks&r—you'll need &ea lot&r of them for your future circuits!\n\nFor the &dTransistor&r, you’ll specifically need &5Silicon Ingots&r... but by now, you should be &cvery familiar&r with &chandling hot stuff&r, right?", "quests.medium_voltage.mv_best_lv.title": "Best LV Circuits", "quests.medium_voltage.mv_best_lv.subtitle": "It Feels Good to be the Best", "quests.medium_voltage.mv_best_lv.desc": "&6The best LV Circuits&r! You can start to churn these guys out, as you'll be making them for the rest of the game.\n\nTry to keep a stockpile of these crafted at all times - making these on-demand can take a while.\n\nReaching &5EV&r will unlock methods to make them even cheaper.", @@ -1583,7 +1689,7 @@ "quests.medium_voltage.mv_multi_smelter.desc": "At its lowest power (Cupronickel coils and &7LV&r Voltage), the &dMulti Smelter&r smelts 32 items in just 12 seconds - equivalent to &926.7 Furnaces&r, or 3.3 Steam Ovens!\n\nIf that wasn't already enough to convince you, standard &aoverclocks&r can be applied with sufficient voltage.\n\nAnd even better - higher tier &3Coils&r increase the amount of items it can smelt in &dparallel&r!", "quests.medium_voltage.hv_machine_hull.title": "The HV Machine Hull", "quests.medium_voltage.hv_machine_hull.subtitle": "That's your fourth machine hull! This is progression", - "quests.medium_voltage.hv_machine_hull.desc": "This is it—the &6HV Machine Hull&r! Congratulations on reaching this major milestone.\n\nYou had to manage &dchemicals&r, upgrade your &dEBF&r, mix a &cnew alloy&r, and learn about &aWafers&r and the &aLaser Engraver&r. We hope your &aunderstanding of Gregtech&r is growing stronger every day.\n\nFrom now on, &ecomplexity will increase&r at each tier, but you’ll also gain access to &anew machines&r that will ease earlier processes and introduce &9interesting new mechanics&r.\n\nEven though you’ve just unlocked the &6HV Chapter&r, remember that this marks only &atwo&r of the &bMV Chapter&r’s main milestones.\n\nIf you haven’t unlocked the &6Second HV Circuit&r yet, we highly encourage you to do so before moving forward.\n\nOtherwise, &aWelcome to HV!&r", + "quests.medium_voltage.hv_machine_hull.desc": "This is it—the &6HV Machine Hull&r! Congratulations on reaching this major milestone.\n\nYou had to manage &dchemicals&r, upgrade your &dEBF&r, mix a &cnew alloy&r, and learn about &aWafers&r and the &aLaser Engraver&r. We hope your &aunderstanding of GregTech&r is growing stronger every day.\n\nFrom now on, &ecomplexity will increase&r at each tier, but you’ll also gain access to &anew machines&r that will ease earlier processes and introduce &9interesting new mechanics&r.\n\nEven though you’ve just unlocked the &6HV Chapter&r, remember that this marks only &atwo&r of the &bMV Chapter&r’s main milestones.\n\nIf you haven’t unlocked the &6Second HV Circuit&r yet, we highly encourage you to do so before moving forward.\n\nOtherwise, &aWelcome to HV!&r", "quests.medium_voltage.mv_stainless.title": "Stainless Steel", "quests.medium_voltage.mv_stainless.subtitle": "HV is in your grasp", "quests.medium_voltage.mv_stainless.desc.1": "Any Steel you encounter in day-to-day life is most likely &7Stainless Steel&r. It is extremely resilient against corrosion.&r\n\nStainless Steel is the material for &6HV&r components, like Aluminium for &bMV&r and Steel for &7LV&r. It is also used in high quantities for the &3Distillation Tower&r.\n\nIt requires &cChromium&r, obtained mainly from &cRuby&r or &cChromite&r, and &2Manganese&r, obtained from &2Pyrolusite&r and others in its vein.", @@ -1619,7 +1725,7 @@ "quests.medium_voltage.mv_silicon_boule.desc": "&9Silicon Boules&r are made in the &3EBF&r with half a stack of &aSilicon Dust&r and a pinch of &aGallium Arsenide&r. Their primary purpose is engraving &6Circuit Wafers&r.\n\nAfter making the Boule, process it in the &3Cutter&r to get 16 Silicon Wafers ready for engraving.\n\n&cWarning:&r Each Silicon Boule takes &47.5 minutes&r to make at 120 EU/t, or 1,080,000 EU! If the EBF loses power midway, the recipe will start to &close progress&r.\n\nWith that being said, Silicon Boules take an absolute age to craft, so consider parallelizing the recipe in multiple &3EBF&rs and stockpiling them.", "quests.medium_voltage.mv_silicon.title": "Silicon Dust", "quests.medium_voltage.mv_silicon.subtitle": "", - "quests.medium_voltage.mv_silicon.desc.1": "You’ll need to get used to it: in &dGregtech&r, there are always &amultiple ways&r to reach what you want—a philosophy we made sure to preserve in &aTerrafirmaGreg&r.\n\nTo obtain &5Silicon&r, we’ll suggest &ctwo main methods&r so you have clear directions. As always, it’s up to you to figure out what’s &abest for your situation&r.", + "quests.medium_voltage.mv_silicon.desc.1": "You’ll need to get used to it: in &dGregTech&r, there are always &amultiple ways&r to reach what you want—a philosophy we made sure to preserve in &aTerrafirmaGreg&r.\n\nTo obtain &5Silicon&r, we’ll suggest &ctwo main methods&r so you have clear directions. As always, it’s up to you to figure out what’s &abest for your situation&r.", "quests.medium_voltage.mv_silicon.desc.2": "First method: &amining silicon-rich ores&r. Look for &9Mica&r or &9Kyanite&r veins—they also contain &dAluminium&r. Alternatively, you can &aElectrolyze Zeolite Dust&r, found in &9Chalcopyrite&r and &dRealgar&r veins.\n\nSecond method: &eAdvanced but powerful&r. Although more expensive to set up and slower early on, it becomes the &ebest method&r at &6HV&r and beyond. Plus, it generates &9Oxygen&r as a bonus! The idea is simple: &aElectrolyze Silicon Dioxide Dust&r into &9Oxygen&r and &5Silicon&r. You can get &aSilicon Dioxide Dust&r by &9centrifuging Flint Dust&r, which itself comes from &9Flint&r collected by &asifting Gravel&r.\n\nThis setup can become &afully passive&r easily. Try using the &aEMI Recipe Tree&r tool (bottom left of your screen) to plan your builds—it really helps!", "quests.medium_voltage.mv_ulpic.title": "ULPIC Chips", "quests.medium_voltage.mv_ulpic.subtitle": "Pickin' up Chips", @@ -1777,7 +1883,7 @@ "quests.ore_proc.subtitle": "Everything you'll need to get the most out of your ores", "quests.ore_proc.native_ore.title": "Welcome to Ore Processing", "quests.ore_proc.native_ore.subtitle": "To Process, Ore Not To Process", - "quests.ore_proc.native_ore.desc": "An important part of &6Gregtech&r is its &dOre Processing Mechanics&r, but it can get pretty complicated, so this chapter is here to help!\n\nTo start with, you should be aware of the &6Ore Processing Diagram&r tab in EMI - Press the Show Uses key (default &bU&r) on any item related to ore processing and look for the tab with the vanilla Iron Ore icon. This diagram may look overwhelming at first, but we'll take it step by step.\n\nA major part of GregTech philosophy is that there's not just one way to solve a problem, but we've marked everything important with a &estar&r, so if you're completely lost, try following those!", + "quests.ore_proc.native_ore.desc": "An important part of &6GregTech&r is its &dOre Processing Mechanics&r, but it can get pretty complicated, so this chapter is here to help!\n\nTo start with, you should be aware of the &6Ore Processing Diagram&r tab in EMI - Press the Show Uses key (default &bU&r) on any item related to ore processing and look for the tab with the vanilla Iron Ore icon. This diagram may look overwhelming at first, but we'll take it step by step.\n\nA major part of GregTech philosophy is that there's not just one way to solve a problem, but we've marked everything important with a &estar&r, so if you're completely lost, try following those!", "quests.ore_proc.native_ore.task": "I agree to not just dump everything in a furnace", "quests.ore_proc.robot_arm.title": "Ore processing with GregTech's own tools", "quests.ore_proc.robot_arm.subtitle": "Providing answers to its own problems", @@ -1895,7 +2001,7 @@ "quests.space_survival.flag.task": "Any Flag", "quests.space_survival.chorus.title": "Chorus Fruit", "quests.space_survival.chorus.subtitle": "Is this the End?", - "quests.space_survival.chorus.desc": "&5Chorus Fruit&r serves a pretty crucial role on the Moon - it will be your main source of &3Nitrogen&r. To get started, find some Chorus Plants, parkour up to the top, and break the &5Chorus Flowers&r. Breaking the plant from the bottom will not get you any of the Chorus Flowers! Next up, grow the Chorus Flowers in an Electric Greenhouse to get a renewable source of Chorus Fruit, and from there, you can process them into &aBiomass&r and &3Nitrogen&r with a Brewery and Fermenter respectively. You can also distill the Biomass into Carbon for more Rocket Fuel!", + "quests.space_survival.chorus.desc": "&5Chorus Fruit&r serves a pretty crucial role on the Moon - it will be your main source of Nitrogen. To get started, find some Chorus Plants, parkour up to the top, and break the &5Chorus Flowers&r. Breaking the plant from the bottom will not get you any of the Chorus Flowers! Next up, grow the Chorus Flowers in an Electric Greenhouse to get a renewable source of Chorus Fruit, and from there, you can process them into Biomass and Nitrogen with a Brewery and Fermenter respectively. You can also distill the Biomass into Carbon for more Rocket Fuel!", "quests.space_survival.rover.title": "Space Rover", "quests.space_survival.rover.subtitle": "Your getaway vehicle", "quests.space_survival.rover.desc": "You had to leave your fancy jetpack at home, there's no atmosphere for airplanes, and horses can't survive, so how are you supposed to get around? The &bRover&r is a vehicle that can hold up to two passengers, runs on combustible fuels (Diesels, Gasolines, and Rocket Fuel), and even has an inventory and radio that can play real-world radio stations!", @@ -1904,8 +2010,8 @@ "quests.space_survival.solar_panels.desc": "There are very few energy sources available on the Moon, but these &eSolar Panels&r have a lovely view of the Sun from up here!\n\nOn the moon, each Solar Panel provides the equivalent of &964 EU/t&r during the day with no fuel or upkeep needed, but they only produce an eighth of that down on the Earth's surface. Bring along a whole bunch of them!", "quests.space_survival.stone_dust_centrifuging.title": "Helium-3", "quests.space_survival.stone_dust_centrifuging.subtitle": "Clown gas", - "quests.space_survival.stone_dust_centrifuging.desc.1": "The Moon is full of &eHelium-3&r, another important resource, but it's stuck inside the stone! There's two ways to get your hands on some:\n\n1) If you haven't set up any stone dust centrifuging automation before, here's a quick introduction: A &9Rock Crusher&r can produce infinite raw stone, which a &9Macerator&r crushes into dust for a &9Centrifuge&r to process.\n\nHere on the Moon, &bAnorthosite&r, &bNorite&r, and &bPhonolite&r can thus be processed into an infinite source of &eHelium-3&r!", - "quests.space_survival.stone_dust_centrifuging.desc.2": "2) Pump it out of the ground with a &9Fluid Rig&r This method is simpler, but doesn't come with any useful byproducts.\n\nHelium-3 is used for several things, of which the most important is making more &cair to breathe&r via &6Heliox-3&r! You can also use it as \"fertiliser\" for Chorus Fruit in the Electric Greenhouse, and eventually as another fuel for Fusion Power.", + "quests.space_survival.stone_dust_centrifuging.desc.1": "The Moon is full of &eHelium-3&r, another important resource, but it's stuck inside the stone! There's two ways to get your hands on some:\n\n1) If you haven't set up any stone dust centrifuging automation before, here's a quick introduction: A Rock Crusher can produce infinite raw stone, which a Macerator crushes into dust for a Centrifuge to process.\n\nHere on the Moon, Anorthosite, Norite, and Phonolite can thus be processed into an infinite source of Helium-3!", + "quests.space_survival.stone_dust_centrifuging.desc.2": "2) Pump it out of the ground with a &9Fluid Rig&r This method is simpler, but doesn't come with any useful byproducts.\n\nHelium-3 is used for several things, of which the most important is making more air to breathe via &6Heliox-3&r! You can also use it as \"fertiliser\" for Chorus Fruit in the Electric Greenhouse, and eventually as another fuel for Fusion Power.", "quests.space_survival.stone_dust_centrifuging.task": "Any ", "quests.space_survival.compressed_gases.title": "Compressed Breathable Gases", "quests.space_survival.compressed_gases.subtitle": "Because pure Oxygen is deadly", @@ -1917,13 +2023,13 @@ "quests.space_survival.air_distributor.title": "Setting up a permanent base", "quests.space_survival.air_distributor.subtitle": "A holiday home", "quests.space_survival.air_distributor.desc.1": "So far you may be surviving, but do you want to truly &othrive&r? If you're wanting to set up a more permanent base, look no further than the &6Air Distributor&r! Feed it one of the compressed gases from earlier and it will \"oxygenate\" a large enclosed area, letting you take your helmet off, grow crops, and place a water source without it freezing.\n\nAny solid block will work to build your base out of, but you'll want a proper airlock to ensure the gas doesn't all escape in a &cvortex&r.", - "quests.space_survival.air_distributor.desc.2": "The oxygenated area will be at a constant 15C for any crops you'd like to grow (though the Electric Greenhouse doesn't mind), and the water source staying liquid will also let you easily electrolyze it for a source of &bOxygen&r. You can also use a Diode block to transfer power through the walls while keeping them sealed.", + "quests.space_survival.air_distributor.desc.2": "The oxygenated area will be at a constant 15C for any crops you'd like to grow (though the Electric Greenhouse doesn't mind), and the water source staying liquid will also let you easily electrolyze it for a source of &bOxygen&r. You can also use a Diode block to transfer power through the walls while keeping them sealed, just like in a cleanroom.", "quests.space_survival.oxygen_info.title": "More Moon base machines", "quests.space_survival.oxygen_info.subtitle": "Home comforts", "quests.space_survival.oxygen_info.desc": "The Oxygen Detector is a simple machine that emits a redstone signal whenever it's in an oxygenated area.\n\nThe Vent is a solid block that can also let breathable air through without causing a vortex.\n\nThe Gravity Normalizer can change the gravity of an area within an enclosed space similar to how an Air Distributor works, but is a little too expensive at the moment.", "quests.space_survival.bedrock_mining.title": "Bedrock mining", "quests.space_survival.bedrock_mining.subtitle": "You'll never run out of copper again!", - "quests.space_survival.bedrock_mining.desc": "If you've ever pumped oil before, &9Bedrock Veins&r are the equivalent of that but for raw ores. And if you haven't? It's like oil pumping.\n\nJokes aside, these multiblocks can provide a constant, &cinfinite&r source of some ores for the rest of your game. Wow, that sounds too good to be true, doesn't it? What's the catch? Finding the veins.\n\nThey're spread far apart and don't exist on Earth, meaning you'll want to set up some way to ship the ores back to your main base. (&aTrains&r are fantastic here!)\n\nCheck out JEI to see what ores are available on the Moon, then find the veins with your &6HV Ore Prospector&r set to &oBedrock Ore Mode&r (sneak + right-click)!", + "quests.space_survival.bedrock_mining.desc": "If you've ever pumped oil before, &9Bedrock Veins&r are the equivalent of that but for raw ores. And if you haven't? It's like oil pumping.\n\nJokes aside, these multiblocks can provide a constant, &cinfinite&r source of some ores for the rest of your game. Wow, that sounds too good to be true, doesn't it? What's the catch? Finding the veins.\n\nThey're spread far apart and don't exist on Earth, meaning you'll want to set up some way to ship the ores back to your main base. (&aTrains&r are fantastic here!)\n\nCheck out JEI to see what ores are available on the Moon, then find the veins with your HV Ore Prospector set to &oBedrock Ore Mode&r (sneak + right-click)!", "quests.space_survival.railgun.title": "Interplanetary Railgun", "quests.space_survival.railgun.subtitle": "Ender chest? Never heard of her!", "quests.space_survival.railgun.desc": "Instant and free trans-dimensional item transportation is boring! So we've cooked up a unique interplanetary logistics system that provides a much more interesting puzzle to solve!\n\nOr at least we're going to, it's &cnot quite finished yet&r in the alpha build!", @@ -2445,7 +2551,7 @@ "quests.tfg_tips.glassblowing_tools.desc": "To work &dGlass&r you'll need a variety of tools.\n\n&3Paddle&r: Performs flatten, mainly used for creating &dGlass Panes&r and &dLamp Glass.&r\n&3Gem Saw&r: Besides being mandatory for making glass products, it can be used to pick up &dGlass&r and &cGem Buds&r in-world as well, like a &bSilk Touch&r effect!\n&3Jacks&r: Used to pinch glass, mostly used for containers such as &dGlass Bottles.&r\n&3Wool Cloth&r: Used for rolling glass, needed for &dLenses&r and &dJars.&r", "quests.tfg_tips.glass_blocks.title": "Glass Blocks", "quests.tfg_tips.glass_blocks.subtitle": "Get yourself some windows.", - "quests.tfg_tips.glass_blocks.desc": "Depending on the type of sand used for the &aGlass Batch&r, your final &dGlass&r will have different colors. Check out the &2Field Guide&r section on &3Glassblowing&r to learn other ways to make specific colors. Later on, you'll be able to use &3Gregtech&r chemicals to dye glass more easily.\n\n&3&lTip:&r&o If you're looking to make a lot of Glass Blocks and have access to an &bAlloy Smelter&f, it's more efficient to make &dGlass Panes&f, &bmacerating&f them, crafting into &dDust&f and then using the &aBlock Mold&f, since one batch can make up to 16 Small Dusts at a time!", + "quests.tfg_tips.glass_blocks.desc": "Depending on the type of sand used for the &aGlass Batch&r, your final &dGlass&r will have different colors. Check out the &2Field Guide&r section on &3Glassblowing&r to learn other ways to make specific colors. Later on, you'll be able to use &3GregTech&r chemicals to dye glass more easily.\n\n&3&lTip:&r&o If you're looking to make a lot of Glass Blocks and have access to an &bAlloy Smelter&f, it's more efficient to make &dGlass Panes&f, &bmacerating&f them, crafting into &dDust&f and then using the &aBlock Mold&f, since one batch can make up to 16 Small Dusts at a time!", "quests.tfg_tips.lamps.title": "Lamps", "quests.tfg_tips.lamps.subtitle": "These are pretty.", "quests.tfg_tips.lamps.desc": "Just like in regular Minecraft, &dLamps&r can be hung from the ceiling with the help of chains or placed on top of blocks. &dLamps&r consume different kinds of fuels to keep themselves lit. Some fuels can last &4indefinitely.&r\n\n &3&lTip:&r&o Filled lamps can be placed in the &6Back&f slot of the &cCurios Menu&f to provide hands free dynamic lighting. This may not work if you have shaders on.", @@ -2554,23 +2660,23 @@ "quests.tfg_tips.grapple_length.desc": "By default, your &dGrappling Hook&r has &b80 blocks in length&r, you can add &c20 more&r by adding more &aRope Coils.&r 200 blocks is the maximum.\n\nLength can be &3decreased&r by crafting with a &aKnife&r, &2reducing it by 20&r, down to a minimum of 20.", "quests.tfg_tips.grapple_motor.title": "Grappling Hook Upgrade: Motor", "quests.tfg_tips.grapple_motor.subtitle": "That lazy, huh?", - "quests.tfg_tips.grapple_motor.desc": "The &aMotor Upgrade&r enables automatic reeling in with your &dHook.&r Caution should be taken as &chigh level motors&r may cause you to take &4fall damage&r from the reeling force.\n\nMotors are tiered according to &2Gregtech&r voltage tiers. The crafting recipes tells you exactly what stats were modified and by how much.", + "quests.tfg_tips.grapple_motor.desc": "The &aMotor Upgrade&r enables automatic reeling in with your &dHook.&r Caution should be taken as &chigh level motors&r may cause you to take &4fall damage&r from the reeling force.\n\nMotors are tiered according to &2GregTech&r voltage tiers. The crafting recipes tells you exactly what stats were modified and by how much.", "quests.tfg_tips.grapple_smart_motor.title": "Grappling Hook Upgrade: Smart Motor", "quests.tfg_tips.grapple_smart_motor.subtitle": "Does anyone even know what this does?", "quests.tfg_tips.grapple_smart_motor.desc": "The &aSmart Motor Upgrade&r enables the &3Smart Motor system&r. It requires a &bMotor Upgrade&r to be installed first.", "quests.tfg_tips.grapple_field.title": "Grappling Hook Upgrade: Repulsion Field", "quests.tfg_tips.grapple_field.subtitle": "Look ma! I'm levitating!", - "quests.tfg_tips.grapple_field.desc": "The &aRepulsion Field Upgrade&r causes you to be repelled from nearby blocks. Caution should be taken as &chigh level repulsion strength&r may cause you to take &4fall damage.&r\n\nRepulsion Fields are tiered according &2Gregtech&r voltage tiers. The crafting recipe tells you exactly what stats were modified and by how much.", + "quests.tfg_tips.grapple_field.desc": "The &aRepulsion Field Upgrade&r causes you to be repelled from nearby blocks. Caution should be taken as &chigh level repulsion strength&r may cause you to take &4fall damage.&r\n\nRepulsion Fields are tiered according &2GregTech&r voltage tiers. The crafting recipe tells you exactly what stats were modified and by how much.", "quests.tfg_tips.grapple_magnet.title": "Grappling Hook Upgrade: Hook Magnet", "quests.tfg_tips.grapple_magnet.subtitle": "Intense Attraction", - "quests.tfg_tips.grapple_magnet.desc": "The &aMagnet Upgrade&r causes your &dHook&r to be attracted to any nearby blocks, latching onto them.\n\nMagnet Upgrades are tiered using &2Gregtech's&r Magnetic Ingots, with the worst one being &bMagnetic Iron&r and the best being &bMagnetic Samarium.&r", + "quests.tfg_tips.grapple_magnet.desc": "The &aMagnet Upgrade&r causes your &dHook&r to be attracted to any nearby blocks, latching onto them.\n\nMagnet Upgrades are tiered using &2GregTech's&r Magnetic Ingots, with the worst one being &bMagnetic Iron&r and the best being &bMagnetic Samarium.&r", "quests.tfg_tips.grapple_magnet.task": "Any Magnetic Ingot", "quests.tfg_tips.grapple_sticky.title": "Grappling Hook Upgrade: Sticky Rope", "quests.tfg_tips.grapple_sticky.subtitle": "Sticky!", "quests.tfg_tips.grapple_sticky.desc": "The &aSticky Upgrade&r causes your &dHook&r to be attached to any rope piece touching a block.", "quests.tfg_tips.grapple_throw_speed.title": "Grappling Hook Upgrade: Throw Speed", "quests.tfg_tips.grapple_throw_speed.subtitle": "Yeet!", - "quests.tfg_tips.grapple_throw_speed.desc": "The &aThrow Speed Upgrade&r causes your &dHook&r to launch faster.\n\nThrow Speed upgrades are tiered according &2Gregtech&r voltage tiers. The crafting recipe tells you exactly what stats were modified and by how much.", + "quests.tfg_tips.grapple_throw_speed.desc": "The &aThrow Speed Upgrade&r causes your &dHook&r to launch faster.\n\nThrow Speed upgrades are tiered according &2GregTech&r voltage tiers. The crafting recipe tells you exactly what stats were modified and by how much.", "quests.tfg_tips.grapple_double.title": "Grappling Hook Upgrade: Double Hook", "quests.tfg_tips.grapple_double.subtitle": "Double the Fun!", "quests.tfg_tips.grapple_double.desc": "The &aDouble Hook Upgrade&r causes you to throw &dtwo Grappling Hooks&r at an angle. You can specify key binds to throw each hook separately.", @@ -2699,7 +2805,7 @@ "quests.tfg_tips.aircraft_upgrades.desc": "&2Immersive Aircraft&r comes with &aAircraft Upgrades&r, which you can install in your to improve your aircraft stats, such as velocity, takeoff speed, fuel consumption, etc. There are two types of upgrades: &bregular&r and &dtiered.&r\n\nThe ones in this quest are the &bregular&r upgrades, think you can get them all?", "quests.tfg_tips.steam_upgrades.title": "Aircraft Upgrades: Steam", "quests.tfg_tips.steam_upgrades.subtitle": "Immersive Aircraft meets GregTech Tiering!", - "quests.tfg_tips.steam_upgrades.desc": "The second kind of aircraft upgrades are the &dTiered Upgrades.&r These are made to match the &3Gregtech&r tiering system, going from &8Steam&r up to &5EV.&r\n\nSteam upgrades are the easiest and earliest to craft, requiring at the very least knowledge of &bBlack Steel.&r\n\n&dSteam-powered Aircraft Engines&r are used in the creation of more sophisticated aircrafts such as the &eBiplane&r and the &cWarship.&r", + "quests.tfg_tips.steam_upgrades.desc": "The second kind of aircraft upgrades are the &dTiered Upgrades.&r These are made to match the &3GregTech&r tiering system, going from &8Steam&r up to &5EV.&r\n\nSteam upgrades are the easiest and earliest to craft, requiring at the very least knowledge of &bBlack Steel.&r\n\n&dSteam-powered Aircraft Engines&r are used in the creation of more sophisticated aircrafts such as the &eBiplane&r and the &cWarship.&r", "quests.tfg_tips.steam_upgrades.task": "Any steam tier aircraft upgrade", "quests.tfg_tips.lv_upgrades.title": "Aircraft Upgrades: LV", "quests.tfg_tips.lv_upgrades.subtitle": "Red and Blue, certainly not clashing.", @@ -2949,7 +3055,7 @@ "quests.tfg_tips.juicer.desc": "The &3Juicer&r is a special item that can extract the latent humidity of &aFruits&r and &aMushrooms&r into drinkable &dWater.&r\n\nWater is only common in the upper layers of &4The Beneath&r. As you go lower, it will be increasingly scarce. However, &aMushrooms&r are very common in &4The Beneath&r, so you won't die of thirst, hopefully!", "quests.tfg_tips.how_to_go_beneath.title": "How to go to The Beneath", "quests.tfg_tips.how_to_go_beneath.subtitle": "No Obsidian Required", - "quests.tfg_tips.how_to_go_beneath.desc": "To reach &4The Beneath&r, you will have to stand on &bOverworld Bedrock&r for a couple of seconds, after which you will be &oteleported&r to down there.\n\n&3&lTip:&r&o Make sure to dig out a large space above the bedrock where you'll be standing, so when you get teleported back to the Overworld, the game won't send you in some random cave while it's trying to search for enough air blocks.", + "quests.tfg_tips.how_to_go_beneath.desc": "To reach &4The Beneath&r, you will have to stand on &bOverworld Bedrock&r for a couple of seconds, after which you will be &oteleported&r down under.\n\n&3&lTip:&r&o You'll keep exactly the same X and Z coordinates, so it may teleport you inside some rock. It'll give you a 3x3x3 space to work with though, so be sure to bring some supports for tunneling your way out!", "quests.tfg_tips.how_to_go_beneath.task.1": "Reach and Stand on top of Bedrock", "quests.tfg_tips.how_to_go_beneath.task.2": "Visit the Beneath", "quests.tfg_tips.reach_the_beneath.title": "Welcome, to The Depths", @@ -2992,5 +3098,9 @@ "quests.tfg_tips.tools_tips.markings.task": "Any #ags_modernmarkings:markings", "quests.tfg_tips.tools_tips.cryodesiccation.title": "Cryodesiccation", "quests.tfg_tips.tools_tips.cryodesiccation.subtitle": "The factory has no time for \"flavor\".", - "quests.tfg_tips.tools_tips.cryodesiccation.desc": "&l&bCryodesiccation&r&r is the process of dehydrating food at very low temperatures. Food with the trait \"Cryodesiccated\" lasts considerably longer than other food preservation methods." + "quests.tfg_tips.tools_tips.cryodesiccation.desc": "&l&bCryodesiccation&r&r is the process of dehydrating food at very low temperatures. Food with the trait \"Cryodesiccated\" lasts considerably longer than other food preservation methods.", + "quests.tfg_tips.tools_tips.harvest_basket.title": "Harvest Baskets", + "quests.tfg_tips.tools_tips.harvest_basket.subtitle": "For competitive pie bakers.", + "quests.tfg_tips.tools_tips.harvest_basket.task": "Any #tfg:harvester", + "quests.tfg_tips.tools_tips.harvest_basket.desc": "&l&2Harvest Baskets&r&r are a new tool made just for &5TFG&r! These baskets can be used to harvest whole trees and bushes of fruit in one right-click! A regular &6Harvest Basket&r has a base durability of &n128&r. But an &3Aluminium Harvest Basket&r takes no damage on use." } \ No newline at end of file diff --git a/kubejs/assets/tfg/lang/pt_br.json b/kubejs/assets/tfg/lang/pt_br.json index 71f0d1a4a..5f6eafc53 100644 --- a/kubejs/assets/tfg/lang/pt_br.json +++ b/kubejs/assets/tfg/lang/pt_br.json @@ -86,10 +86,10 @@ "block.tfg.steel_support_horizontal": "Suporte Horizontal de Aço", "block.tfg.gabbro_support_horizontal": "Suporte Horizontal de Gabro", "block.tfg.gabbro_support": "Suporte de Gabro", - "block.tfg.shale_support_horizontal": "Suporte Horizontal de Shale", + "block.tfg.shale_support_horizontal": "Suporte Horizontal de Folhelho", "block.tfg.shale_support": "Suporte de Shale", - "block.tfg.claystone_support_horizontal": "Suporte Horizontal de Arenito", - "block.tfg.claystone_support": "Suporte de Arenito", + "block.tfg.claystone_support_horizontal": "Suporte Horizontal de Argilito", + "block.tfg.claystone_support": "Suporte de Argilito", "block.tfg.limestone_support_horizontal": "Suporte Horizontal de Calcário", "block.tfg.limestone_support": "Suporte de Calcário", "block.tfg.conglomerate_support_horizontal": "Suporte Horizontal de Conglomerado", @@ -110,10 +110,10 @@ "block.tfg.slate_support": "Suporte de Ardósia", "block.tfg.phyllite_support_horizontal": "Suporte Horizontal de Filito", "block.tfg.phyllite_support": "Suporte de Filito", - "block.tfg.schist_support_horizontal": "Suporte Horizontal de Schisto", - "block.tfg.schist_support": "Suporte de Schisto", - "block.tfg.gneiss_support_horizontal": "Suporte Horizontal de Gneisse", - "block.tfg.gneiss_support": "Suporte de Gneisse", + "block.tfg.schist_support_horizontal": "Suporte Horizontal de Xisto", + "block.tfg.schist_support": "Suporte de Xisto", + "block.tfg.gneiss_support_horizontal": "Suporte Horizontal de Gnaisse", + "block.tfg.gneiss_support": "Suporte de Gnaisse", "block.tfg.marble_support_horizontal": "Suporte Horizontal de Mármore", "block.tfg.marble_support": "Suporte de Mármore", "block.tfg.basalt_support_horizontal": "Suporte Horizontal de Basalto", @@ -144,15 +144,15 @@ "block.tfg.rock.hardened_moon_deepslate": "Norito Endurecido", "block.tfg.spike.moon_deepslate_spike": "Espinho de Norito", "block.tfg.loose.moon_deepslate": "Rocha Solta de Norito", - "block.tfg.rock.hardened_mars_stone": "Argilito Endurecido", - "block.tfg.spike.mars_stone_spike": "Espinho de Argilito", - "block.tfg.loose.mars_stone": "Rocha Solta de Argilito", + "block.tfg.rock.hardened_mars_stone": "Argilita Endurecida", + "block.tfg.spike.mars_stone_spike": "Espinho de Argilita", + "block.tfg.loose.mars_stone": "Rocha Solta de Argilita", "block.tfg.rock.hardened_venus_stone": "Traquito Endurecido", "block.tfg.spike.venus_stone_spike": "Espinho de Traquito", "block.tfg.loose.venus_stone": "Rocha Solta de Traquito", - "block.tfg.rock.hardened_mercury_stone": "Komatiito Endurecido", - "block.tfg.spike.mercury_stone_spike": "Espinho de Komatiito", - "block.tfg.loose.mercury_stone": "Rocha Solta de Komatiito", + "block.tfg.rock.hardened_mercury_stone": "Komatiíto Endurecido", + "block.tfg.spike.mercury_stone_spike": "Espinho de Komatiíto", + "block.tfg.loose.mercury_stone": "Rocha Solta de Komatiíto", "block.tfg.rock.hardened_glacio_stone": "Fonolito Endurecido", "block.tfg.spike.glacio_stone_spike": "Espinho de Fonolito", "block.tfg.loose.glacio_stone": "Rocha Solta de Fonolito", @@ -235,11 +235,11 @@ "item.tfg.loose.moon_stone": "Anortosito Solto", "item.tfg.brick.moon_stone": "Tijolo de Anortosito", "item.tfg.loose.moon_deepslate": "Norito Solto", - "item.tfg.loose.mars_stone": "Argilito Solto", - "item.tfg.brick.mars_stone": "Tijolo de Argilito", + "item.tfg.loose.mars_stone": "Argilita Solta", + "item.tfg.brick.mars_stone": "Tijolo de Argilita", "item.tfg.loose.venus_stone": "Traquito Solto", "item.tfg.brick.venus_stone": "Tijolo de Traquito", - "item.tfg.loose.mercury_stone": "Komatiito Solto", + "item.tfg.loose.mercury_stone": "Komatiíto Solto", "item.tfg.brick.mercury_stone": "Tijolo de Komatiito", "item.tfg.loose.glacio_stone": "Fonolito Solto", "item.tfg.brick.glacio_stone": "Tijolo de Fonolito", @@ -282,24 +282,24 @@ "material.tfg.conifer_pitch": "Piche de Conífera", "material.gtceu.lactose": "Lactose", "material.tfg.gabbro": "Gabro", - "material.tfg.shale": "Shale", - "material.tfg.claystone": "Arenito", + "material.tfg.shale": "Folhelho", + "material.tfg.claystone": "Argilito", "material.tfg.limestone": "Calcário", "material.tfg.conglomerate": "Conglomerado", "material.tfg.dolomite": "Dolomita", "material.tfg.chert": "Cherte", "material.tfg.rhyolite": "Riolito", "material.tfg.dacite": "Dacito", - "material.tfg.slate": "Slate", + "material.tfg.slate": "Ardósia", "material.tfg.phyllite": "Filito", - "material.tfg.schist": "Schisto", - "material.tfg.gneiss": "Gneisse", + "material.tfg.schist": "Xisto", + "material.tfg.gneiss": "Gnaisse", "material.tfg.chalk": "Giz", "material.tfg.moon_stone": "Anortosito", "material.tfg.moon_deepslate": "Norito", - "material.tfg.mars_stone": "Argilito", + "material.tfg.mars_stone": "Argilita", "material.tfg.venus_stone": "Traquito", - "material.tfg.mercury_stone": "Komatiito", + "material.tfg.mercury_stone": "Komatiíto", "material.tfg.glacio_stone": "Fonolito", "material.gtceu.thermochemically_treated_hardwood": "Hardwood Termicamente Tratado", "material.gtceu.hardwood": "Hardwood", @@ -535,7 +535,7 @@ "tfg.grapplemod.upgrades.angle": "Aumenta o §lÂngulo Horizontal§r para lançar seus §lGanchos Duplos§r em 5°, até 90°.\nApenas acessível com um §lGancho Duplo§r instalado.", "tfg.grapplemod.downgrades.angle": "Diminui o §lÂngulo Horizontal§r para lançar seus §lGanchos Duplos§r em 5°, até 5°.\nApenas acessível com um §lGancho Duplo§r instalado.", "quests.ae2": "Applied Energistics 2", - "quests.ae2.subtitle": "A ferramenta mais poderosa para ajudá-lo com Gregtech, desbloqueada após sua primeira viagem à lua", + "quests.ae2.subtitle": "A ferramenta mais poderosa para ajudá-lo com GregTech, desbloqueada após sua primeira viagem à lua", "quests.tasktype.checkmark": "Clique aqui para completar essa missão/tarefa", "quests.tasktype.item.any": "Qualquer item do tipo:", "quests.tasktype.lookat": "Procure um(a):", @@ -579,7 +579,7 @@ "quests.metal_age.wrought_iron_anvil.desc": "Com a Bigorna de Ferro Forjado você vai ser capaz de trabalhar Ferro Forjado em diferentes itens como Chapas, cabeças de Ferramentas, etc.\n\nFerramentas e armaduras de Ferro Forjado não são AQUELA melhoria em comparação às de Bronze, mas têm bem mais durabilidade.\n\nCriar a próxima bigorna vai ser um grande salto na dificuldade, então esse é um bom ponto pra dar uma parada e explorar algumas das outras coisas que esse modpack tem a oferecer.", "quests.metal_age.coke_oven.title": "Forno de Coque", "quests.metal_age.coke_oven.subtitle": "Finalmente, Chega Dessas Pilhas de Carvão!", - "quests.metal_age.coke_oven.desc.1": "O Forno de Coque é o seu primeiro Multibloco do Gregtech! Ele permite a você criar Carvão Vegetal automaticamente, além de outros poderosos combustíveis. O Forno de Coque vai queimar uma Tora em um Carvão Vegetal e 250mB de Creosoto, um importante químico usado no tratamento de madeira.\n\nSe você criar o bloco principal do Forno de Coque e usar a tecla de 'Usos' do JEI nele (o padrão costuma ser \"U\"), você vai encontrar a aba chamada \"Informações de Multibloco\", que te mostra como construir o Forno de Coque no mundo.\n\nVocê também pode só colocar o bloco de Controle no mundo, e interagir com ele enquanto estiver agachando pra criar um Holograma dos blocos faltando.", + "quests.metal_age.coke_oven.desc.1": "O Forno de Coque é o seu primeiro Multibloco do GregTech! Ele permite a você criar Carvão Vegetal automaticamente, além de outros poderosos combustíveis. O Forno de Coque vai queimar uma Tora em um Carvão Vegetal e 250mB de Creosoto, um importante químico usado no tratamento de madeira.\n\nSe você criar o bloco principal do Forno de Coque e usar a tecla de 'Usos' do JEI nele (o padrão costuma ser \"U\"), você vai encontrar a aba chamada \"Informações de Multibloco\", que te mostra como construir o Forno de Coque no mundo.\n\nVocê também pode só colocar o bloco de Controle no mundo, e interagir com ele enquanto estiver agachando pra criar um Holograma dos blocos faltando.", "quests.metal_age.coke_oven.desc.2": "Fornos de Coque podem ser completamente automatizados usando Escotilhas do Forno de Coque. Escotilhas são colocadas nas laterais do Forno e funcionam tanto como Entrada como Saída pra ambos Itens e Líquidos.\n\nVocê pode facilmente criar um simples Forno de Coque unilateral automatizado usando uma Caixa para a Escotilha de Entrada, um Baú para a de Saída de Itens e um Tambor ou Barril para a coleta do Creosoto. Diferente de Baús, Caixas são capazes de guardar objetos grandes, como Toras. Você também pode agachar e apertar com o botão direito em canos do GregTech enquanto segura uma chave de boca pra fazer eles fluírem em uma só direção.", "quests.metal_age.wrought_iron_goodies.title": "Energia Mecânica Nível Ferro Forjado", "quests.metal_age.wrought_iron_goodies.subtitle": "O que é essa \"Liga de Andesito\" que você tanto fala?", diff --git a/kubejs/assets/tfg/lang/uk_ua.json b/kubejs/assets/tfg/lang/uk_ua.json index 27ea75cf3..495a391a5 100644 --- a/kubejs/assets/tfg/lang/uk_ua.json +++ b/kubejs/assets/tfg/lang/uk_ua.json @@ -744,7 +744,7 @@ "quests.create_logistics.postbox.desc.2": "Ще одна класна річ щодо &3Поштових скриньок&r: під час автоматичного вилучення з них (через жолоби, воронки тощо) забираються лише ті пакування, чия адреса &aзбігається з назвою скриньки&r. Усі інші залишаються всередині, щоб пізніше бути завантаженими у потяги.", "quests.create_logistics.nbt_handling.title": "Розкажи більше", "quests.create_logistics.nbt_handling.subtitle": "Інша інформація про упаковки та адреси", - "quests.create_logistics.nbt_handling.desc.1": "Ось ще кілька важливих речей, які можуть стати в пригоді під час маршрутизації упаковок:\n\n&3-&r Упаковки створюються випадковим чином із набору з чотирьох можливих предметів, тож налаштовувати фільтри предметів із Gregtech буде &cдуже клопітно&r! Ми рекомендуємо використовувати &3Фільтр упаковок&r скрізь, де це можливо, але...\n\n&3-&r Якщо ти все ж хочеш спробувати інші способи переміщення упаковок, знай: адреса призначення зберігається в NBT-даних у тегу &eАдреса&r. Наприклад, упаковка з адресою призначення \"Home\" матиме в NBT: &e{Address:\"Home\"}&r.", + "quests.create_logistics.nbt_handling.desc.1": "Ось ще кілька важливих речей, які можуть стати в пригоді під час маршрутизації упаковок:\n\n&3-&r Упаковки створюються випадковим чином із набору з чотирьох можливих предметів, тож налаштовувати фільтри предметів із GregTech буде &cдуже клопітно&r! Ми рекомендуємо використовувати &3Фільтр упаковок&r скрізь, де це можливо, але...\n\n&3-&r Якщо ти все ж хочеш спробувати інші способи переміщення упаковок, знай: адреса призначення зберігається в NBT-даних у тегу &eАдреса&r. Наприклад, упаковка з адресою призначення \"Home\" матиме в NBT: &e{Address:\"Home\"}&r.", "quests.create_logistics.nbt_handling.desc.2": "&3-&r Фільтрація адрес упаковок підтримує спрощену форму &eRegEx&r. Це означає, що ти можеш:\n\n&e-&r Збіг із рядком будь-якої довжини — за допомогою * \n \n&e-&r Збіг із будь-яким одним символом — за допомогою ?\n \n&e-&r Збіг із одним символом із групи в дужках [] (наприклад, A[cr]t збігається з 'Act' і 'Art', але не з 'Ant') \n \n&e-&r Збіг із символом, що не входить до групи в [! ] (наприклад, A[!cr]t збігається з 'Aft' і 'Apt', але не з 'Act' чи 'Art')\n \n&e-&r Збіг із рядком зі списку в {} (наприклад, TerraFirma{Craft,Greg} збігається з TerraFirma&eCraft&r і TerraFirma&eGreg&r) \n\n&e-&r Усі попередні символи можна екранувати; наприклад, A\\* буде сприйматись як A* і збігатиметься лише з 'A*'.", "quests.create_logistics.bottler.title": "Розливник", "quests.create_logistics.bottler.subtitle": "Розливник для рідин", @@ -1413,7 +1413,7 @@ "quests.medium_voltage.mv_inductor.desc": "Компонент Схеми, який ти тепер можеш створити завдяки &3MV Асемблеру&r та &3Поліетилену&r. \n\nЯкщо тобі потрібен найдешевший рецепт, &aНікель-Цинковий Ферит&r — найкращий варіант.", "quests.medium_voltage.mv_electronic_components.title": "Електронні компоненти", "quests.medium_voltage.mv_electronic_components.subtitle": "Ключовий елемент системи прогресу GT", - "quests.medium_voltage.mv_electronic_components.desc": "Давай поговоримо про &dЕлектронні Компоненти&r з &dGregtech&r. Вони є &cключовою частиною&r прогресу мода і використовуються для створення &aвсіх схем&r у грі. \n\nБільшість компонентів мають &aдекілька рецептів&r. Залежно від &9матеріалів&r, які ти обираєш, можна досягти &eкращого виходу&r. Ми рекомендуємо переглянути &aEMI&r і вирішити, які варіанти найкраще підходять для твоєї ситуації. \n\nЦі компоненти можна створювати у &cвеликих партіях&r—тобі знадобиться &eбагато&r їх для майбутніх схем! \n\nДля &dТранзистора&r тобі знадобляться &5Силіконові Злитки&r... але на цьому етапі ти вже маєш бути &cдуже знайомим&r з &cроботою з гарячими матеріалами&r, так?", + "quests.medium_voltage.mv_electronic_components.desc": "Давай поговоримо про &dЕлектронні Компоненти&r з &dGregTech&r. Вони є &cключовою частиною&r прогресу мода і використовуються для створення &aвсіх схем&r у грі. \n\nБільшість компонентів мають &aдекілька рецептів&r. Залежно від &9матеріалів&r, які ти обираєш, можна досягти &eкращого виходу&r. Ми рекомендуємо переглянути &aEMI&r і вирішити, які варіанти найкраще підходять для твоєї ситуації. \n\nЦі компоненти можна створювати у &cвеликих партіях&r—тобі знадобиться &eбагато&r їх для майбутніх схем! \n\nДля &dТранзистора&r тобі знадобляться &5Силіконові Злитки&r... але на цьому етапі ти вже маєш бути &cдуже знайомим&r з &cроботою з гарячими матеріалами&r, так?", "quests.medium_voltage.mv_best_lv.title": "Найкращі LV Схеми", "quests.medium_voltage.mv_best_lv.subtitle": "Приємно бути найкращим", "quests.medium_voltage.mv_best_lv.desc": "&6Найкращі LV Схеми&r! Ти можеш почати масове виробництво цих компонентів, адже вони знадобляться тобі протягом усієї гри. \n\nСтарайся завжди мати запас готових схем—створення їх на вимогу може зайняти багато часу. \n\nДосягнення &5EV&r відкриє методи, які зроблять їх ще дешевшими.", @@ -1477,7 +1477,7 @@ "quests.medium_voltage.mv_silicon_boule.desc": "&9Силіконові Булі&r створюються в &3ЕДП&r з половини стака &aСиліконового Пилу&r та дрібки &aАрсеніду Галію&r. Їх основне призначення — гравіювання &6Вафель для Схем&r. \n\nПісля створення Булі оброби її в &3Різаку&r, щоб отримати 16 Силіконових Вафель, готових до гравіювання. \n\n&cПопередження:&r Кожна Силіконова Буля займає &47.5 хвилин&r для створення при 120 EU/t, або 1,080,000 EU! Якщо ЕДП втратить живлення в процесі, рецепт почне &закривати прогрес&r. \n\nЗ огляду на це, Силіконові Булі створюються дуже довго, тому варто розглянути можливість паралельного виконання рецепту в декількох &3ЕДП&r та накопичення їх запасів.", "quests.medium_voltage.mv_silicon.title": "Силіконовий Пил", "quests.medium_voltage.mv_silicon.subtitle": "", - "quests.medium_voltage.mv_silicon.desc.1": "Тобі доведеться звикнути до цього: у &dGregtech&r завжди є &aдекілька способів&r досягти бажаного—філософія, яку ми зберегли в &aTerrafirmaGreg&r. \n\nЩоб отримати &5Кремній&r, ми запропонуємо &cдва основні методи&r, щоб ти мав чіткі напрямки. \nЯк завжди, вирішувати тобі, що є &aнайкращим для твоєї ситуації&r.", + "quests.medium_voltage.mv_silicon.desc.1": "Тобі доведеться звикнути до цього: у &dGregTech&r завжди є &aдекілька способів&r досягти бажаного—філософія, яку ми зберегли в &aTerrafirmaGreg&r. \n\nЩоб отримати &5Кремній&r, ми запропонуємо &cдва основні методи&r, щоб ти мав чіткі напрямки. \nЯк завжди, вирішувати тобі, що є &aнайкращим для твоєї ситуації&r.", "quests.medium_voltage.mv_silicon.desc.2": "Перший метод: &aвидобуток руд, багатих на кремній&r. Шукай жили &9Міки&r або &9Кіаніту&r—вони також містять &dАлюміній&r. Альтернативно, ти можеш &aелектролізувати пил цеоліту&r, який знаходиться у жилах &9Халькопіриту&r та &dРеальгару&r. \n\nДругий метод: &eпросунутий, але потужний&r. Хоча він дорожчий у налаштуванні та повільніший на початку, на рівні &6HV&r і вище він стає &eнайкращим методом&r. \nДо того ж, він додатково генерує &9Кисень&r! Ідея проста: &aелектролізуй пил діоксиду кремнію&r, щоб отримати &9Кисень&r та &5Кремній&r. Ти можеш отримати &aпил діоксиду кремнію&r шляхом &9центрифугування пилу кременю&r, який, у свою чергу, добувається з &9Кременю&r, отриманого через &aпросіювання гравію&r. \n\nЦя система може легко стати &aповністю пасивною&r. Спробуй використати інструмент &aEMI Recipe Tree&r (у нижньому лівому куті екрану) для планування своїх конструкцій—це справді допомагає!", "quests.medium_voltage.mv_ulpic.title": "ULPIC Чіпи", "quests.medium_voltage.mv_ulpic.subtitle": "Збираючи Чіпи", @@ -1635,7 +1635,7 @@ "quests.ore_proc.subtitle": "Все, що вам потрібно, щоб максимально ефективно використовувати руду", "quests.ore_proc.native_ore.title": "Ласкаво просимо до обробки руди", "quests.ore_proc.native_ore.subtitle": "Обробляти чи не обробляти, ось у чому питання", - "quests.ore_proc.native_ore.desc": "Важливою частиною &6Gregtech&r є його &dМеханіка обробки руди&r, але вона може бути досить складною, тож цей розділ допоможе розібратися!\n\nДля початку зверни увагу на вкладку &6Ore Processing Diagram&r в EMI — натисни клавішу перегляду використань (типово &bU&r) на будь-якому предметі, пов’язаному з обробкою руди, і знайди вкладку з іконкою звичайної залізної руди. Ця схема може здатися складною на перший погляд, але ми розглянемо її крок за кроком.\n\nОдна з головних ідей GregTech полягає в тому, що не існує єдиного правильного способу вирішення задачі — але ми позначили все важливе &estar&r, тож якщо зовсім заплутався, спробуй дотримуватися цих позначок!", + "quests.ore_proc.native_ore.desc": "Важливою частиною &6GregTech&r є його &dМеханіка обробки руди&r, але вона може бути досить складною, тож цей розділ допоможе розібратися!\n\nДля початку зверни увагу на вкладку &6Ore Processing Diagram&r в EMI — натисни клавішу перегляду використань (типово &bU&r) на будь-якому предметі, пов’язаному з обробкою руди, і знайди вкладку з іконкою звичайної залізної руди. Ця схема може здатися складною на перший погляд, але ми розглянемо її крок за кроком.\n\nОдна з головних ідей GregTech полягає в тому, що не існує єдиного правильного способу вирішення задачі — але ми позначили все важливе &estar&r, тож якщо зовсім заплутався, спробуй дотримуватися цих позначок!", "quests.ore_proc.native_ore.task": "Я згоден не кидати все підряд у піч", "quests.ore_proc.robot_arm.title": "Перероблення руди за допомогою власних інструментів GregTech", "quests.ore_proc.robot_arm.subtitle": "Надавання відповідей на власні проблеми", @@ -2303,7 +2303,7 @@ "quests.tfg_tips.glassblowing_tools.desc": "Щоб працювати з &dСклом&r, тобі знадобиться різноманітний набір інструментів. \n\n&3Лопатка&r: Виконує вирівнювання, головним чином використовується для створення &dСкляних Панелей&r та &dЛампових Скелець.&r \n&3- Алмазна Пила&r: Окрім того, що є обов’язковою для виготовлення скляних виробів, вона також може використовуватися для підбирання &dСкла&r та &cКристалічних Бруньок&r у світі, подібно до ефекту &bШовкового Дотику!&r \n&3Щипці&r: Використовуються для затискання скла, переважно для контейнерів, таких як &dСкляні Пляшки.&r \n&3Вовняна Тканина&r: Використовується для прокатки скла, необхідна для &dЛінз&r та &dБанок.&r", "quests.tfg_tips.glass_blocks.title": "Скляні блоки", "quests.tfg_tips.glass_blocks.subtitle": "Здобудь собі трохи вікон.", - "quests.tfg_tips.glass_blocks.desc": "Залежно від типу піску, використаного для &aСкляної Суміші&r, твоє фінальне &dСкло&r матиме різні кольори. \nПереглянь розділ &2Польового Посібника&r про &3Склодувне ремесло&r, щоб дізнатися інші способи створення специфічних кольорів. \nПізніше ти зможеш використовувати хімікати &3Gregtech&r для більш простого фарбування скла. \n\n&3&lПорада:&r&o Якщо тобі потрібно багато Скляних Блоків і ти маєш доступ до &bСплавного Плавильника&f, ефективніше створювати &dСкляні Панелі&f, &bподрібнювати&f їх, перетворювати на &dПил&r, а потім використовувати &aФорму для Блоків&f, оскільки одна партія може створити до 16 Малих Пилів за раз!", + "quests.tfg_tips.glass_blocks.desc": "Залежно від типу піску, використаного для &aСкляної Суміші&r, твоє фінальне &dСкло&r матиме різні кольори. \nПереглянь розділ &2Польового Посібника&r про &3Склодувне ремесло&r, щоб дізнатися інші способи створення специфічних кольорів. \nПізніше ти зможеш використовувати хімікати &3GregTech&r для більш простого фарбування скла. \n\n&3&lПорада:&r&o Якщо тобі потрібно багато Скляних Блоків і ти маєш доступ до &bСплавного Плавильника&f, ефективніше створювати &dСкляні Панелі&f, &bподрібнювати&f їх, перетворювати на &dПил&r, а потім використовувати &aФорму для Блоків&f, оскільки одна партія може створити до 16 Малих Пилів за раз!", "quests.tfg_tips.lamps.title": "Ліхтарі", "quests.tfg_tips.lamps.subtitle": "Це гарні.", "quests.tfg_tips.lamps.desc": "Як і в звичайному Minecraft, &dЛампи&r можна підвішувати до стелі за допомогою ланцюгів або розміщувати на верхній частині блоків. &dЛампи&r споживають різні види палива, щоб залишатися освітленими. Деякі види палива можуть горіти &4необмежено.&r \n\n&3&lПорада:&r&o Заповнені лампи можна розмістити в &6задньому&r слоті &cCurios Menu&r \nдля забезпечення динамічного освітлення без використання рук. Це може не працювати, якщо у тебе ввімкнені шейдери.", @@ -2412,23 +2412,23 @@ "quests.tfg_tips.grapple_length.desc": "За замовчуванням твій &dКрюк-кішка&r має &b80 блоків у довжину&r, ти можеш додати &cще 20&r, додаючи більше &aМотузкових Котків.&r Максимальна довжина — 200 блоків. \n\nДовжину можна &3зменшити&r, створивши його з &aНожем&r, &2зменшуючи її на 20&r, до мінімуму в 20 блоків.", "quests.tfg_tips.grapple_motor.title": "Покращення Крюка-кішки: Мотор", "quests.tfg_tips.grapple_motor.subtitle": "Такий ледачий, так?", - "quests.tfg_tips.grapple_motor.desc": "&aПокращення Мотора&r дозволяє автоматичне втягування твого &dКрюка.&r Слід бути обережним, оскільки &cвисокорівневі мотори&r можуть спричинити &4падіння&r через силу втягування. \n\nМотори розподілені за рівнями напруги &2Gregtech&r. Рецепти створення точно вказують, які характеристики були змінені та наскільки.", + "quests.tfg_tips.grapple_motor.desc": "&aПокращення Мотора&r дозволяє автоматичне втягування твого &dКрюка.&r Слід бути обережним, оскільки &cвисокорівневі мотори&r можуть спричинити &4падіння&r через силу втягування. \n\nМотори розподілені за рівнями напруги &2GregTech&r. Рецепти створення точно вказують, які характеристики були змінені та наскільки.", "quests.tfg_tips.grapple_smart_motor.title": "Покращення Крюка-кішки: Розумний Мотор", "quests.tfg_tips.grapple_smart_motor.subtitle": "Чи хтось взагалі знає, що це робить?", "quests.tfg_tips.grapple_smart_motor.desc": "&aПокращення Розумного Мотора&r активує &3систему Розумного Мотора&r. Для його роботи спочатку потрібно встановити &bПокращення Мотора&r.", "quests.tfg_tips.grapple_field.title": "Покращення Крюка-кішки: Поле Відштовхування", "quests.tfg_tips.grapple_field.subtitle": "Дивись, мамо! Я левітую!", - "quests.tfg_tips.grapple_field.desc": "&aПокращення Поля Відштовхування&r змушує тебе відштовхуватися від навколишніх блоків. Слід бути обережним, оскільки &cвисокий рівень сили відштовхування&r може спричинити &4падіння.&r \n\nПоля Відштовхування розподілені за рівнями напруги &2Gregtech&r. Рецепт створення точно вказує, які характеристики були змінені та наскільки.", + "quests.tfg_tips.grapple_field.desc": "&aПокращення Поля Відштовхування&r змушує тебе відштовхуватися від навколишніх блоків. Слід бути обережним, оскільки &cвисокий рівень сили відштовхування&r може спричинити &4падіння.&r \n\nПоля Відштовхування розподілені за рівнями напруги &2GregTech&r. Рецепт створення точно вказує, які характеристики були змінені та наскільки.", "quests.tfg_tips.grapple_magnet.title": "Покращення Крюка-кішки: Магнітний Гак", "quests.tfg_tips.grapple_magnet.subtitle": "Інтенсивне Притягнення", - "quests.tfg_tips.grapple_magnet.desc": "&aПокращення Магніту&r змушує твій &dКрюк&r притягатися до будь-яких близьких блоків, зачіпляючись за них. \n\nПокращення Магніту розподіляються за рівнями &2Gregtech&r на основі Магнітних Злитків, де найгірший — &bМагнітне Залізо&r, а найкращий — &bМагнітний Самарій.&r", + "quests.tfg_tips.grapple_magnet.desc": "&aПокращення Магніту&r змушує твій &dКрюк&r притягатися до будь-яких близьких блоків, зачіпляючись за них. \n\nПокращення Магніту розподіляються за рівнями &2GregTech&r на основі Магнітних Злитків, де найгірший — &bМагнітне Залізо&r, а найкращий — &bМагнітний Самарій.&r", "quests.tfg_tips.grapple_magnet.task": "Будь-який Магнітний Злиток", "quests.tfg_tips.grapple_sticky.title": "Покращення Крюка-кішки: Липка Мотузка", "quests.tfg_tips.grapple_sticky.subtitle": "Липкий!", "quests.tfg_tips.grapple_sticky.desc": "&aПокращення Липкості&r змушує твій &dКрюк&r прикріплюватися до будь-якої мотузки, що торкається блоку.", "quests.tfg_tips.grapple_throw_speed.title": "Покращення Крюка-кішки: Швидкість Кидка", "quests.tfg_tips.grapple_throw_speed.subtitle": "Йіт!", - "quests.tfg_tips.grapple_throw_speed.desc": "&aПокращення Швидкості Кидка&r змушує твій &dКрюк&r запускатися швидше. \n\nПокращення Швидкості Кидка розподілені за рівнями напруги &2Gregtech&r. Рецепт створення точно вказує, які характеристики були змінені та наскільки.", + "quests.tfg_tips.grapple_throw_speed.desc": "&aПокращення Швидкості Кидка&r змушує твій &dКрюк&r запускатися швидше. \n\nПокращення Швидкості Кидка розподілені за рівнями напруги &2GregTech&r. Рецепт створення точно вказує, які характеристики були змінені та наскільки.", "quests.tfg_tips.grapple_double.title": "Покращення Крюка-кішки: Подвійний Гак", "quests.tfg_tips.grapple_double.subtitle": "Подвійне Задоволення!", "quests.tfg_tips.grapple_double.desc": "&aПокращення Подвійного Гака&r дозволяє тобі кидати &dдва Крюки-кішки&r під кутом. Ти можеш налаштувати гарячі клавіші для окремого кидка кожного гака.", @@ -2557,7 +2557,7 @@ "quests.tfg_tips.aircraft_upgrades.desc": "&2Immersive Aircraft&r має &aОновлення Авіації&r, які можна встановити, щоб покращити характеристики літальних апаратів, зокрема швидкість, швидкість зльоту, витрати пального тощо. Існує два типи оновлень: &bзвичайні&r та &dрангові.&r \n\nУ цьому завданні представлені &bзвичайні&r оновлення. Думаєш, зможеш зібрати їх усі?", "quests.tfg_tips.steam_upgrades.title": "Оновлення авіації: Парові", "quests.tfg_tips.steam_upgrades.subtitle": "Immersive Aircraft зустрічається з ранжуванням GregTech!", - "quests.tfg_tips.steam_upgrades.desc": "Другий тип оновлень авіації — це &dРангові Оновлення.&r Вони створені відповідно до &3Gregtech&r системи рангів, починаючи з &8Парового&r рівня і аж до &5EV.&r \n\nПарові оновлення — найпростіші та найраніші у створенні, вони вимагають хоча б базових знань про &bЧорну Сталь.&r \n\n&dПарові Авіаційні Двигуни&r використовуються для створення більш складних літальних апаратів, таких як &eБіплан&r та &cВійськовий Корабель.&r", + "quests.tfg_tips.steam_upgrades.desc": "Другий тип оновлень авіації — це &dРангові Оновлення.&r Вони створені відповідно до &3GregTech&r системи рангів, починаючи з &8Парового&r рівня і аж до &5EV.&r \n\nПарові оновлення — найпростіші та найраніші у створенні, вони вимагають хоча б базових знань про &bЧорну Сталь.&r \n\n&dПарові Авіаційні Двигуни&r використовуються для створення більш складних літальних апаратів, таких як &eБіплан&r та &cВійськовий Корабель.&r", "quests.tfg_tips.steam_upgrades.task": "Будь-яке парове оновлення авіації", "quests.tfg_tips.lv_upgrades.title": "Оновлення авіації: LV", "quests.tfg_tips.lv_upgrades.subtitle": "Червоний і синій — точно не конфліктують.", diff --git a/kubejs/assets/tfg/models/block/loose/red_granite_1.json b/kubejs/assets/tfg/models/block/loose/red_granite_1.json new file mode 100644 index 000000000..4bc17ce24 --- /dev/null +++ b/kubejs/assets/tfg/models/block/loose/red_granite_1.json @@ -0,0 +1,6 @@ +{ + "parent": "tfc:block/rock/loose_igneous_intrusive_1", + "textures": { + "texture": "gtceu:block/stones/red_granite/stone" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/loose/red_granite_2.json b/kubejs/assets/tfg/models/block/loose/red_granite_2.json new file mode 100644 index 000000000..1a1778f08 --- /dev/null +++ b/kubejs/assets/tfg/models/block/loose/red_granite_2.json @@ -0,0 +1,6 @@ +{ + "parent": "tfc:block/rock/loose_igneous_intrusive_2", + "textures": { + "texture": "gtceu:block/stones/red_granite/stone" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/loose/red_granite_3.json b/kubejs/assets/tfg/models/block/loose/red_granite_3.json new file mode 100644 index 000000000..0346e0695 --- /dev/null +++ b/kubejs/assets/tfg/models/block/loose/red_granite_3.json @@ -0,0 +1,6 @@ +{ + "parent": "tfc:block/rock/loose_igneous_intrusive_3", + "textures": { + "texture": "gtceu:block/stones/red_granite/stone" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/rock/hardened_red_granite.json b/kubejs/assets/tfg/models/block/rock/hardened_red_granite.json new file mode 100644 index 000000000..015588363 --- /dev/null +++ b/kubejs/assets/tfg/models/block/rock/hardened_red_granite.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "gtceu:block/stones/red_granite/stone" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/red_granite_base.json b/kubejs/assets/tfg/models/block/spike/red_granite_base.json new file mode 100644 index 000000000..043779ceb --- /dev/null +++ b/kubejs/assets/tfg/models/block/spike/red_granite_base.json @@ -0,0 +1,7 @@ +{ + "parent": "tfc:block/rock/spike_base", + "textures": { + "texture": "gtceu:block/stones/red_granite/stone", + "particle": "gtceu:block/stones/red_granite/stone" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/red_granite_middle.json b/kubejs/assets/tfg/models/block/spike/red_granite_middle.json new file mode 100644 index 000000000..5ee27d884 --- /dev/null +++ b/kubejs/assets/tfg/models/block/spike/red_granite_middle.json @@ -0,0 +1,7 @@ +{ + "parent": "tfc:block/rock/spike_middle", + "textures": { + "texture": "gtceu:block/stones/red_granite/stone", + "particle": "gtceu:block/stones/red_granite/stone" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/red_granite_tip.json b/kubejs/assets/tfg/models/block/spike/red_granite_tip.json new file mode 100644 index 000000000..0a70c78b8 --- /dev/null +++ b/kubejs/assets/tfg/models/block/spike/red_granite_tip.json @@ -0,0 +1,7 @@ +{ + "parent": "tfc:block/rock/spike_tip", + "textures": { + "texture": "gtceu:block/stones/red_granite/stone", + "particle": "gtceu:block/stones/red_granite/stone" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/aes_compressed_wool.json b/kubejs/assets/tfg/models/item/aes_compressed_wool.json new file mode 100644 index 000000000..bc97a0aea --- /dev/null +++ b/kubejs/assets/tfg/models/item/aes_compressed_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/aes_compressed_wool" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/aes_insulation_roll.json b/kubejs/assets/tfg/models/item/aes_insulation_roll.json new file mode 100644 index 000000000..34631a112 --- /dev/null +++ b/kubejs/assets/tfg/models/item/aes_insulation_roll.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/aes_insulation_roll" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/aes_insulation_sheet.json b/kubejs/assets/tfg/models/item/aes_insulation_sheet.json new file mode 100644 index 000000000..c7c19c8db --- /dev/null +++ b/kubejs/assets/tfg/models/item/aes_insulation_sheet.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/aes_insulation_sheet" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/aes_wool.json b/kubejs/assets/tfg/models/item/aes_wool.json new file mode 100644 index 000000000..f37e1abed --- /dev/null +++ b/kubejs/assets/tfg/models/item/aes_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/aes_wool" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/aluminium_harvest_basket.json b/kubejs/assets/tfg/models/item/aluminium_harvest_basket.json new file mode 100644 index 000000000..81f801ada --- /dev/null +++ b/kubejs/assets/tfg/models/item/aluminium_harvest_basket.json @@ -0,0 +1,212 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "0": "tfg:item/aluminium_harvest_basket", + "particle": "tfg:item/aluminium_harvest_basket" + }, + "elements": [ + { + "from": [3, 0, 1], + "to": [4, 6, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 3]}, + "faces": { + "north": {"uv": [0.5, 3, 1, 6], "texture": "#0"}, + "east": {"uv": [7, 9, 14, 12], "texture": "#0"}, + "south": {"uv": [0.5, 3, 1, 6], "texture": "#0"}, + "west": {"uv": [0, 0, 7, 3], "texture": "#0"}, + "up": {"uv": [0.5, 10, 0, 3], "texture": "#0"}, + "down": {"uv": [0.5, 3, 0, 10], "texture": "#0"} + } + }, + { + "from": [12, 0, 1], + "to": [13, 6, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 3]}, + "faces": { + "north": {"uv": [0.5, 3, 1, 6], "texture": "#0"}, + "east": {"uv": [0, 0, 7, 3], "texture": "#0"}, + "south": {"uv": [0.5, 3, 1, 6], "texture": "#0"}, + "west": {"uv": [7, 9, 14, 12], "texture": "#0"}, + "up": {"uv": [0.5, 10, 0, 3], "texture": "#0"}, + "down": {"uv": [0.5, 3, 0, 10], "texture": "#0"} + } + }, + { + "from": [4, 0, 2], + "to": [12, 1, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 0, 2]}, + "faces": { + "north": {"uv": [3, 3.5, 7, 4], "texture": "#0"}, + "east": {"uv": [1, 3, 7, 3.5], "texture": "#0"}, + "south": {"uv": [3, 3.5, 7, 4], "texture": "#0"}, + "west": {"uv": [1, 3, 7, 3.5], "texture": "#0"}, + "up": {"uv": [7, 0, 11, 6], "texture": "#0"}, + "down": {"uv": [7, 0, 11, 6], "texture": "#0"} + } + }, + { + "from": [4, 0, 1], + "to": [12, 6, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 0, 1]}, + "faces": { + "north": {"uv": [7, 6, 11, 9], "texture": "#0"}, + "east": {"uv": [1, 3.5, 1.5, 6.5], "texture": "#0"}, + "south": {"uv": [11, 6, 15, 9], "texture": "#0"}, + "west": {"uv": [1, 3.5, 1.5, 6.5], "texture": "#0"}, + "up": {"uv": [3, 4, 7, 4.5], "texture": "#0"}, + "down": {"uv": [3, 4, 7, 4.5], "texture": "#0"} + } + }, + { + "from": [4, 0, 14], + "to": [12, 6, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 0, 14]}, + "faces": { + "north": {"uv": [11, 6, 15, 9], "texture": "#0"}, + "east": {"uv": [1, 3.5, 1.5, 6.5], "texture": "#0"}, + "south": {"uv": [7, 6, 11, 9], "texture": "#0"}, + "west": {"uv": [1, 3.5, 1.5, 6.5], "texture": "#0"}, + "up": {"uv": [3, 4, 7, 4.5], "texture": "#0"}, + "down": {"uv": [3, 4, 7, 4.5], "texture": "#0"} + } + }, + { + "from": [2.9, 5, 4], + "to": [2.9, 12, 5], + "rotation": {"angle": 22.5, "axis": "x", "origin": [3, 4, 4]}, + "faces": { + "north": {"uv": [0, 0, 0, 3.5], "texture": "#0"}, + "east": {"uv": [1.5, 7, 2, 10.5], "texture": "#0"}, + "south": {"uv": [0, 0, 0, 3.5], "texture": "#0"}, + "west": {"uv": [1.5, 3.5, 2, 7], "texture": "#0"}, + "up": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "down": {"uv": [0, 0, 0, 0.5], "texture": "#0"} + } + }, + { + "from": [13.1, 5, 4], + "to": [13.1, 12, 5], + "rotation": {"angle": 22.5, "axis": "x", "origin": [13.2, 4, 4]}, + "faces": { + "north": {"uv": [0, 0, 0, 3.5], "texture": "#0"}, + "east": {"uv": [1.5, 3.5, 2, 7], "texture": "#0"}, + "south": {"uv": [0, 0, 0, 3.5], "texture": "#0"}, + "west": {"uv": [1.5, 7, 2, 10.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "down": {"uv": [0, 0, 0, 0.5], "texture": "#0"} + } + }, + { + "from": [2.9, 11.39004, 7.06147], + "to": [13.1, 11.39004, 8.06147], + "rotation": {"angle": 22.5, "axis": "x", "origin": [2.9, 11.39004, 7.06147]}, + "faces": { + "north": {"uv": [0, 0, 5.1, 0], "texture": "#0"}, + "east": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "south": {"uv": [0, 0, 5.1, 0], "texture": "#0"}, + "west": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "up": {"uv": [2, 4.5, 7, 5], "texture": "#0"}, + "down": {"uv": [2, 5, 7, 5.5], "texture": "#0"} + } + }, + { + "from": [2.9, 5, 11], + "to": [2.9, 12, 12], + "rotation": {"angle": -22.5, "axis": "x", "origin": [3, 4, 12]}, + "faces": { + "north": {"uv": [0, 0, 0, 3.5], "texture": "#0"}, + "east": {"uv": [2, 7, 1.5, 10.5], "texture": "#0"}, + "south": {"uv": [0, 0, 0, 3.5], "texture": "#0"}, + "west": {"uv": [2, 3.5, 1.5, 7], "texture": "#0"}, + "up": {"uv": [0, 0.5, 0, 0], "texture": "#0"}, + "down": {"uv": [0, 0.5, 0, 0], "texture": "#0"} + } + }, + { + "from": [13.1, 5, 11], + "to": [13.1, 12, 12], + "rotation": {"angle": -22.5, "axis": "x", "origin": [13.2, 4, 12]}, + "faces": { + "north": {"uv": [0, 0, 0, 3.5], "texture": "#0"}, + "east": {"uv": [2, 3.5, 1.5, 7], "texture": "#0"}, + "south": {"uv": [0, 0, 0, 3.5], "texture": "#0"}, + "west": {"uv": [2, 7, 1.5, 10.5], "texture": "#0"}, + "up": {"uv": [0, 0.5, 0, 0], "texture": "#0"}, + "down": {"uv": [0, 0.5, 0, 0], "texture": "#0"} + } + }, + { + "from": [2.9, 11.39004, 7.93853], + "to": [13.1, 11.39004, 8.93853], + "rotation": {"angle": -22.5, "axis": "x", "origin": [2.9, 11.39004, 8.93853]}, + "faces": { + "north": {"uv": [5.1, 0, 0, 0], "texture": "#0"}, + "east": {"uv": [0.5, 0, 0, 0], "texture": "#0"}, + "south": {"uv": [5.1, 0, 0, 0], "texture": "#0"}, + "west": {"uv": [0.5, 0, 0, 0], "texture": "#0"}, + "up": {"uv": [2, 5, 7, 4.5], "texture": "#0"}, + "down": {"uv": [2, 5.5, 7, 5], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [74, 0, 0], + "translation": [0, -2.25, -1.5], + "scale": [0.75, 0.75, 0.76] + }, + "thirdperson_lefthand": { + "rotation": [74, 0, 0], + "translation": [0, -2.25, -1.5], + "scale": [0.75, 0.75, 0.76] + }, + "firstperson_righthand": { + "rotation": [32, 0, 12], + "translation": [0, 1.25, 4] + }, + "firstperson_lefthand": { + "rotation": [32, 0, 12], + "translation": [0, 1.25, 4] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [30, -53, 0], + "translation": [0, 1.75, 0], + "scale": [0.75, 0.75, 0.75] + }, + "head": { + "rotation": [-170.75, 0, 0], + "translation": [0, -1.75, 0], + "scale": [1.6, 1.5, 1.4] + }, + "fixed": { + "rotation": [0, -90, 0], + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + { + "name": "basket", + "origin": [7, 0, 3], + "color": 0, + "children": [0, 1, 2, 3, 4] + }, + { + "name": "handle1", + "origin": [3, 4, 4], + "color": 0, + "children": [5, 6, 7] + }, + { + "name": "handle2", + "origin": [3, 4, 4], + "color": 0, + "children": [8, 9, 10] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/flint_club_head.json b/kubejs/assets/tfg/models/item/flint_club_head.json new file mode 100644 index 000000000..dedcd0191 --- /dev/null +++ b/kubejs/assets/tfg/models/item/flint_club_head.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/flint_club_head" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/harvest_basket.json b/kubejs/assets/tfg/models/item/harvest_basket.json new file mode 100644 index 000000000..25e299bf5 --- /dev/null +++ b/kubejs/assets/tfg/models/item/harvest_basket.json @@ -0,0 +1,212 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "0": "tfg:item/harvest_basket", + "particle": "tfg:item/harvest_basket" + }, + "elements": [ + { + "from": [3, 0, 1], + "to": [4, 6, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 3]}, + "faces": { + "north": {"uv": [0.5, 3, 1, 6], "texture": "#0"}, + "east": {"uv": [7, 9, 14, 12], "texture": "#0"}, + "south": {"uv": [0.5, 3, 1, 6], "texture": "#0"}, + "west": {"uv": [0, 0, 7, 3], "texture": "#0"}, + "up": {"uv": [0.5, 10, 0, 3], "texture": "#0"}, + "down": {"uv": [0.5, 3, 0, 10], "texture": "#0"} + } + }, + { + "from": [12, 0, 1], + "to": [13, 6, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 3]}, + "faces": { + "north": {"uv": [0.5, 3, 1, 6], "texture": "#0"}, + "east": {"uv": [0, 0, 7, 3], "texture": "#0"}, + "south": {"uv": [0.5, 3, 1, 6], "texture": "#0"}, + "west": {"uv": [7, 9, 14, 12], "texture": "#0"}, + "up": {"uv": [0.5, 10, 0, 3], "texture": "#0"}, + "down": {"uv": [0.5, 3, 0, 10], "texture": "#0"} + } + }, + { + "from": [4, 0, 2], + "to": [12, 1, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 0, 2]}, + "faces": { + "north": {"uv": [3, 3.5, 7, 4], "texture": "#0"}, + "east": {"uv": [1, 3, 7, 3.5], "texture": "#0"}, + "south": {"uv": [3, 3.5, 7, 4], "texture": "#0"}, + "west": {"uv": [1, 3, 7, 3.5], "texture": "#0"}, + "up": {"uv": [7, 0, 11, 6], "texture": "#0"}, + "down": {"uv": [7, 0, 11, 6], "texture": "#0"} + } + }, + { + "from": [4, 0, 1], + "to": [12, 6, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 0, 1]}, + "faces": { + "north": {"uv": [7, 6, 11, 9], "texture": "#0"}, + "east": {"uv": [1, 3.5, 1.5, 6.5], "texture": "#0"}, + "south": {"uv": [11, 6, 15, 9], "texture": "#0"}, + "west": {"uv": [1, 3.5, 1.5, 6.5], "texture": "#0"}, + "up": {"uv": [3, 4, 7, 4.5], "texture": "#0"}, + "down": {"uv": [3, 4, 7, 4.5], "texture": "#0"} + } + }, + { + "from": [4, 0, 14], + "to": [12, 6, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 0, 14]}, + "faces": { + "north": {"uv": [11, 6, 15, 9], "texture": "#0"}, + "east": {"uv": [1, 3.5, 1.5, 6.5], "texture": "#0"}, + "south": {"uv": [7, 6, 11, 9], "texture": "#0"}, + "west": {"uv": [1, 3.5, 1.5, 6.5], "texture": "#0"}, + "up": {"uv": [3, 4, 7, 4.5], "texture": "#0"}, + "down": {"uv": [3, 4, 7, 4.5], "texture": "#0"} + } + }, + { + "from": [2.9, 5, 4], + "to": [2.9, 12, 5], + "rotation": {"angle": 22.5, "axis": "x", "origin": [3, 4, 4]}, + "faces": { + "north": {"uv": [0, 0, 0, 3.5], "texture": "#0"}, + "east": {"uv": [1.5, 7, 2, 10.5], "texture": "#0"}, + "south": {"uv": [0, 0, 0, 3.5], "texture": "#0"}, + "west": {"uv": [1.5, 3.5, 2, 7], "texture": "#0"}, + "up": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "down": {"uv": [0, 0, 0, 0.5], "texture": "#0"} + } + }, + { + "from": [13.1, 5, 4], + "to": [13.1, 12, 5], + "rotation": {"angle": 22.5, "axis": "x", "origin": [13.2, 4, 4]}, + "faces": { + "north": {"uv": [0, 0, 0, 3.5], "texture": "#0"}, + "east": {"uv": [1.5, 3.5, 2, 7], "texture": "#0"}, + "south": {"uv": [0, 0, 0, 3.5], "texture": "#0"}, + "west": {"uv": [1.5, 7, 2, 10.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "down": {"uv": [0, 0, 0, 0.5], "texture": "#0"} + } + }, + { + "from": [2.9, 11.39004, 7.06147], + "to": [13.1, 11.39004, 8.06147], + "rotation": {"angle": 22.5, "axis": "x", "origin": [2.9, 11.39004, 7.06147]}, + "faces": { + "north": {"uv": [0, 0, 5.1, 0], "texture": "#0"}, + "east": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "south": {"uv": [0, 0, 5.1, 0], "texture": "#0"}, + "west": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "up": {"uv": [2, 4.5, 7, 5], "texture": "#0"}, + "down": {"uv": [2, 5, 7, 5.5], "texture": "#0"} + } + }, + { + "from": [2.9, 5, 11], + "to": [2.9, 12, 12], + "rotation": {"angle": -22.5, "axis": "x", "origin": [3, 4, 12]}, + "faces": { + "north": {"uv": [0, 0, 0, 3.5], "texture": "#0"}, + "east": {"uv": [2, 7, 1.5, 10.5], "texture": "#0"}, + "south": {"uv": [0, 0, 0, 3.5], "texture": "#0"}, + "west": {"uv": [2, 3.5, 1.5, 7], "texture": "#0"}, + "up": {"uv": [0, 0.5, 0, 0], "texture": "#0"}, + "down": {"uv": [0, 0.5, 0, 0], "texture": "#0"} + } + }, + { + "from": [13.1, 5, 11], + "to": [13.1, 12, 12], + "rotation": {"angle": -22.5, "axis": "x", "origin": [13.2, 4, 12]}, + "faces": { + "north": {"uv": [0, 0, 0, 3.5], "texture": "#0"}, + "east": {"uv": [2, 3.5, 1.5, 7], "texture": "#0"}, + "south": {"uv": [0, 0, 0, 3.5], "texture": "#0"}, + "west": {"uv": [2, 7, 1.5, 10.5], "texture": "#0"}, + "up": {"uv": [0, 0.5, 0, 0], "texture": "#0"}, + "down": {"uv": [0, 0.5, 0, 0], "texture": "#0"} + } + }, + { + "from": [2.9, 11.39004, 7.93853], + "to": [13.1, 11.39004, 8.93853], + "rotation": {"angle": -22.5, "axis": "x", "origin": [2.9, 11.39004, 8.93853]}, + "faces": { + "north": {"uv": [5.1, 0, 0, 0], "texture": "#0"}, + "east": {"uv": [0.5, 0, 0, 0], "texture": "#0"}, + "south": {"uv": [5.1, 0, 0, 0], "texture": "#0"}, + "west": {"uv": [0.5, 0, 0, 0], "texture": "#0"}, + "up": {"uv": [2, 5, 7, 4.5], "texture": "#0"}, + "down": {"uv": [2, 5.5, 7, 5], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [74, 0, 0], + "translation": [0, -2.25, -1.5], + "scale": [0.75, 0.75, 0.76] + }, + "thirdperson_lefthand": { + "rotation": [74, 0, 0], + "translation": [0, -2.25, -1.5], + "scale": [0.75, 0.75, 0.76] + }, + "firstperson_righthand": { + "rotation": [32, 0, 12], + "translation": [0, 1.25, 4] + }, + "firstperson_lefthand": { + "rotation": [32, 0, 12], + "translation": [0, 1.25, 4] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [30, -53, 0], + "translation": [0, 1.75, 0], + "scale": [0.75, 0.75, 0.75] + }, + "head": { + "rotation": [-170.75, 0, 0], + "translation": [0, -1.75, 0], + "scale": [1.6, 1.5, 1.4] + }, + "fixed": { + "rotation": [0, -90, 0], + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + { + "name": "basket", + "origin": [7, 0, 3], + "color": 0, + "children": [0, 1, 2, 3, 4] + }, + { + "name": "handle1", + "origin": [3, 4, 4], + "color": 0, + "children": [5, 6, 7] + }, + { + "name": "handle2", + "origin": [3, 4, 4], + "color": 0, + "children": [8, 9, 10] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/block/metal/smooth/lead.png b/kubejs/assets/tfg/textures/block/metal/smooth/lead.png new file mode 100644 index 000000000..820378c3a Binary files /dev/null and b/kubejs/assets/tfg/textures/block/metal/smooth/lead.png differ diff --git a/kubejs/assets/tfg/textures/block/support/aeronos_support.png b/kubejs/assets/tfg/textures/block/support/aeronos_support.png new file mode 100644 index 000000000..dd8dcaa66 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/support/aeronos_support.png differ diff --git a/kubejs/assets/tfg/textures/block/support/glacian_support.png b/kubejs/assets/tfg/textures/block/support/glacian_support.png new file mode 100644 index 000000000..1e62a9079 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/support/glacian_support.png differ diff --git a/kubejs/assets/tfg/textures/block/support/strophar_support.png b/kubejs/assets/tfg/textures/block/support/strophar_support.png new file mode 100644 index 000000000..1310b2b4d Binary files /dev/null and b/kubejs/assets/tfg/textures/block/support/strophar_support.png differ diff --git a/kubejs/assets/tfg/textures/gui/tfg_logo_icon_outline_white_sr_456p.gif b/kubejs/assets/tfg/textures/gui/tfg_logo_icon_outline_white_sr_456p.gif new file mode 100644 index 000000000..3c2aa47db Binary files /dev/null and b/kubejs/assets/tfg/textures/gui/tfg_logo_icon_outline_white_sr_456p.gif differ diff --git a/kubejs/assets/tfg/textures/gui/tfg_logo_icon_outline_white_sr_964x_1024p.gif b/kubejs/assets/tfg/textures/gui/tfg_logo_icon_outline_white_sr_964x_1024p.gif deleted file mode 100644 index 83af9cac6..000000000 Binary files a/kubejs/assets/tfg/textures/gui/tfg_logo_icon_outline_white_sr_964x_1024p.gif and /dev/null differ diff --git a/kubejs/assets/tfg/textures/gui/tfg_logo_title_4181x688_with_shadow.png b/kubejs/assets/tfg/textures/gui/tfg_logo_title_4181x688_with_shadow.png new file mode 100644 index 000000000..a96616282 Binary files /dev/null and b/kubejs/assets/tfg/textures/gui/tfg_logo_title_4181x688_with_shadow.png differ diff --git a/kubejs/assets/tfg/textures/gui/tfg_title_stars.gif b/kubejs/assets/tfg/textures/gui/tfg_title_stars.gif deleted file mode 100644 index 25409dc11..000000000 Binary files a/kubejs/assets/tfg/textures/gui/tfg_title_stars.gif and /dev/null differ diff --git a/kubejs/assets/tfg/textures/gui/tfg_title_vignette.png b/kubejs/assets/tfg/textures/gui/tfg_title_vignette.png deleted file mode 100644 index 9fceee3c8..000000000 Binary files a/kubejs/assets/tfg/textures/gui/tfg_title_vignette.png and /dev/null differ diff --git a/kubejs/assets/tfg/textures/item/aes_compressed_wool.png b/kubejs/assets/tfg/textures/item/aes_compressed_wool.png new file mode 100644 index 000000000..3613232d6 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/aes_compressed_wool.png differ diff --git a/kubejs/assets/tfg/textures/item/aes_insulation_roll.png b/kubejs/assets/tfg/textures/item/aes_insulation_roll.png new file mode 100644 index 000000000..a57bc2e65 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/aes_insulation_roll.png differ diff --git a/kubejs/assets/tfg/textures/item/aes_insulation_sheet.png b/kubejs/assets/tfg/textures/item/aes_insulation_sheet.png new file mode 100644 index 000000000..6145f3518 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/aes_insulation_sheet.png differ diff --git a/kubejs/assets/tfg/textures/item/aes_wool.png b/kubejs/assets/tfg/textures/item/aes_wool.png new file mode 100644 index 000000000..5d883020b Binary files /dev/null and b/kubejs/assets/tfg/textures/item/aes_wool.png differ diff --git a/kubejs/assets/tfg/textures/item/aluminium_harvest_basket.png b/kubejs/assets/tfg/textures/item/aluminium_harvest_basket.png new file mode 100644 index 000000000..71b5747c9 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/aluminium_harvest_basket.png differ diff --git a/kubejs/assets/tfg/textures/item/axe_head_extruder_mold.png b/kubejs/assets/tfg/textures/item/axe_head_extruder_mold.png index 458d3bc58..37502c6f4 100644 Binary files a/kubejs/assets/tfg/textures/item/axe_head_extruder_mold.png and b/kubejs/assets/tfg/textures/item/axe_head_extruder_mold.png differ diff --git a/kubejs/assets/tfg/textures/item/flint_club_head.png b/kubejs/assets/tfg/textures/item/flint_club_head.png new file mode 100644 index 000000000..2f9af8d2c Binary files /dev/null and b/kubejs/assets/tfg/textures/item/flint_club_head.png differ diff --git a/kubejs/assets/tfg/textures/item/food/ice_soup.png b/kubejs/assets/tfg/textures/item/food/ice_soup.png new file mode 100644 index 000000000..078153731 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/ice_soup.png differ diff --git a/kubejs/assets/tfg/textures/item/harvest_basket.png b/kubejs/assets/tfg/textures/item/harvest_basket.png new file mode 100644 index 000000000..befb0dcc2 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/harvest_basket.png differ diff --git a/kubejs/assets/tfg/textures/item/scythe_head_extruder_mold.png b/kubejs/assets/tfg/textures/item/scythe_head_extruder_mold.png index 731208158..3ced0aea9 100644 Binary files a/kubejs/assets/tfg/textures/item/scythe_head_extruder_mold.png and b/kubejs/assets/tfg/textures/item/scythe_head_extruder_mold.png differ diff --git a/kubejs/assets/tfg/textures/item/shovel_head_extruder_mold.png b/kubejs/assets/tfg/textures/item/shovel_head_extruder_mold.png index f69652eda..457c4ef35 100644 Binary files a/kubejs/assets/tfg/textures/item/shovel_head_extruder_mold.png and b/kubejs/assets/tfg/textures/item/shovel_head_extruder_mold.png differ diff --git a/kubejs/assets/tfg/textures/item/spade_head_extruder_mold.png b/kubejs/assets/tfg/textures/item/spade_head_extruder_mold.png index 9ede5476b..42851fb87 100644 Binary files a/kubejs/assets/tfg/textures/item/spade_head_extruder_mold.png and b/kubejs/assets/tfg/textures/item/spade_head_extruder_mold.png differ diff --git a/kubejs/assets/tfg/textures/item/sword_head_extruder_mold.png b/kubejs/assets/tfg/textures/item/sword_head_extruder_mold.png index 36bbf22fa..408fc95b1 100644 Binary files a/kubejs/assets/tfg/textures/item/sword_head_extruder_mold.png and b/kubejs/assets/tfg/textures/item/sword_head_extruder_mold.png differ diff --git a/kubejs/assets/tfg/textures/item/tacz_helpers/large_casing_mold.png b/kubejs/assets/tfg/textures/item/tacz_helpers/large_casing_mold.png index b864a0440..ca3afba7c 100644 Binary files a/kubejs/assets/tfg/textures/item/tacz_helpers/large_casing_mold.png and b/kubejs/assets/tfg/textures/item/tacz_helpers/large_casing_mold.png differ diff --git a/kubejs/assets/tfg/textures/item/tacz_helpers/shell_casing_mold.png b/kubejs/assets/tfg/textures/item/tacz_helpers/shell_casing_mold.png index 62948948d..539e6c682 100644 Binary files a/kubejs/assets/tfg/textures/item/tacz_helpers/shell_casing_mold.png and b/kubejs/assets/tfg/textures/item/tacz_helpers/shell_casing_mold.png differ diff --git a/kubejs/assets/tfg/textures/item/tacz_helpers/small_casing_mold.png b/kubejs/assets/tfg/textures/item/tacz_helpers/small_casing_mold.png index b820280ad..491dd3f28 100644 Binary files a/kubejs/assets/tfg/textures/item/tacz_helpers/small_casing_mold.png and b/kubejs/assets/tfg/textures/item/tacz_helpers/small_casing_mold.png differ diff --git a/kubejs/assets/tfg/textures/item/wire_cutter_head_extruder_mold.png b/kubejs/assets/tfg/textures/item/wire_cutter_head_extruder_mold.png index 9ec9d20b0..53e2c185e 100644 Binary files a/kubejs/assets/tfg/textures/item/wire_cutter_head_extruder_mold.png and b/kubejs/assets/tfg/textures/item/wire_cutter_head_extruder_mold.png differ diff --git a/kubejs/assets/tfg/textures/item/wood/lumber/aeronos.png b/kubejs/assets/tfg/textures/item/wood/lumber/aeronos.png new file mode 100644 index 000000000..aaf28be6c Binary files /dev/null and b/kubejs/assets/tfg/textures/item/wood/lumber/aeronos.png differ diff --git a/kubejs/assets/tfg/textures/item/wood/lumber/glacian.png b/kubejs/assets/tfg/textures/item/wood/lumber/glacian.png new file mode 100644 index 000000000..b844a3c4e Binary files /dev/null and b/kubejs/assets/tfg/textures/item/wood/lumber/glacian.png differ diff --git a/kubejs/assets/tfg/textures/item/wood/lumber/strophar.png b/kubejs/assets/tfg/textures/item/wood/lumber/strophar.png new file mode 100644 index 000000000..4d519e07f Binary files /dev/null and b/kubejs/assets/tfg/textures/item/wood/lumber/strophar.png differ diff --git a/kubejs/client_scripts/tooltips.js b/kubejs/client_scripts/tooltips.js index 7e490807f..33750b17a 100644 --- a/kubejs/client_scripts/tooltips.js +++ b/kubejs/client_scripts/tooltips.js @@ -84,6 +84,11 @@ const registerTooltips = (event) => text.add(1, text.of('§79 x 5 x 9')) }) }) + global.AD_ASTRA_WOOD.forEach(wood => { + event.addAdvanced([`tfg:${wood.name}_support`], (item, advanced, text) => { + text.add(1, text.of('§79 x 5 x 9')) + }) + }) event.addAdvanced(['tfg:light_concrete_support', 'tfg:dark_concrete_support', 'tfg:rebar_support'], (item, advanced, text) => { text.add(1, text.of('§717 x 9 x 17')) }) diff --git a/kubejs/data/ad_astra/dimension/mars.json b/kubejs/data/ad_astra/dimension/mars.json index 9a3ecd53e..f8b30df0a 100644 --- a/kubejs/data/ad_astra/dimension/mars.json +++ b/kubejs/data/ad_astra/dimension/mars.json @@ -1,204942 +1,102525 @@ { "type": "ad_astra:mars", "generator": { - "type": "minecraft:noise", - "biome_source": { - "type": "minecraft:multi_noise", - "biomes": [ - { - "biome": "minecraft:mushroom_fields", - "parameters": { - "continentalness": [ - -1.2, - -1.05 - ], - "depth": 0, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - 1 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:mushroom_fields", - "parameters": { - "continentalness": [ - -1.2, - -1.05 - ], - "depth": 1, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - 1 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:deep_frozen_ocean", - "parameters": { - "continentalness": [ - -1.05, - -0.455 - ], - "depth": 0, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:deep_frozen_ocean", - "parameters": { - "continentalness": [ - -1.05, - -0.455 - ], - "depth": 1, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:frozen_ocean", - "parameters": { - "continentalness": [ - -0.455, - -0.19 - ], - "depth": 0, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:frozen_ocean", - "parameters": { - "continentalness": [ - -0.455, - -0.19 - ], - "depth": 1, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:deep_cold_ocean", - "parameters": { - "continentalness": [ - -1.05, - -0.455 - ], - "depth": 0, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:deep_cold_ocean", - "parameters": { - "continentalness": [ - -1.05, - -0.455 - ], - "depth": 1, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:cold_ocean", - "parameters": { - "continentalness": [ - -0.455, - -0.19 - ], - "depth": 0, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:cold_ocean", - "parameters": { - "continentalness": [ - -0.455, - -0.19 - ], - "depth": 1, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:deep_ocean", - "parameters": { - "continentalness": [ - -1.05, - -0.455 - ], - "depth": 0, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:deep_ocean", - "parameters": { - "continentalness": [ - -1.05, - -0.455 - ], - "depth": 1, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:ocean", - "parameters": { - "continentalness": [ - -0.455, - -0.19 - ], - "depth": 0, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:ocean", - "parameters": { - "continentalness": [ - -0.455, - -0.19 - ], - "depth": 1, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:deep_lukewarm_ocean", - "parameters": { - "continentalness": [ - -1.05, - -0.455 - ], - "depth": 0, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:deep_lukewarm_ocean", - "parameters": { - "continentalness": [ - -1.05, - -0.455 - ], - "depth": 1, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:lukewarm_ocean", - "parameters": { - "continentalness": [ - -0.455, - -0.19 - ], - "depth": 0, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:lukewarm_ocean", - "parameters": { - "continentalness": [ - -0.455, - -0.19 - ], - "depth": 1, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:warm_ocean", - "parameters": { - "continentalness": [ - -1.05, - -0.455 - ], - "depth": 0, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:warm_ocean", - "parameters": { - "continentalness": [ - -1.05, - -0.455 - ], - "depth": 1, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:warm_ocean", - "parameters": { - "continentalness": [ - -0.455, - -0.19 - ], - "depth": 0, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:warm_ocean", - "parameters": { - "continentalness": [ - -0.455, - -0.19 - ], - "depth": 1, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:stony_shore", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.2225 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:stony_shore", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.2225 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:mangrove_swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:mangrove_swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:stony_shore", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.2225 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:stony_shore", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.2225 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:mangrove_swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:mangrove_swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:stony_shore", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.2225 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:stony_shore", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.2225 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:mangrove_swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:mangrove_swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.55 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.55 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.55 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.55 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 0.2 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 0.2 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:mangrove_swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:mangrove_swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:stony_shore", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.2225 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:stony_shore", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.2225 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:mangrove_swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:mangrove_swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:stony_shore", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.2225 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:stony_shore", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.2225 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:mangrove_swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:mangrove_swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:stony_shore", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.2225 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:stony_shore", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.2225 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:mangrove_swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:mangrove_swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - } - ] + "type": "kubejs_tfc:wrapped", + "event_key": "mars", + "settings": { + "flat_bedrock": false, + "spawn_distance": 0, + "spawn_center_x": 0, + "spawn_center_z": 0, + "temperature_scale": 5000, + "rainfall_scale": 5000, + "continentalness": -0.5, + "rock_layer_settings": { + "rocks": { + "mars": { + "raw": "tfc:rock/raw/chert", + "hardened": "tfc:rock/hardened/chert", + "gravel": "tfc:rock/gravel/chert", + "cobble": "tfc:rock/cobble/chert", + "sand": "tfc:sand/red", + "sandstone": "tfc:raw_sandstone/red" + } + }, + "layers": [ + { + "id": "mars", + "layers": { + "mars": "bottom" + } + } + ], + "bottom": [ + "mars" + ], + "ocean_floor": [ + "mars" + ], + "volcanic": [ + "mars" + ], + "land": [ + "mars" + ], + "uplift": [ + "mars" + ] + } }, - "settings": "tfg:mars_noise" + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "biomes": [ + { + "biome": "tfg:mars/martian_oasis", + "parameters": { + "continentalness": [ + -1.2, + -1.05 + ], + "depth": 0, + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_deep_desert", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 0, + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_dunes", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 0, + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_deep_desert", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 0, + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_dunes", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 0, + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_deep_desert", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 0, + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_dunes", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 0, + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_deep_desert", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 0, + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_dunes", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 0, + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_dunes", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 0, + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_dunes", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 0, + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.2225 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.2225 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.2225 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_riverbed", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_riverbed", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_riverbed", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_riverbed", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_riverbed", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.55 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_riverbed", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.55 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_riverbed", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_riverbed", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_riverbed", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.2225 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.2225 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + -1, + -0.2225 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + -1, + -0.7799 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 1 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ] + } + } + ] + }, + "settings": "tfg:mars_noise" + } } } \ No newline at end of file diff --git a/kubejs/data/primitive_creatures/forge/biome_modifier/beast_biome_modifier.json b/kubejs/data/primitive_creatures/forge/biome_modifier/beast_biome_modifier.json new file mode 100644 index 000000000..2d96022cf --- /dev/null +++ b/kubejs/data/primitive_creatures/forge/biome_modifier/beast_biome_modifier.json @@ -0,0 +1,3 @@ +{ + "type": "forge:none" +} \ No newline at end of file diff --git a/kubejs/data/primitive_creatures/forge/biome_modifier/golem_2_biome_modifier.json b/kubejs/data/primitive_creatures/forge/biome_modifier/golem_2_biome_modifier.json new file mode 100644 index 000000000..2d96022cf --- /dev/null +++ b/kubejs/data/primitive_creatures/forge/biome_modifier/golem_2_biome_modifier.json @@ -0,0 +1,3 @@ +{ + "type": "forge:none" +} \ No newline at end of file diff --git a/kubejs/data/primitive_creatures/forge/biome_modifier/iloger_1_biome_modifier.json b/kubejs/data/primitive_creatures/forge/biome_modifier/iloger_1_biome_modifier.json new file mode 100644 index 000000000..2d96022cf --- /dev/null +++ b/kubejs/data/primitive_creatures/forge/biome_modifier/iloger_1_biome_modifier.json @@ -0,0 +1,3 @@ +{ + "type": "forge:none" +} \ No newline at end of file diff --git a/kubejs/data/primitive_creatures/forge/biome_modifier/iloger_2_biome_modifier.json b/kubejs/data/primitive_creatures/forge/biome_modifier/iloger_2_biome_modifier.json new file mode 100644 index 000000000..2d96022cf --- /dev/null +++ b/kubejs/data/primitive_creatures/forge/biome_modifier/iloger_2_biome_modifier.json @@ -0,0 +1,3 @@ +{ + "type": "forge:none" +} \ No newline at end of file diff --git a/kubejs/data/primitive_creatures/forge/biome_modifier/iloger_3_biome_modifier.json b/kubejs/data/primitive_creatures/forge/biome_modifier/iloger_3_biome_modifier.json new file mode 100644 index 000000000..2d96022cf --- /dev/null +++ b/kubejs/data/primitive_creatures/forge/biome_modifier/iloger_3_biome_modifier.json @@ -0,0 +1,3 @@ +{ + "type": "forge:none" +} \ No newline at end of file diff --git a/kubejs/data/primitive_creatures/forge/biome_modifier/iloger_4_biome_modifier.json b/kubejs/data/primitive_creatures/forge/biome_modifier/iloger_4_biome_modifier.json new file mode 100644 index 000000000..2d96022cf --- /dev/null +++ b/kubejs/data/primitive_creatures/forge/biome_modifier/iloger_4_biome_modifier.json @@ -0,0 +1,3 @@ +{ + "type": "forge:none" +} \ No newline at end of file diff --git a/kubejs/data/primitive_creatures/forge/biome_modifier/iloger_5_biome_modifier.json b/kubejs/data/primitive_creatures/forge/biome_modifier/iloger_5_biome_modifier.json new file mode 100644 index 000000000..2d96022cf --- /dev/null +++ b/kubejs/data/primitive_creatures/forge/biome_modifier/iloger_5_biome_modifier.json @@ -0,0 +1,3 @@ +{ + "type": "forge:none" +} \ No newline at end of file diff --git a/kubejs/data/primitive_creatures/forge/biome_modifier/iloger_6_biome_modifier.json b/kubejs/data/primitive_creatures/forge/biome_modifier/iloger_6_biome_modifier.json new file mode 100644 index 000000000..2d96022cf --- /dev/null +++ b/kubejs/data/primitive_creatures/forge/biome_modifier/iloger_6_biome_modifier.json @@ -0,0 +1,3 @@ +{ + "type": "forge:none" +} \ No newline at end of file diff --git a/kubejs/data/primitive_creatures/forge/biome_modifier/piloger_9_biome_modifier.json b/kubejs/data/primitive_creatures/forge/biome_modifier/piloger_9_biome_modifier.json new file mode 100644 index 000000000..2d96022cf --- /dev/null +++ b/kubejs/data/primitive_creatures/forge/biome_modifier/piloger_9_biome_modifier.json @@ -0,0 +1,3 @@ +{ + "type": "forge:none" +} \ No newline at end of file diff --git a/kubejs/data/primitive_creatures/forge/biome_modifier/tfc_biome_modifier.json b/kubejs/data/primitive_creatures/forge/biome_modifier/tfc_biome_modifier.json new file mode 100644 index 000000000..2d96022cf --- /dev/null +++ b/kubejs/data/primitive_creatures/forge/biome_modifier/tfc_biome_modifier.json @@ -0,0 +1,3 @@ +{ + "type": "forge:none" +} \ No newline at end of file diff --git a/kubejs/data/primitive_creatures/forge/biome_modifier/viloger_10_biome_modifier.json b/kubejs/data/primitive_creatures/forge/biome_modifier/viloger_10_biome_modifier.json new file mode 100644 index 000000000..2d96022cf --- /dev/null +++ b/kubejs/data/primitive_creatures/forge/biome_modifier/viloger_10_biome_modifier.json @@ -0,0 +1,3 @@ +{ + "type": "forge:none" +} \ No newline at end of file diff --git a/kubejs/data/primitive_creatures/forge/biome_modifier/wiloger_biome_modifier.json b/kubejs/data/primitive_creatures/forge/biome_modifier/wiloger_biome_modifier.json new file mode 100644 index 000000000..2d96022cf --- /dev/null +++ b/kubejs/data/primitive_creatures/forge/biome_modifier/wiloger_biome_modifier.json @@ -0,0 +1,3 @@ +{ + "type": "forge:none" +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_deep_desert.json b/kubejs/data/tfg/worldgen/biome/mars/martian_deep_desert.json new file mode 100644 index 000000000..3dca99a4a --- /dev/null +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_deep_desert.json @@ -0,0 +1,72 @@ +{ + "carvers": { + "air": [] + }, + "downfall": 0.0, + "effects": { + "fog_color": 15117444, + "mood_sound": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.cave", + "tick_delay": 6000 + }, + "particle": { + "options": { + "type": "minecraft:crimson_spore" + }, + "probability": 0.014 + }, + "sky_color": 15117444, + "water_color": 4159204, + "water_fog_color": 329011 + }, + "features": [ + [], + "#tfg:mars_craters", + [ + "tfg:earth/geode/amethyst", + "tfg:earth/geode/barite", + "tfg:earth/geode/calcite", + "tfg:earth/geode/gypsum", + "tfg:earth/geode/opal", + "tfg:earth/geode/pyrite", + "tfg:earth/geode/quartzite" + ], + [ + "tfc:vein/gabbro_dike", + "tfc:vein/diorite_dike" + ], + [], + [], + "#tfg:mars_veins", + [], + "#tfg:mars_small_rock_features", + [ + + ], + [ + "tfg:mars/hardening" + ] + ], + "has_precipitation": false, + "spawn_costs": { + "ad_astra:martian_raptor": { + "charge": 0.2, + "energy_budget": 0.015 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_dune_edge.json b/kubejs/data/tfg/worldgen/biome/mars/martian_dune_edge.json new file mode 100644 index 000000000..3dca99a4a --- /dev/null +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_dune_edge.json @@ -0,0 +1,72 @@ +{ + "carvers": { + "air": [] + }, + "downfall": 0.0, + "effects": { + "fog_color": 15117444, + "mood_sound": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.cave", + "tick_delay": 6000 + }, + "particle": { + "options": { + "type": "minecraft:crimson_spore" + }, + "probability": 0.014 + }, + "sky_color": 15117444, + "water_color": 4159204, + "water_fog_color": 329011 + }, + "features": [ + [], + "#tfg:mars_craters", + [ + "tfg:earth/geode/amethyst", + "tfg:earth/geode/barite", + "tfg:earth/geode/calcite", + "tfg:earth/geode/gypsum", + "tfg:earth/geode/opal", + "tfg:earth/geode/pyrite", + "tfg:earth/geode/quartzite" + ], + [ + "tfc:vein/gabbro_dike", + "tfc:vein/diorite_dike" + ], + [], + [], + "#tfg:mars_veins", + [], + "#tfg:mars_small_rock_features", + [ + + ], + [ + "tfg:mars/hardening" + ] + ], + "has_precipitation": false, + "spawn_costs": { + "ad_astra:martian_raptor": { + "charge": 0.2, + "energy_budget": 0.015 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_dunes.json b/kubejs/data/tfg/worldgen/biome/mars/martian_dunes.json new file mode 100644 index 000000000..3dca99a4a --- /dev/null +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_dunes.json @@ -0,0 +1,72 @@ +{ + "carvers": { + "air": [] + }, + "downfall": 0.0, + "effects": { + "fog_color": 15117444, + "mood_sound": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.cave", + "tick_delay": 6000 + }, + "particle": { + "options": { + "type": "minecraft:crimson_spore" + }, + "probability": 0.014 + }, + "sky_color": 15117444, + "water_color": 4159204, + "water_fog_color": 329011 + }, + "features": [ + [], + "#tfg:mars_craters", + [ + "tfg:earth/geode/amethyst", + "tfg:earth/geode/barite", + "tfg:earth/geode/calcite", + "tfg:earth/geode/gypsum", + "tfg:earth/geode/opal", + "tfg:earth/geode/pyrite", + "tfg:earth/geode/quartzite" + ], + [ + "tfc:vein/gabbro_dike", + "tfc:vein/diorite_dike" + ], + [], + [], + "#tfg:mars_veins", + [], + "#tfg:mars_small_rock_features", + [ + + ], + [ + "tfg:mars/hardening" + ] + ], + "has_precipitation": false, + "spawn_costs": { + "ad_astra:martian_raptor": { + "charge": 0.2, + "energy_budget": 0.015 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_forests.json b/kubejs/data/tfg/worldgen/biome/mars/martian_forests.json new file mode 100644 index 000000000..ffce07547 --- /dev/null +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_forests.json @@ -0,0 +1,78 @@ +{ + "carvers": { + "air": [ + "tfg:mars_cave", + "tfg:mars_canyon" + ] + }, + "downfall": 0.0, + "effects": { + "fog_color": 15117444, + "mood_sound": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.cave", + "tick_delay": 6000 + }, + "particle": { + "options": { + "type": "minecraft:crimson_spore" + }, + "probability": 0.014 + }, + "sky_color": 15117444, + "water_color": 4159204, + "water_fog_color": 329011 + }, + "features": [ + [], + "#tfg:mars_craters", + [ + "tfg:earth/geode/amethyst", + "tfg:earth/geode/barite", + "tfg:earth/geode/calcite", + "tfg:earth/geode/gypsum", + "tfg:earth/geode/opal", + "tfg:earth/geode/pyrite", + "tfg:earth/geode/quartzite" + ], + [ + "tfc:vein/gabbro_dike", + "tfc:vein/diorite_dike" + ], + [], + [], + "#tfg:mars_veins", + [], + "#tfg:mars_small_rock_features", + [ + "tfg:mars/surface/aeronos_patch", + "tfg:mars/surface/strophar_patch", + "tfg:mars/surface/aeronos_huge", + "tfg:mars/surface/strophar_huge" + ], + [ + "tfg:mars/hardening" + ] + ], + "has_precipitation": false, + "spawn_costs": { + "ad_astra:martian_raptor": { + "charge": 0.2, + "energy_budget": 0.015 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_hills.json b/kubejs/data/tfg/worldgen/biome/mars/martian_hills.json new file mode 100644 index 000000000..555239dc9 --- /dev/null +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_hills.json @@ -0,0 +1,75 @@ +{ + "carvers": { + "air": [ + "tfg:mars_cave", + "tfg:mars_canyon" + ] + }, + "downfall": 0.0, + "effects": { + "fog_color": 15117444, + "mood_sound": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.cave", + "tick_delay": 6000 + }, + "particle": { + "options": { + "type": "minecraft:crimson_spore" + }, + "probability": 0.014 + }, + "sky_color": 15117444, + "water_color": 4159204, + "water_fog_color": 329011 + }, + "features": [ + [], + "#tfg:mars_craters", + [ + "tfg:earth/geode/amethyst", + "tfg:earth/geode/barite", + "tfg:earth/geode/calcite", + "tfg:earth/geode/gypsum", + "tfg:earth/geode/opal", + "tfg:earth/geode/pyrite", + "tfg:earth/geode/quartzite" + ], + [ + "tfc:vein/gabbro_dike", + "tfc:vein/diorite_dike" + ], + [], + [], + "#tfg:mars_veins", + [], + "#tfg:mars_small_rock_features", + [ + + ], + [ + "tfg:mars/hardening" + ] + ], + "has_precipitation": false, + "spawn_costs": { + "ad_astra:martian_raptor": { + "charge": 0.2, + "energy_budget": 0.015 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_mountains.json b/kubejs/data/tfg/worldgen/biome/mars/martian_mountains.json index 44a07a9b6..555239dc9 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/martian_mountains.json +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_mountains.json @@ -1,9 +1,8 @@ { "carvers": { "air": [ - "minecraft:cave", - "minecraft:cave_extra_underground", - "minecraft:canyon" + "tfg:mars_cave", + "tfg:mars_canyon" ] }, "downfall": 0.0, @@ -27,17 +26,31 @@ }, "features": [ [], - [], - [], + "#tfg:mars_craters", [ - + "tfg:earth/geode/amethyst", + "tfg:earth/geode/barite", + "tfg:earth/geode/calcite", + "tfg:earth/geode/gypsum", + "tfg:earth/geode/opal", + "tfg:earth/geode/pyrite", + "tfg:earth/geode/quartzite" ], [ - + "tfc:vein/gabbro_dike", + "tfc:vein/diorite_dike" ], [], + [], "#tfg:mars_veins", - [] + [], + "#tfg:mars_small_rock_features", + [ + + ], + [ + "tfg:mars/hardening" + ] ], "has_precipitation": false, "spawn_costs": { @@ -52,12 +65,7 @@ "creature": [], "misc": [], "monster": [ - { - "type": "ad_astra:martian_raptor", - "maxCount": 3, - "minCount": 1, - "weight": 100 - } + ], "underground_water_creature": [], "water_ambient": [], diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_oasis.json b/kubejs/data/tfg/worldgen/biome/mars/martian_oasis.json new file mode 100644 index 000000000..3dca99a4a --- /dev/null +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_oasis.json @@ -0,0 +1,72 @@ +{ + "carvers": { + "air": [] + }, + "downfall": 0.0, + "effects": { + "fog_color": 15117444, + "mood_sound": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.cave", + "tick_delay": 6000 + }, + "particle": { + "options": { + "type": "minecraft:crimson_spore" + }, + "probability": 0.014 + }, + "sky_color": 15117444, + "water_color": 4159204, + "water_fog_color": 329011 + }, + "features": [ + [], + "#tfg:mars_craters", + [ + "tfg:earth/geode/amethyst", + "tfg:earth/geode/barite", + "tfg:earth/geode/calcite", + "tfg:earth/geode/gypsum", + "tfg:earth/geode/opal", + "tfg:earth/geode/pyrite", + "tfg:earth/geode/quartzite" + ], + [ + "tfc:vein/gabbro_dike", + "tfc:vein/diorite_dike" + ], + [], + [], + "#tfg:mars_veins", + [], + "#tfg:mars_small_rock_features", + [ + + ], + [ + "tfg:mars/hardening" + ] + ], + "has_precipitation": false, + "spawn_costs": { + "ad_astra:martian_raptor": { + "charge": 0.2, + "energy_budget": 0.015 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_plains.json b/kubejs/data/tfg/worldgen/biome/mars/martian_plains.json index 44a07a9b6..ffce07547 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/martian_plains.json +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_plains.json @@ -1,9 +1,8 @@ { "carvers": { "air": [ - "minecraft:cave", - "minecraft:cave_extra_underground", - "minecraft:canyon" + "tfg:mars_cave", + "tfg:mars_canyon" ] }, "downfall": 0.0, @@ -27,17 +26,34 @@ }, "features": [ [], - [], - [], + "#tfg:mars_craters", [ - + "tfg:earth/geode/amethyst", + "tfg:earth/geode/barite", + "tfg:earth/geode/calcite", + "tfg:earth/geode/gypsum", + "tfg:earth/geode/opal", + "tfg:earth/geode/pyrite", + "tfg:earth/geode/quartzite" ], [ - + "tfc:vein/gabbro_dike", + "tfc:vein/diorite_dike" ], [], + [], "#tfg:mars_veins", - [] + [], + "#tfg:mars_small_rock_features", + [ + "tfg:mars/surface/aeronos_patch", + "tfg:mars/surface/strophar_patch", + "tfg:mars/surface/aeronos_huge", + "tfg:mars/surface/strophar_huge" + ], + [ + "tfg:mars/hardening" + ] ], "has_precipitation": false, "spawn_costs": { @@ -52,12 +68,7 @@ "creature": [], "misc": [], "monster": [ - { - "type": "ad_astra:martian_raptor", - "maxCount": 3, - "minCount": 1, - "weight": 100 - } + ], "underground_water_creature": [], "water_ambient": [], diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_riverbed.json b/kubejs/data/tfg/worldgen/biome/mars/martian_riverbed.json index dbdb2d9e8..555239dc9 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/martian_riverbed.json +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_riverbed.json @@ -1,9 +1,8 @@ { "carvers": { "air": [ - "minecraft:cave", - "minecraft:cave_extra_underground", - "minecraft:canyon" + "tfg:mars_cave", + "tfg:mars_canyon" ] }, "downfall": 0.0, @@ -27,17 +26,31 @@ }, "features": [ [], + "#tfg:mars_craters", + [ + "tfg:earth/geode/amethyst", + "tfg:earth/geode/barite", + "tfg:earth/geode/calcite", + "tfg:earth/geode/gypsum", + "tfg:earth/geode/opal", + "tfg:earth/geode/pyrite", + "tfg:earth/geode/quartzite" + ], + [ + "tfc:vein/gabbro_dike", + "tfc:vein/diorite_dike" + ], [], [], + "#tfg:mars_veins", + [], + "#tfg:mars_small_rock_features", [ ], [ - - ], - [], - "#tfg:mars_veins", - [] + "tfg:mars/hardening" + ] ], "has_precipitation": false, "spawn_costs": { @@ -52,12 +65,7 @@ "creature": [], "misc": [], "monster": [ - { - "type": "ad_astra:martian_raptor", - "maxCount": 3, - "minCount": 1, - "weight": 100 - } + ], "underground_water_creature": [], "water_ambient": [], diff --git a/kubejs/data/tfg/worldgen/biome/nether/ash_forest.json b/kubejs/data/tfg/worldgen/biome/nether/ash_forest.json index c73344a8c..c9cd4251f 100644 --- a/kubejs/data/tfg/worldgen/biome/nether/ash_forest.json +++ b/kubejs/data/tfg/worldgen/biome/nether/ash_forest.json @@ -140,7 +140,7 @@ "weight": 10 }, { - "type": "kaolinclayze:golem_2", + "type": "primitive_creatures:golem_2", "maxCount": 3, "minCount": 1, "weight": 100 diff --git a/kubejs/data/tfg/worldgen/biome/nether/basalt_deltas.json b/kubejs/data/tfg/worldgen/biome/nether/basalt_deltas.json index 15907092f..6472a30a6 100644 --- a/kubejs/data/tfg/worldgen/biome/nether/basalt_deltas.json +++ b/kubejs/data/tfg/worldgen/biome/nether/basalt_deltas.json @@ -110,7 +110,7 @@ "weight": 100 }, { - "type": "kaolinclayze:golem_2", + "type": "primitive_creatures:golem_2", "maxCount": 4, "minCount": 1, "weight": 100 @@ -138,6 +138,12 @@ "maxCount": 1, "minCount": 1, "weight": 50 + }, + { + "type": "minecraft:phantom", + "maxCount": 1, + "minCount": 1, + "weight": 10 } ], "underground_water_creature": [], diff --git a/kubejs/data/tfg/worldgen/biome/nether/lava_floes.json b/kubejs/data/tfg/worldgen/biome/nether/lava_floes.json index f294ed7a4..fc9ed3bef 100644 --- a/kubejs/data/tfg/worldgen/biome/nether/lava_floes.json +++ b/kubejs/data/tfg/worldgen/biome/nether/lava_floes.json @@ -132,7 +132,7 @@ "weight": 20 }, { - "type": "kaolinclayze:golem_2", + "type": "primitive_creatures:golem_2", "maxCount": 4, "minCount": 1, "weight": 100 diff --git a/kubejs/data/tfg/worldgen/biome/nether/lush_hollow.json b/kubejs/data/tfg/worldgen/biome/nether/lush_hollow.json index 8df076f2a..186ed00d6 100644 --- a/kubejs/data/tfg/worldgen/biome/nether/lush_hollow.json +++ b/kubejs/data/tfg/worldgen/biome/nether/lush_hollow.json @@ -128,7 +128,7 @@ "weight": 50 }, { - "type": "kaolinclayze:tfc", + "type": "primitive_creatures:tfc", "maxCount": 4, "minCount": 1, "weight": 100 diff --git a/kubejs/data/tfg/worldgen/biome/nether/webbed_lair.json b/kubejs/data/tfg/worldgen/biome/nether/webbed_lair.json index c4eb20fd6..37aa936d5 100644 --- a/kubejs/data/tfg/worldgen/biome/nether/webbed_lair.json +++ b/kubejs/data/tfg/worldgen/biome/nether/webbed_lair.json @@ -165,6 +165,12 @@ "maxCount": 1, "minCount": 1, "weight": 10 + }, + { + "type": "minecraft:phantom", + "maxCount": 1, + "minCount": 1, + "weight": 5 } ], "underground_water_creature": [ diff --git a/kubejs/data/tfg/worldgen/configured_carver/mars_canyon.json b/kubejs/data/tfg/worldgen/configured_carver/mars_canyon.json new file mode 100644 index 000000000..a8ca49d65 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_carver/mars_canyon.json @@ -0,0 +1,55 @@ +{ + "type": "minecraft:canyon", + "config": { + "probability": 0.015, + "y": { + "type": "uniform", + "min_inclusive": { + "absolute": -10 + }, + "max_inclusive": { + "absolute": 126 + } + }, + "yScale": 1, + "lava_level": { + "above_bottom": -2032 + }, + "aquifers_enabled": false, + "vertical_rotation": { + "type": "uniform", + "value": { + "min_inclusive": -0.25, + "max_exclusive": 0.25 + } + }, + "shape": { + "distance_factor": { + "type": "uniform", + "value": { + "min_inclusive": 2.0, + "max_exclusive": 10.0 + } + }, + "thickness": { + "type": "trapezoid", + "value": { + "min": 0.0, + "max": 6.0, + "plateau": 2.0 + } + }, + "width_smoothness": 10, + "horizontal_radius_factor": { + "type": "uniform", + "value": { + "min_inclusive": 0.5, + "max_exclusive": 1.25 + } + }, + "vertical_radius_default_factor": 1.0, + "vertical_radius_center_factor": 0.0 + }, + "replaceable": "#tfc:can_carve" + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_carver/mars_cave.json b/kubejs/data/tfg/worldgen/configured_carver/mars_cave.json new file mode 100644 index 000000000..f325a2473 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_carver/mars_cave.json @@ -0,0 +1,48 @@ +{ + "type": "minecraft:cave", + "config": { + "probability": 0.025, + "y": { + "type": "uniform", + "min_inclusive": { + "absolute": -10 + }, + "max_inclusive": { + "absolute": 126 + } + }, + "yScale": { + "type": "uniform", + "value": { + "min_inclusive": 0.1, + "max_exclusive": 0.9 + } + }, + "lava_level": { + "above_bottom": -2032 + }, + "aquifers_enabled": false, + "horizontal_radius_multiplier": { + "type": "uniform", + "value": { + "min_inclusive": 1.2, + "max_exclusive": 2.0 + } + }, + "vertical_radius_multiplier": { + "type": "uniform", + "value": { + "min_inclusive": 1.3, + "max_exclusive": 2.0 + } + }, + "floor_level": { + "type": "uniform", + "value": { + "min_inclusive": -1, + "max_exclusive": -0.4 + } + }, + "replaceable": "#tfc:can_carve" + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/geode/barite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/geode/barite.json index 1a7179195..98540a91e 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/geode/barite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/geode/barite.json @@ -23,10 +23,7 @@ }, "inner_placements": [ { - "Name": "gtceu:barite_indicator", - "Properties": { - "waterlogged": "false" - } + "Name": "minecraft:air" } ], "invalid_blocks": "#minecraft:geode_invalid_blocks", diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/geode/calcite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/geode/calcite.json index 0ef3716f8..888da3edf 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/geode/calcite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/geode/calcite.json @@ -23,10 +23,7 @@ }, "inner_placements": [ { - "Name": "gtceu:calcite_indicator", - "Properties": { - "waterlogged": "false" - } + "Name": "minecraft:air" } ], "invalid_blocks": "#minecraft:geode_invalid_blocks", diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/geode/gypsum.json b/kubejs/data/tfg/worldgen/configured_feature/earth/geode/gypsum.json index 57cc963e5..a46e86333 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/geode/gypsum.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/geode/gypsum.json @@ -23,10 +23,7 @@ }, "inner_placements": [ { - "Name": "gtceu:gypsum_indicator", - "Properties": { - "waterlogged": "false" - } + "Name": "minecraft:air" } ], "invalid_blocks": "#minecraft:geode_invalid_blocks", diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/geode/opal.json b/kubejs/data/tfg/worldgen/configured_feature/earth/geode/opal.json index b469d0bc5..b89a23158 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/geode/opal.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/geode/opal.json @@ -23,16 +23,7 @@ }, "inner_placements": [ { - "Name": "gtceu:opal_bud_indicator", - "Properties": { - "waterlogged": "false" - } - }, - { - "Name": "gtceu:opal_indicator", - "Properties": { - "waterlogged": "false" - } + "Name": "minecraft:air" } ], "invalid_blocks": "#minecraft:geode_invalid_blocks", diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/geode/pyrite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/geode/pyrite.json index 9e88a3fe8..0a5addd17 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/geode/pyrite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/geode/pyrite.json @@ -23,10 +23,7 @@ }, "inner_placements": [ { - "Name": "gtceu:pyrite_indicator", - "Properties": { - "waterlogged": "false" - } + "Name": "minecraft:air" } ], "invalid_blocks": "#minecraft:geode_invalid_blocks", diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/geode/quartzite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/geode/quartzite.json index 66c1928dd..787a850d1 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/geode/quartzite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/geode/quartzite.json @@ -23,16 +23,7 @@ }, "inner_placements": [ { - "Name": "gtceu:quartzite_bud_indicator", - "Properties": { - "waterlogged": "false" - } - }, - { - "Name": "gtceu:quartzite_indicator", - "Properties": { - "waterlogged": "false" - } + "Name": "minecraft:air" } ], "invalid_blocks": "#minecraft:geode_invalid_blocks", diff --git a/kubejs/data/tfg/worldgen/density_function/mars/base_3d_noise.json b/kubejs/data/tfg/worldgen/density_function/mars/base_3d_noise.json new file mode 100644 index 000000000..ed5a2d9c6 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/base_3d_noise.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:old_blended_noise", + "smear_scale_multiplier": 8.0, + "xz_factor": 80.0, + "xz_scale": 0.25, + "y_factor": 160.0, + "y_scale": 0.125 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/caves/entrances.json b/kubejs/data/tfg/worldgen/density_function/mars/caves/entrances.json new file mode 100644 index 000000000..4bd9b81c4 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/caves/entrances.json @@ -0,0 +1,70 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:add", + "argument1": 0.37, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:cave_entrance", + "xz_scale": 0.5, + "y_scale": 0.25 + } + }, + "argument2": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.2, + "from_y": -10, + "to_value": 0, + "to_y": 30 + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": "minecraft:overworld/caves/spaghetti_roughness_function", + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:weird_scaled_sampler", + "input": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_rarity", + "xz_scale": 2, + "y_scale": 1 + } + }, + "noise": "minecraft:spaghetti_3d_1", + "rarity_value_mapper": "type_1" + }, + "argument2": { + "type": "minecraft:weird_scaled_sampler", + "input": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_rarity", + "xz_scale": 2, + "y_scale": 1 + } + }, + "noise": "minecraft:spaghetti_3d_2", + "rarity_value_mapper": "type_1" + } + }, + "argument2": 0 + }, + "max": 1, + "min": -1 + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/caves/noodle.json b/kubejs/data/tfg/worldgen/density_function/mars/caves/noodle.json new file mode 100644 index 000000000..211c50c65 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/caves/noodle.json @@ -0,0 +1,94 @@ +{ + "type": "minecraft:range_choice", + "input": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 321.0, + "min_inclusive": -30.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:noodle", + "xz_scale": 1.0, + "y_scale": 1.0 + }, + "when_out_of_range": -1.0 + } + }, + "max_exclusive": 0.0, + "min_inclusive": -1000000.0, + "when_in_range": 64.0, + "when_out_of_range": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 321.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:add", + "argument1": -0.07500000000000001, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.025, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_thickness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + }, + "when_out_of_range": 0.0 + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": 1.5, + "argument2": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 321.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_ridge_a", + "xz_scale": 2.6666666666666665, + "y_scale": 2.6666666666666665 + }, + "when_out_of_range": 0.0 + } + } + }, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 321.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_ridge_b", + "xz_scale": 2.6666666666666665, + "y_scale": 2.6666666666666665 + }, + "when_out_of_range": 0.0 + } + } + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/caves/pillars.json b/kubejs/data/tfg/worldgen/density_function/mars/caves/pillars.json new file mode 100644 index 000000000..ef84930ec --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/caves/pillars.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 2.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:pillar", + "xz_scale": 25.0, + "y_scale": 0.3 + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": -1.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:pillar_rareness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + }, + "argument2": { + "type": "minecraft:cube", + "argument": { + "type": "minecraft:add", + "argument1": 0.55, + "argument2": { + "type": "minecraft:mul", + "argument1": 0.55, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:pillar_thickness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/caves/spaghetti_2d.json b/kubejs/data/tfg/worldgen/density_function/mars/caves/spaghetti_2d.json new file mode 100644 index 000000000..6501b227e --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/caves/spaghetti_2d.json @@ -0,0 +1,61 @@ +{ + "type": "minecraft:clamp", + "input": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:weird_scaled_sampler", + "input": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_modulator", + "xz_scale": 2.0, + "y_scale": 1.0 + }, + "noise": "minecraft:spaghetti_2d", + "rarity_value_mapper": "type_2" + }, + "argument2": { + "type": "minecraft:mul", + "argument1": 0.083, + "argument2": "tfg:mars/caves/spaghetti_2d_thickness_modulator" + } + }, + "argument2": { + "type": "minecraft:cube", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:add", + "argument1": 0.0, + "argument2": { + "type": "minecraft:mul", + "argument1": 8.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_elevation", + "xz_scale": 1.0, + "y_scale": 0.0 + } + } + }, + "argument2": { + "type": "minecraft:y_clamped_gradient", + "from_value": 8.0, + "from_y": -32, + "to_value": -20.0, + "to_y": 320 + } + } + }, + "argument2": "tfg:mars/caves/spaghetti_2d_thickness_modulator" + } + } + }, + "max": 1.0, + "min": -1.0 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/caves/spaghetti_2d_thickness_modulator.json b/kubejs/data/tfg/worldgen/density_function/mars/caves/spaghetti_2d_thickness_modulator.json new file mode 100644 index 000000000..be1366551 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/caves/spaghetti_2d_thickness_modulator.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:add", + "argument1": -0.95, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.35000000000000003, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_thickness", + "xz_scale": 2.0, + "y_scale": 1.0 + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/caves/spaghetti_roughness_function.json b/kubejs/data/tfg/worldgen/density_function/mars/caves/spaghetti_roughness_function.json new file mode 100644 index 000000000..80d9fcefb --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/caves/spaghetti_roughness_function.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": -0.05, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.02, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_roughness_modulator", + "xz_scale": 1, + "y_scale": 1 + } + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.6, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_roughness", + "xz_scale": 0.4, + "y_scale": 0.4 + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/continents.json b/kubejs/data/tfg/worldgen/density_function/mars/continents.json new file mode 100644 index 000000000..d3a51fb7d --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/continents.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:spline", + "spline": { + "coordinate": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:continentalness", + "shift_x": "minecraft:shift_x", + "shift_y": 0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0 + }, + "points": [ + { + "location": -1, + "derivative": 1, + "value": -1 + }, + { + "location": 0.19, + "derivative": 1, + "value": -0.19 + }, + { + "location": 1, + "derivative": 1, + "value": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/depth.json b/kubejs/data/tfg/worldgen/density_function/mars/depth.json new file mode 100644 index 000000000..375e33586 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/depth.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.5, + "from_y": -32, + "to_value": -1.5, + "to_y": 320 + }, + "argument2": "tfg:mars/offset" +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/erosion.json b/kubejs/data/tfg/worldgen/density_function/mars/erosion.json new file mode 100644 index 000000000..fff06598e --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/erosion.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:erosion", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/factor.json b/kubejs/data/tfg/worldgen/density_function/mars/factor.json new file mode 100644 index 000000000..710611209 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/factor.json @@ -0,0 +1,890 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": 10.0, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_alpha" + }, + "argument2": { + "type": "minecraft:add", + "argument1": -10.0, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "tfg:mars/continents", + "points": [ + { + "derivative": 0.0, + "location": -0.19, + "value": 3.95 + }, + { + "derivative": 0.0, + "location": -0.15, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.06, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.05, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": 1.56 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": 1.56 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": 1.37 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": 1.37 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": 4.69 + } + ] + } + } + ] + } + } + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/jaggedness.json b/kubejs/data/tfg/worldgen/density_function/mars/jaggedness.json new file mode 100644 index 000000000..d11ffd3e4 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/jaggedness.json @@ -0,0 +1,303 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": 0.0, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_alpha" + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.0, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "tfg:mars/continents", + "points": [ + { + "derivative": 0.0, + "location": -0.11, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.78, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.315 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.15 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5775, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.315 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.15 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.375, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.65, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.78, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5775, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.375, + "value": 0.0 + } + ] + } + } + ] + } + } + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/offset.json b/kubejs/data/tfg/worldgen/density_function/mars/offset.json new file mode 100644 index 000000000..c056b64c6 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/offset.json @@ -0,0 +1,1523 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_offset" + }, + "argument2": { + "type": "minecraft:add", + "argument1": 1.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:blend_alpha" + } + } + } + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": -0.5037500262260437, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "tfg:mars/continents", + "points": [ + { + "derivative": 0.0, + "location": -1.1, + "value": 0.044 + }, + { + "derivative": 0.0, + "location": -1.02, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.51, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.44, + "value": -0.12 + }, + { + "derivative": 0.0, + "location": -0.18, + "value": -0.12 + }, + { + "derivative": 0.0, + "location": -0.16, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 0.69000006 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 0.6400001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.100000024 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.3 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.1, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.06, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 0.69000006 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 0.6400001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.100000024 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.3 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.1, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.06, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 0.69000006 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 0.6400001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.100000024 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.25 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.01, + "location": -0.4, + "value": 0.001 + }, + { + "derivative": 0.01, + "location": 0.0, + "value": 0.003 + }, + { + "derivative": 0.094000004, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.12, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.25, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.20235021 + }, + { + "derivative": 0.5138249, + "location": 0.0, + "value": 0.7161751 + }, + { + "derivative": 0.5138249, + "location": 1.0, + "value": 1.23 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.43317974, + "location": 0.0, + "value": 0.44682026 + }, + { + "derivative": 0.43317974, + "location": 1.0, + "value": 0.88 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.3917051, + "location": 0.0, + "value": 0.30829495 + }, + { + "derivative": 0.3917051, + "location": 1.0, + "value": 0.70000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.25 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.35 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.35 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.35 + }, + { + "derivative": 0.049000014, + "location": 1.0, + "value": 0.42000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.07, + "location": -0.4, + "value": 0.0069999998 + }, + { + "derivative": 0.07, + "location": 0.0, + "value": 0.021 + }, + { + "derivative": 0.658, + "location": 0.4, + "value": 0.35 + }, + { + "derivative": 0.049000014, + "location": 1.0, + "value": 0.42000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.12, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.34792626 + }, + { + "derivative": 0.5760369, + "location": 0.0, + "value": 0.9239631 + }, + { + "derivative": 0.5760369, + "location": 1.0, + "value": 1.5 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.4608295, + "location": 0.0, + "value": 0.5391705 + }, + { + "derivative": 0.4608295, + "location": 1.0, + "value": 1.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.4608295, + "location": 0.0, + "value": 0.5391705 + }, + { + "derivative": 0.4608295, + "location": 1.0, + "value": 1.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.2 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.5 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.5 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.5 + }, + { + "derivative": 0.070000015, + "location": 1.0, + "value": 0.6 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.099999994, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.099999994, + "location": 0.0, + "value": 0.03 + }, + { + "derivative": 0.94, + "location": 0.4, + "value": 0.5 + }, + { + "derivative": 0.070000015, + "location": 1.0, + "value": 0.6 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.015, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + } + ] + } + } + ] + } + } + }, + "argument2": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:blend_alpha" + } + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/ridges.json b/kubejs/data/tfg/worldgen/density_function/mars/ridges.json new file mode 100644 index 000000000..f4d6b4a5d --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/ridges.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:ridge", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/ridges_folded.json b/kubejs/data/tfg/worldgen/density_function/mars/ridges_folded.json new file mode 100644 index 000000000..c0d877d72 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/ridges_folded.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:mul", + "argument1": -3.0, + "argument2": { + "type": "minecraft:add", + "argument1": -0.3333333333333333, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:add", + "argument1": -0.6666666666666666, + "argument2": { + "type": "minecraft:abs", + "argument": "tfg:mars/ridges" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/sloped_cheese.json b/kubejs/data/tfg/worldgen/density_function/mars/sloped_cheese.json new file mode 100644 index 000000000..f21f1e30b --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/sloped_cheese.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": "tfg:mars/depth", + "argument2": { + "type": "minecraft:mul", + "argument1": "tfg:mars/jaggedness", + "argument2": { + "type": "minecraft:half_negative", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:jagged", + "xz_scale": 1500.0, + "y_scale": 0.0 + } + } + } + }, + "argument2": "tfg:mars/factor" + } + } + }, + "argument2": "tfg:mars/base_3d_noise" +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/mars_rock_layers.json b/kubejs/data/tfg/worldgen/mars_rock_layers.json deleted file mode 100644 index ff0cecc25..000000000 --- a/kubejs/data/tfg/worldgen/mars_rock_layers.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "rocks": { - "granite": "tfc:granite", - "diorite": "tfc:diorite", - "gabbro": "tfc:gabbro", - - "shale": "tfc:shale", - "claystone": "tfc:claystone", - "limestone": "tfc:limestone", - "conglomerate": "tfc:conglomerate", - "dolomite": "tfc:dolomite", - "chert": "tfc:chert", - "chalk": "tfc:chalk", - - "rhyolite": "tfc:rhyolite", - "basalt": "tfc:basalt", - "andesite": "tfc:andesite", - "dacite": "tfc:dacite", - - "mars_stone": { - "raw": "ad_astra:mars_stone", - "hardened": "tfg:rock/hardened_mars_stone", - "gravel": "ad_astra:mars_sand", - "cobble": "ad_astra:mars_cobblestone", - "sand": "ad_astra:mars_sand", - "sandstone": "ad_astra:mars_stone" - }, - - "red_granite": { - "raw": "TODO", - "hardened": "TODO", - "gravel": "TODO", - "cobble": "TODO", - "sand": "tfc:sand/red", - "sandstone": "tfc:raw_sandstone/red" - } - }, - "bottom": [ - "granite", - "gabbro", - "rhyolite", - "basalt", - "andesite", - "dacite", - "mars_stone", - "red_granite" - ], - "layers": [ - { - "id": "felsic", - "layers": { - "granite": "bottom", - "red_granite": "bottom" - } - }, - { - "id": "intermediate", - "layers": { - "mars_stone": "bottom" - } - }, - { - "id": "mafic", - "layers": { - "gabbro": "bottom" - } - }, - { - "id": "igneous_extrusive", - "layers": { - "rhyolite": "felsic", - "andesite": "intermediate", - "dacite": "intermediate", - "basalt": "mafic" - } - }, - { - "id": "igneous_extrusive_x2", - "layers": { - "rhyolite": "igneous_extrusive", - "andesite": "igneous_extrusive", - "dacite": "igneous_extrusive", - "basalt": "igneous_extrusive" - } - }, - { - "id": "land_sedimentary", - "layers": { - "claystone": "igneous_extrusive", - "conglomerate": "igneous_extrusive", - "dolomite": "igneous_extrusive", - "chert": "igneous_extrusive", - "chalk": "igneous_extrusive" - } - }, - { - "id": "water_sedimentary", - "layers": { - "shale": "bottom", - "claystone": "bottom", - "dolomite": "bottom", - "limestone": "bottom", - "chert": "bottom" - } - }, - { - "id": "uplift", - "layers": { - "red_granite": "land_sedimentary", - "granite": "land_sedimentary", - "gabbro": "land_sedimentary", - "mars_stone": "land_sedimentary" - } - } - ], - "ocean_floor": [ - "water_sedimentary" - ], - "volcanic": [ - "igneous_extrusive", - "igneous_extrusive_x2" - ], - "land": [ - "land_sedimentary", - "igneous_extrusive" - ], - "uplift": [ - "uplift" - ] -} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/noise/stone_layer_mars_1.json b/kubejs/data/tfg/worldgen/noise/stone_layer_mars_1.json index a6747c363..6fb0a4293 100644 --- a/kubejs/data/tfg/worldgen/noise/stone_layer_mars_1.json +++ b/kubejs/data/tfg/worldgen/noise/stone_layer_mars_1.json @@ -10,5 +10,5 @@ 1, 1 ], - "firstOctave": -10 + "firstOctave": -11 } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/noise/stone_layer_mars_2.json b/kubejs/data/tfg/worldgen/noise/stone_layer_mars_2.json index a6747c363..6fb0a4293 100644 --- a/kubejs/data/tfg/worldgen/noise/stone_layer_mars_2.json +++ b/kubejs/data/tfg/worldgen/noise/stone_layer_mars_2.json @@ -10,5 +10,5 @@ 1, 1 ], - "firstOctave": -10 + "firstOctave": -11 } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/noise_settings/mars_noise.json b/kubejs/data/tfg/worldgen/noise_settings/mars_noise.json index cc19b5910..432e9cd9c 100644 --- a/kubejs/data/tfg/worldgen/noise_settings/mars_noise.json +++ b/kubejs/data/tfg/worldgen/noise_settings/mars_noise.json @@ -1,5 +1,5 @@ { - "sea_level": 63, + "sea_level": 32, "disable_mob_generation": false, "aquifers_enabled": false, "ore_veins_enabled": false, @@ -11,10 +11,10 @@ "Name": "minecraft:air" }, "noise": { - "min_y": -64, + "min_y": -32, "height": 384, "size_horizontal": 1, - "size_vertical": 4 + "size_vertical": 2 }, "noise_router": { "barrier": { @@ -23,9 +23,9 @@ "xz_scale": 1, "y_scale": 0.5 }, - "continents": "minecraft:overworld/continents", - "depth": "minecraft:overworld/depth", - "erosion": "minecraft:overworld/erosion", + "continents": "tfg:mars/continents", + "depth": 0, + "erosion": "tfg:mars/erosion", "final_density": { "type": "minecraft:min", "argument1": { @@ -44,10 +44,10 @@ "type": "minecraft:mul", "argument1": { "type": "minecraft:y_clamped_gradient", - "from_value": 0, - "from_y": -64, - "to_value": 1, - "to_y": -40 + "from_value": 0.0, + "from_y": -32, + "to_value": 1.0, + "to_y": -20 }, "argument2": { "type": "minecraft:add", @@ -59,26 +59,26 @@ "type": "minecraft:mul", "argument1": { "type": "minecraft:y_clamped_gradient", - "from_value": 1, - "from_y": 364, - "to_value": 0, - "to_y": 384 + "from_value": 1.0, + "from_y": 240, + "to_value": 0.0, + "to_y": 256 }, "argument2": { "type": "minecraft:add", "argument1": 0.078125, "argument2": { "type": "minecraft:range_choice", - "input": "minecraft:overworld/sloped_cheese", + "input": "tfg:mars/sloped_cheese", "max_exclusive": 1.5625, - "min_inclusive": -1000000, + "min_inclusive": -1000000.0, "when_in_range": { "type": "minecraft:min", - "argument1": "minecraft:overworld/sloped_cheese", + "argument1": "tfg:mars/sloped_cheese", "argument2": { "type": "minecraft:mul", - "argument1": 5, - "argument2": "minecraft:overworld/caves/entrances" + "argument1": 5.0, + "argument2": "tfg:mars/caves/entrances" } }, "when_out_of_range": { @@ -91,14 +91,14 @@ "type": "minecraft:add", "argument1": { "type": "minecraft:mul", - "argument1": 4, + "argument1": 4.0, "argument2": { "type": "minecraft:square", "argument": { "type": "minecraft:noise", "noise": "minecraft:cave_layer", - "xz_scale": 1, - "y_scale": 8 + "xz_scale": 1.0, + "y_scale": 8.0 } } }, @@ -112,12 +112,12 @@ "argument2": { "type": "minecraft:noise", "noise": "minecraft:cave_cheese", - "xz_scale": 1, + "xz_scale": 1.0, "y_scale": 0.6666666666666666 } }, - "max": 1, - "min": -1 + "max": 1.0, + "min": -1.0 }, "argument2": { "type": "minecraft:clamp", @@ -127,29 +127,29 @@ "argument2": { "type": "minecraft:mul", "argument1": -0.64, - "argument2": "minecraft:overworld/sloped_cheese" + "argument2": "tfg:mars/sloped_cheese" } }, "max": 0.5, - "min": 0 + "min": 0.0 } } }, - "argument2": "minecraft:overworld/caves/entrances" + "argument2": "tfg:mars/caves/entrances" }, "argument2": { "type": "minecraft:add", - "argument1": "minecraft:overworld/caves/spaghetti_2d", - "argument2": "minecraft:overworld/caves/spaghetti_roughness_function" + "argument1": "tfg:mars/caves/spaghetti_2d", + "argument2": "tfg:mars/caves/spaghetti_roughness_function" } }, "argument2": { "type": "minecraft:range_choice", - "input": "minecraft:overworld/caves/pillars", + "input": "tfg:mars/caves/pillars", "max_exclusive": 0.03, - "min_inclusive": -1000000, - "when_in_range": -1000000, - "when_out_of_range": "minecraft:overworld/caves/pillars" + "min_inclusive": -1000000.0, + "when_in_range": -1000000.0, + "when_out_of_range": "tfg:mars/caves/pillars" } } } @@ -163,7 +163,7 @@ } } }, - "argument2": "minecraft:overworld/caves/noodle" + "argument2": "tfg:mars/caves/noodle" }, "fluid_level_floodedness": { "type": "minecraft:noise", @@ -184,10 +184,10 @@ "type": "minecraft:mul", "argument1": { "type": "minecraft:y_clamped_gradient", - "from_value": 0, - "from_y": -64, - "to_value": 1, - "to_y": -40 + "from_value": 0.0, + "from_y": -32, + "to_value": 1.0, + "to_y": -20 }, "argument2": { "type": "minecraft:add", @@ -199,10 +199,10 @@ "type": "minecraft:mul", "argument1": { "type": "minecraft:y_clamped_gradient", - "from_value": 1, - "from_y": 364, - "to_value": 0, - "to_y": 384 + "from_value": 1.0, + "from_y": 240, + "to_value": 0.0, + "to_y": 256 }, "argument2": { "type": "minecraft:add", @@ -214,22 +214,22 @@ "argument1": -0.703125, "argument2": { "type": "minecraft:mul", - "argument1": 4, + "argument1": 4.0, "argument2": { "type": "minecraft:quarter_negative", "argument": { "type": "minecraft:mul", - "argument1": "minecraft:overworld/depth", + "argument1": "tfg:mars/depth", "argument2": { "type": "minecraft:cache_2d", - "argument": "minecraft:overworld/factor" + "argument": "tfg:mars/factor" } } } } }, - "max": 64, - "min": -64 + "max": 64.0, + "min": -32.0 } } } @@ -237,13 +237,8 @@ } } }, - "lava": { - "type": "minecraft:noise", - "noise": "minecraft:aquifer_lava", - "xz_scale": 1, - "y_scale": 1 - }, - "ridges": "minecraft:overworld/ridges", + "lava": 0, + "ridges": "tfg:mars/ridges", "temperature": { "type": "minecraft:shifted_noise", "noise": "minecraft:temperature", @@ -274,11 +269,11 @@ "if_true": { "type": "minecraft:vertical_gradient", "random_name": "minecraft:bedrock_floor", - "true_at_and_below": { - "above_bottom": 0 - }, "false_at_and_above": { "above_bottom": 5 + }, + "true_at_and_below": { + "above_bottom": 0 } }, "then_run": { @@ -288,6 +283,85 @@ } } }, + + + + + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "tfg:mars/martian_mountains" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_concrete" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "tfg:mars/martian_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_concrete" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "tfg:mars/martian_forests" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:yellow_concrete" + } + } + } + }, { "type": "minecraft:condition", "if_true": { @@ -297,52 +371,20 @@ ] }, "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", - "offset": 2, - "surface_type": "ceiling", - "add_surface_depth": false, - "secondary_depth_range": 0 - }, - "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "tfg:rock/hardened_mars_stone" - } - } - }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:y_above", - "anchor": { - "absolute": 87 - }, - "surface_depth_multiplier": 2, - "add_stone_depth": false - }, - "then_run": { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", - "offset": 3, - "surface_type": "floor", - "add_surface_depth": false, - "secondary_depth_range": 0 - }, - "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "ad_astra:mars_sand" - } - } - } + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:lime_concrete" } - ] + } } }, { @@ -353,20 +395,148 @@ "tfg:mars/martian_riverbed" ] }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:light_blue_glazed_terracotta" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "tfg:mars/martian_dune_edge" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:light_blue_concrete" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "tfg:mars/martian_dunes" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:blue_concrete" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "tfg:mars/martian_deep_desert" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:purple_concrete" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "tfg:mars/martian_oasis" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:magenta_concrete" + } + } + } + }, + + + + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "random_name": "tfg:mars_bottom_rock_layer", + "false_at_and_above": { + "absolute": 8 + }, + "true_at_and_below": { + "absolute": 0 + } + }, "then_run": { "type": "minecraft:sequence", "sequence": [ { "type": "minecraft:condition", "if_true": { - "type": "minecraft:vertical_gradient", - "random_name": "minecraft:deepslate", - "true_at_and_below": { - "absolute": 0 - }, - "false_at_and_above": { - "absolute": 5 - } + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_1", + "min_threshold": -1.0, + "max_threshold": -0.25 }, "then_run": { "type": "minecraft:sequence", @@ -374,23 +544,109 @@ { "type": "minecraft:condition", "if_true": { - "type": "minecraft:stone_depth", - "offset": 2, - "surface_type": "ceiling", - "add_surface_depth": false, - "secondary_depth_range": 0 + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -1.0, + "max_threshold": -0.25 }, "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/hardened/gabbro" - } + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfg:rock/hardened_red_granite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "gtceu:red_granite" + } + } + ] } }, { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/raw/gabbro" + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -0.2, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/gabbro" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/gabbro" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": 0.25, + "max_threshold": 1.0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/diorite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/diorite" + } + } + ] } } ] @@ -399,67 +655,629 @@ { "type": "minecraft:condition", "if_true": { - "type": "minecraft:stone_depth", - "offset": 0, - "surface_type": "ceiling", - "add_surface_depth": false, - "secondary_depth_range": 0 + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_1", + "min_threshold": -0.2, + "max_threshold": 0.2 }, "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/hardened/basalt" - } + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -1.0, + "max_threshold": -0.25 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/granite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/granite" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -0.2, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfg:rock/hardened_venus_stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "ad_astra:venus_stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": 0.25, + "max_threshold": 1.0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfg:rock/hardened_red_granite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "gtceu:red_granite" + } + } + ] + } + } + ] } }, { "type": "minecraft:condition", "if_true": { - "type": "minecraft:above_preliminary_surface" + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_1", + "min_threshold": 0.25, + "max_threshold": 1.0 }, "then_run": { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", - "offset": 1, - "surface_type": "floor", - "add_surface_depth": false, - "secondary_depth_range": 0 - }, - "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:sand/black" + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -1.0, + "max_threshold": -0.25 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/andesite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/andesite" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -0.2, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/dacite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/dacite" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": 0.25, + "max_threshold": 1.0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/diorite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/diorite" + } + } + ] + } } - } + ] + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "random_name": "tfg:mars_middle_rock_layer", + "false_at_and_above": { + "absolute": 50 + }, + "true_at_and_below": { + "absolute": 42 + } + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_1", + "min_threshold": -1.0, + "max_threshold": -0.25 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -1.0, + "max_threshold": -0.25 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfg:rock/hardened_mars_stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "ad_astra:mars_stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -0.2, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/dolomite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/dolomite" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": 0.25, + "max_threshold": 1.0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/chert" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/chert" + } + } + ] + } + } + ] } }, { "type": "minecraft:condition", "if_true": { - "type": "minecraft:above_preliminary_surface" + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_1", + "min_threshold": -0.2, + "max_threshold": 0.2 }, "then_run": { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", - "offset": 3, - "surface_type": "floor", - "add_surface_depth": false, - "secondary_depth_range": 0 - }, - "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/gravel/basalt" + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -1.0, + "max_threshold": -0.25 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/conglomerate" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/conglomerate" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -0.2, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfg:rock/hardened_red_granite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "gtceu:red_granite" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": 0.25, + "max_threshold": 1.0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/basalt" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/basalt" + } + } + ] + } } - } + ] } }, { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/raw/basalt" + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_1", + "min_threshold": 0.25, + "max_threshold": 1.0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -1.0, + "max_threshold": -0.25 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/dacite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/dacite" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -0.2, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfg:rock/hardened_venus_stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "ad_astra:venus_stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": 0.25, + "max_threshold": 1.0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/shale" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/shale" + } + } + ] + } + } + ] } } ] @@ -470,7 +1288,8 @@ "if_true": { "type": "minecraft:biome", "biome_is": [ - "tfg:mars/martian_mountains" + "tfg:mars/martian_mountains", + "tfg:mars/martian_hills" ] }, "then_run": { @@ -479,189 +1298,548 @@ { "type": "minecraft:condition", "if_true": { - "type": "minecraft:stone_depth", - "offset": 2, - "surface_type": "ceiling", - "add_surface_depth": false, - "secondary_depth_range": 0 + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_1", + "min_threshold": -1.0, + "max_threshold": 0 }, "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/hardened/gabbro" - } - } - }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:y_above", - "anchor": { - "absolute": 80 - }, - "surface_depth_multiplier": 0, - "add_stone_depth": false - }, - "then_run": { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", - "offset": 2, - "surface_type": "floor", - "add_surface_depth": false, - "secondary_depth_range": 0 - }, - "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:noise_threshold", - "noise": "minecraft:powder_snow", - "min_threshold": 0.4, - "max_threshold": 1 - }, - "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "ad_astra:moon_sand" - } - } + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -1.0, + "max_threshold": 0 }, - { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/gravel/gabbro" - } + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfg:rock/hardened_red_granite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "gtceu:red_granite" + } + } + ] } - ] - } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": 0, + "max_threshold": 1.0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/basalt" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/basalt" + } + } + ] + } + } + ] } }, { "type": "minecraft:condition", "if_true": { - "type": "minecraft:not", - "invert": { - "type": "minecraft:vertical_gradient", - "random_name": "minecraft:deepslate", - "true_at_and_below": { - "absolute": 0 - }, - "false_at_and_above": { - "absolute": 8 - } - } + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_1", + "min_threshold": 0, + "max_threshold": 1.0 }, "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/raw/gabbro" - } + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -1.0, + "max_threshold": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/gabbro" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/gabbro" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": 0, + "max_threshold": 1.0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfg:rock/hardened_red_granite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "gtceu:red_granite" + } + } + ] + } + } + ] } } ] } }, { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:biome", - "biome_is": [ - "tfg:moon/lunar_diorite_delta" - ] - }, - "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", - "offset": 2, - "surface_type": "ceiling", - "add_surface_depth": false, - "secondary_depth_range": 0 - }, - "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/hardened/diorite" - } - } + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_1", + "min_threshold": -1.0, + "max_threshold": -0.25 }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:y_above", - "anchor": { - "absolute": 87 - }, - "surface_depth_multiplier": 0, - "add_stone_depth": false - }, - "then_run": { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", - "offset": 2, - "surface_type": "floor", - "add_surface_depth": false, - "secondary_depth_range": 0 - }, - "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:noise_threshold", - "noise": "minecraft:powder_snow", - "min_threshold": 0.1, - "max_threshold": 0.4 + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -1.0, + "max_threshold": -0.25 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/chalk" + } + } }, - "then_run": { + { "type": "minecraft:block", "result_state": { - "Name": "tfc:sand/white" + "Name": "tfc:rock/raw/chalk" } } - }, - { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/gravel/diorite" - } - } - ] - } - } - }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:not", - "invert": { - "type": "minecraft:vertical_gradient", - "random_name": "minecraft:deepslate", - "true_at_and_below": { - "absolute": 0 + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -0.2, + "max_threshold": 0.2 }, - "false_at_and_above": { - "absolute": 8 + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/shale" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/shale" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": 0.25, + "max_threshold": 1.0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/dolomite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/dolomite" + } + } + ] } } - }, - "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/raw/diorite" - } - } + ] } - ] - } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_1", + "min_threshold": -0.2, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -1.0, + "max_threshold": -0.25 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/limestone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/limestone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -0.2, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfg:rock/hardened_mars_stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "ad_astra:mars_stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": 0.25, + "max_threshold": 1.0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/claystone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/claystone" + } + } + ] + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_1", + "min_threshold": 0.25, + "max_threshold": 1.0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -1.0, + "max_threshold": -0.25 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/conglomerate" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/conglomerate" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -0.2, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/chert" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/chert" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": 0.25, + "max_threshold": 1.0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfg:rock/hardened_dripstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dripstone_block" + } + } + ] + } + } + ] + } + } + ] } ] }, diff --git a/kubejs/data/tfg/worldgen/noise_settings/moon_noise.json b/kubejs/data/tfg/worldgen/noise_settings/moon_noise.json index 1bbcee479..867fce4b8 100644 --- a/kubejs/data/tfg/worldgen/noise_settings/moon_noise.json +++ b/kubejs/data/tfg/worldgen/noise_settings/moon_noise.json @@ -746,12 +746,12 @@ "type": "minecraft:condition", "if_true": { "type": "minecraft:vertical_gradient", - "random_name": "tfg:between_middle_and_bottom_rock_layers", + "random_name": "tfg:moon_bottom_rock_layer", "false_at_and_above": { - "absolute": 4 + "absolute": 35 }, "true_at_and_below": { - "absolute": -4 + "absolute": 30 } }, "then_run": { @@ -791,14 +791,14 @@ "then_run": { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/hardened/basalt" + "Name": "tfc:rock/hardened/rhyolite" } } }, { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/raw/basalt" + "Name": "tfc:rock/raw/rhyolite" } } ] @@ -827,14 +827,14 @@ "then_run": { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/hardened/gabbro" + "Name": "tfc:rock/hardened/dacite" } } }, { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/raw/gabbro" + "Name": "tfc:rock/raw/dacite" } } ] @@ -863,14 +863,14 @@ "then_run": { "type": "minecraft:block", "result_state": { - "Name": "tfg:rock/hardened_moon_deepslate" + "Name": "tfc:rock/hardened/basalt" } } }, { "type": "minecraft:block", "result_state": { - "Name": "ad_astra:moon_deepslate" + "Name": "tfc:rock/raw/basalt" } } ] @@ -913,14 +913,14 @@ "then_run": { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/hardened/andesite" + "Name": "tfc:rock/hardened/gabbro" } } }, { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/raw/andesite" + "Name": "tfc:rock/raw/gabbro" } } ] @@ -949,14 +949,14 @@ "then_run": { "type": "minecraft:block", "result_state": { - "Name": "tfg:rock/hardened_moon_stone" + "Name": "tfg:rock/hardened_moon_deepslate" } } }, { "type": "minecraft:block", "result_state": { - "Name": "ad_astra:moon_stone" + "Name": "ad_astra:moon_deepslate" } } ] @@ -985,14 +985,14 @@ "then_run": { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/hardened/diorite" + "Name": "tfc:rock/hardened/andesite" } } }, { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/raw/diorite" + "Name": "tfc:rock/raw/andesite" } } ] @@ -1035,14 +1035,14 @@ "then_run": { "type": "minecraft:block", "result_state": { - "Name": "tfg:rock/hardened_glacio_stone" + "Name": "tfg:rock/hardened_moon_stone" } } }, { "type": "minecraft:block", "result_state": { - "Name": "ad_astra:glacio_stone" + "Name": "ad_astra:moon_stone" } } ] @@ -1071,14 +1071,14 @@ "then_run": { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/hardened/rhyolite" + "Name": "tfc:rock/hardened/diorite" } } }, { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/raw/rhyolite" + "Name": "tfc:rock/raw/diorite" } } ] @@ -1107,14 +1107,14 @@ "then_run": { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/hardened/dacite" + "Name": "tfg:rock/hardened_glacio_stone" } } }, { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/raw/dacite" + "Name": "ad_astra:glacio_stone" } } ] @@ -1130,12 +1130,12 @@ "type": "minecraft:condition", "if_true": { "type": "minecraft:vertical_gradient", - "random_name": "tfg:between_top_and_middle_rock_layers", + "random_name": "tfg:moon_middle_rock_layer", "false_at_and_above": { - "absolute": 40 + "absolute": 65 }, "true_at_and_below": { - "absolute": 35 + "absolute": 60 } }, "then_run": { @@ -1175,14 +1175,14 @@ "then_run": { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/hardened/basalt" + "Name": "tfc:rock/hardened/dacite" } } }, { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/raw/basalt" + "Name": "tfc:rock/raw/dacite" } } ] @@ -1211,14 +1211,14 @@ "then_run": { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/hardened/gabbro" + "Name": "tfc:rock/hardened/basalt" } } }, { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/raw/gabbro" + "Name": "tfc:rock/raw/basalt" } } ] @@ -1247,14 +1247,14 @@ "then_run": { "type": "minecraft:block", "result_state": { - "Name": "tfg:rock/hardened_moon_deepslate" + "Name": "tfc:rock/hardened/gabbro" } } }, { "type": "minecraft:block", "result_state": { - "Name": "ad_astra:moon_deepslate" + "Name": "tfc:rock/raw/gabbro" } } ] @@ -1297,14 +1297,14 @@ "then_run": { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/hardened/andesite" + "Name": "tfg:rock/hardened_moon_deepslate" } } }, { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/raw/andesite" + "Name": "ad_astra:moon_deepslate" } } ] @@ -1333,14 +1333,14 @@ "then_run": { "type": "minecraft:block", "result_state": { - "Name": "tfg:rock/hardened_moon_stone" + "Name": "tfc:rock/hardened/andesite" } } }, { "type": "minecraft:block", "result_state": { - "Name": "ad_astra:moon_stone" + "Name": "tfc:rock/raw/andesite" } } ] @@ -1369,14 +1369,14 @@ "then_run": { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/hardened/diorite" + "Name": "tfg:rock/hardened_moon_stone" } } }, { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/raw/diorite" + "Name": "ad_astra:moon_stone" } } ] @@ -1419,14 +1419,14 @@ "then_run": { "type": "minecraft:block", "result_state": { - "Name": "tfg:rock/hardened_glacio_stone" + "Name": "tfc:rock/hardened/diorite" } } }, { "type": "minecraft:block", "result_state": { - "Name": "ad_astra:glacio_stone" + "Name": "tfc:rock/raw/diorite" } } ] @@ -1455,14 +1455,14 @@ "then_run": { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/hardened/rhyolite" + "Name": "tfg:rock/hardened_glacio_stone" } } }, { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/raw/rhyolite" + "Name": "ad_astra:glacio_stone" } } ] @@ -1491,14 +1491,14 @@ "then_run": { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/hardened/dacite" + "Name": "tfc:rock/hardened/rhyolite" } } }, { "type": "minecraft:block", "result_state": { - "Name": "tfc:rock/raw/dacite" + "Name": "tfc:rock/raw/rhyolite" } } ] diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/hardening.json b/kubejs/data/tfg/worldgen/placed_feature/mars/hardening.json new file mode 100644 index 000000000..eef3d5728 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/hardening.json @@ -0,0 +1,186 @@ +{ + "feature": { + "type": "minecraft:replace_single_block", + "config": { + "targets": [ + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "ad_astra:mars_stone" + }, + "state": { + "Name": "tfg:rock/hardened_mars_stone" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "ad_astra:venus_stone" + }, + "state": { + "Name": "tfg:rock/hardened_venus_stone" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "gtceu:red_granite" + }, + "state": { + "Name": "tfg:rock/hardened_red_granite" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/gabbro" + }, + "state": { + "Name": "tfc:rock/hardened/gabbro" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/rhyolite" + }, + "state": { + "Name": "tfc:rock/hardened/rhyolite" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/basalt" + }, + "state": { + "Name": "tfc:rock/hardened/basalt" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/andesite" + }, + "state": { + "Name": "tfc:rock/hardened/andesite" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/dacite" + }, + "state": { + "Name": "tfc:rock/hardened/dacite" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/diorite" + }, + "state": { + "Name": "tfc:rock/hardened/diorite" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/shale" + }, + "state": { + "Name": "tfc:rock/hardened/shale" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/dolomite" + }, + "state": { + "Name": "tfc:rock/hardened/dolomite" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/limestone" + }, + "state": { + "Name": "tfc:rock/hardened/limestone" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/claystone" + }, + "state": { + "Name": "tfc:rock/hardened/claystone" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/conglomerate" + }, + "state": { + "Name": "tfc:rock/hardened/conglomerate" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/chert" + }, + "state": { + "Name": "tfc:rock/hardened/chert" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "minecraft:dripstone_block" + }, + "state": { + "Name": "tfg:rock/hardened_dripstone" + } + }, + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "tfc:can_landslide" + }, + "state": { + "Name": "tfg:rock/hardened_mars_stone" + } + } + ] + } + }, + "placement": [ + { + "type": "minecraft:carving_mask", + "step": "air" + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "up", + "max_steps": 1, + "target_condition": { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "ad_astra:mars_stone_replaceables" + }, + { + "type": "minecraft:matching_block_tag", + "tag": "tfc:can_landslide" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/aeronos_huge.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/aeronos_huge.json index a7b4b4d0d..7290dc6a9 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/aeronos_huge.json +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/aeronos_huge.json @@ -14,6 +14,10 @@ }, { "type": "minecraft:biome" + }, + { + "type": "tfc:climate", + "min_forest": "normal" } ] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/aeronos_patch.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/aeronos_patch.json index a7d269ef9..11e36935f 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/aeronos_patch.json +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/aeronos_patch.json @@ -14,6 +14,10 @@ }, { "type": "minecraft:biome" + }, + { + "type": "tfc:climate", + "min_forest": "sparse" } ] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/strophar_huge.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/strophar_huge.json index b9e5e0fd4..e0235e74d 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/strophar_huge.json +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/strophar_huge.json @@ -14,6 +14,10 @@ }, { "type": "minecraft:biome" + }, + { + "type": "tfc:climate", + "min_forest": "normal" } ] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/strophar_patch.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/strophar_patch.json index 518505030..9fe5bec6b 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/strophar_patch.json +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/strophar_patch.json @@ -14,6 +14,10 @@ }, { "type": "minecraft:biome" + }, + { + "type": "tfc:climate", + "min_forest": "sparse" } ] } \ No newline at end of file diff --git a/kubejs/server_scripts/ad_astra/data.js b/kubejs/server_scripts/ad_astra/data.js index 08bdc5e7e..6ddcc9c82 100644 --- a/kubejs/server_scripts/ad_astra/data.js +++ b/kubejs/server_scripts/ad_astra/data.js @@ -17,4 +17,8 @@ function registerTFCDataForAdAstra(event) { food.dairy(5) food.decayModifier(10) }) + + global.AD_ASTRA_WOOD.forEach(wood => { + event.fuel(wood.logs, 800, 1500, null) + }) } \ No newline at end of file diff --git a/kubejs/server_scripts/ad_astra/recipes.js b/kubejs/server_scripts/ad_astra/recipes.js index 452bde599..3969ec81b 100644 --- a/kubejs/server_scripts/ad_astra/recipes.js +++ b/kubejs/server_scripts/ad_astra/recipes.js @@ -25,6 +25,7 @@ const registerAdAstraRecipes = (event) => { .inputFluids(Fluid.of('gtceu:polyethylene', 144 * 16)) .itemOutputs('ad_astra:rocket_nose_cone') .duration(1200) + .circuit(2) .EUt(480) @@ -40,6 +41,7 @@ const registerAdAstraRecipes = (event) => { .inputFluids(Fluid.of('gtceu:red_steel', 144)) .itemOutputs('9x #forge:dusts/rocket_alloy_t1') .duration(580) + .circuit(2) .EUt(480) event.recipes.gtceu.chemical_bath('tfg:rocket_alloy_cool_down_water') @@ -60,6 +62,7 @@ const registerAdAstraRecipes = (event) => { .itemInputs('#forge:plates/rocket_alloy_t1', '#forge:double_plates/stainless_steel') .itemOutputs('ad_astra:rocket_fin') .duration(150) + .circuit(2) .EUt(GTValues.VA[GTValues.HV]) @@ -73,6 +76,7 @@ const registerAdAstraRecipes = (event) => { .inputFluids(Fluid.of('gtceu:blue_steel', 144 * 8)) .itemOutputs('ad_astra:steel_engine') .duration(600) + .circuit(2) .EUt(GTValues.VA[GTValues.HV]) event.recipes.gtceu.assembler('ad_astra:assembler_tier_1_rocket') @@ -86,6 +90,7 @@ const registerAdAstraRecipes = (event) => { .inputFluids(Fluid.of('gtceu:silicon', 144 * 16)) .itemOutputs('ad_astra:tier_1_rocket') .duration(1200) + .circuit(2) .EUt(GTValues.VA[GTValues.HV]) //#endregion @@ -568,13 +573,14 @@ const registerAdAstraRecipes = (event) => { ], { B: '#tfc:hammers', C: `ad_astra:${x.type}_plating_slab`, - D: '#forge:springs', + D: '#forge:small_springs', E: '#forge:tools/screwdrivers' }).id(`tfg:shaped/ad_astra_${x.type}_pressure_plate`) event.recipes.gtceu.assembler(`tfg:ad_astra_${x.type}_pressure_plate`) - .itemInputs('#forge:springs', `ad_astra:${x.type}_plating_slab`) + .itemInputs('#forge:small_springs', `2x ad_astra:${x.type}_plating_slab`) .itemOutputs(`ad_astra:${x.type}_plating_pressure_plate`) + .circuit(0) .duration(50) .EUt(2) @@ -692,4 +698,40 @@ const registerAdAstraRecipes = (event) => { }) //#endregion + + //#region Wood + event.remove({ type: 'greate:cutting', input: '#ad_astra:aeronos_caps' }) + event.remove({ type: 'greate:cutting', input: 'ad_astra:aeronos_planks' }) + event.remove({ type: 'greate:cutting', input: '#ad_astra:strophar_caps' }) + event.remove({ type: 'greate:cutting', input: 'ad_astra:glacian_log' }) + event.remove({ type: 'greate:cutting', input: 'ad_astra:stripped_glacian_log' }) + event.remove({ type: 'greate:cutting', input: 'ad_astra:strophar_planks' }) + event.remove({ type: 'greate:cutting', input: 'ad_astra:glacian_planks' }) + + global.AD_ASTRA_WOOD.forEach(wood => { + woodBuilder(event, wood.name, wood.lumber, wood.logs, wood.log, wood.stripped_log, wood.plank, wood.stair, wood.slab, wood.door, wood.trapdoor, wood.fence, wood.fence_gate, wood.support, wood.pressure_plate, wood.button) + }) + + event.shaped('16x ad_astra:aeronos_ladder', [ + 'A A', + 'ABA', + 'A A' + ], { + A: 'tfg:wood/lumber/aeronos', + B: ChemicalHelper.get(TagPrefix.rod, GTMaterials.Wood, 1), + }).id('tfg:shaped/aeronos_ladder') + + event.shaped('16x ad_astra:strophar_ladder', [ + 'A A', + 'ABA', + 'A A' + ], { + A: 'tfg:wood/lumber/strophar', + B: ChemicalHelper.get(TagPrefix.rod, GTMaterials.Wood, 1), + }).id('tfg:shaped/strophar_ladder') + + generateGreenHouseRecipe(event, '8x ad_astra:glacian_fur', 16000, '64x ad_astra:glacian_log', 'tfg:green_house/glacian_tree', 'ad_astra:moon', 8, '8x ad_astra:glacian_leaves', GTValues.VA[GTValues.MV]) + generateGreenHouseRecipe(event, '8x ad_astra:strophar_mushroom', 16000, '64x ad_astra:strophar_stem', 'tfg:green_house/strophar_mushroom', 'ad_astra:moon', 8, '16x ad_astra:strophar_cap', GTValues.VA[GTValues.MV]) + generateGreenHouseRecipe(event, '8x ad_astra:aeronos_mushroom', 16000, '64x ad_astra:aeronos_stem', 'tfg:green_house/aeronos_mushroom', 'ad_astra:moon', 8, '16x ad_astra:aeronos_cap', GTValues.VA[GTValues.MV]) + //#endregion } diff --git a/kubejs/server_scripts/ad_astra/tags.js b/kubejs/server_scripts/ad_astra/tags.js index 026491856..8e0fbbb2c 100644 --- a/kubejs/server_scripts/ad_astra/tags.js +++ b/kubejs/server_scripts/ad_astra/tags.js @@ -53,6 +53,10 @@ const registerAdAstraItemTags = (event) => { // Insulation Tier 1 event.add('forge:insulation_t1', 'gtceu:borosilicate_glass_dust') event.add('forge:insulation_t1', 'gtceu:vitrified_asbestos_dust') + + //Insulation Tier 2 + event.add('forge:insulation_t2', 'tfg:aes_insulation_sheet') + event.add('forge:insulation_t2', 'tfg:aes_insulation_roll') // Deco blocks const DECO_BLOCKS = [ 'iron', 'steel', 'desh', 'calorite', 'ostrum' ]; @@ -81,6 +85,28 @@ const registerAdAstraItemTags = (event) => { event.add('ad_astra:space_suit_items', 'gtceu:quarktech_helmet') event.add('ad_astra:space_suit_items', 'gtceu:quarktech_leggings') event.add('ad_astra:space_suit_items', 'gtceu:quarktech_boots') + + event.remove('minecraft:wool', 'ad_astra:glacian_fur') + + global.AD_ASTRA_WOOD.forEach(wood => { + + if (wood.log) { + event.add('minecraft:logs', wood.log) + event.add('minecraft:logs_that_burn', wood.log) + } + + if (wood.stripped_log) { + event.add('minecraft:logs', wood.stripped_log) + event.add('minecraft:logs_that_burn', wood.stripped_log) + } + + if (wood.isHardwood == true) { + event.add('tfg:hardwood', wood.logs) + } else { + event.add('tfg:softwood', wood.logs) + } + }) + } const registerAdAstraBlockTags = (event) => { @@ -147,18 +173,61 @@ const registerAdAstraBlockTags = (event) => { event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/raw/dacite') event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/hardened/dacite') + // Mars + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/dacite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/dacite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/basalt') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/basalt') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/gabbro') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/gabbro') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/diorite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/diorite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/rhyolite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/rhyolite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/andesite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/andesite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/chert') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/chert') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/conglomerate') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/conglomerate') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/claystone') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/claystone') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/limestone') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/limestone') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/dolomite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/dolomite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/shale') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/shale') + event.add('ad_astra:mars_stone_replaceables', 'ad_astra:mars_stone') + event.add('ad_astra:mars_stone_replaceables', 'tfg:rock/hardened_mars_stone') + event.add('ad_astra:mars_stone_replaceables', 'ad_astra:venus_stone') + event.add('ad_astra:mars_stone_replaceables', 'tfg:rock/hardened_venus_stone') + event.add('ad_astra:mars_stone_replaceables', 'gtceu:red_granite') + event.add('ad_astra:mars_stone_replaceables', 'tfg:rock/hardened_red_granite') + event.add('ad_astra:mars_stone_replaceables', 'minecraft:dripstone_block') + event.add('ad_astra:mars_stone_replaceables', 'tfg:rock/hardened_dripstone') + event.add('ad_astra:mars_stone_replaceables', 'minecraft:red_sand') + event.add('ad_astra:mars_stone_replaceables', 'ad_astra:mars_sand') + event.add('ad_astra:mars_stone_replaceables', 'ad_astra:venus_sand') + event.add('ad_astra:mars_stone_replaceables', 'tfc:sand/black') + event.add('ad_astra:mars_stone_replaceables', 'tfc:sand/red') + event.add('ad_astra:mars_stone_replaceables', 'tfc:sand/pink') + + event.add('minecraft:rabbits_spawnable_on', '#ad_astra:moon_stone_replaceables') event.add('species:limpet_spawnable_on', '#ad_astra:moon_stone_replaceables') event.add('tfc:can_landslide', 'ad_astra:moon_sand') event.add('tfc:can_landslide', 'ad_astra:mars_sand') event.add('tfc:can_landslide', 'ad_astra:venus_sand') + event.add('tfc:can_landslide', 'minecraft:red_sand') event.add('tfc:can_landslide', 'ad_astra:moon_cobblestone') event.add('tfc:can_landslide', 'ad_astra:mars_cobblestone') event.add('tfc:can_landslide', 'ad_astra:venus_cobblestone') event.add('tfc:can_landslide', 'ad_astra:mercury_cobblestone') event.add('tfc:can_landslide', 'ad_astra:glacio_cobblestone') + event.add('tfc:can_landslide', 'gtceu:red_granite_cobblestone') event.add('forge:cobblestone', 'ad_astra:moon_cobblestone') event.add('forge:cobblestone', 'ad_astra:mars_cobblestone') diff --git a/kubejs/server_scripts/afc/recipes.js b/kubejs/server_scripts/afc/recipes.js index c42ac322b..83579cb9c 100644 --- a/kubejs/server_scripts/afc/recipes.js +++ b/kubejs/server_scripts/afc/recipes.js @@ -40,21 +40,22 @@ const registerAFCRecipes = (event) => { // Плита -> Пиломатериалы generateCutterRecipe(event, `afc:wood/planks/${wood}_slab`, `2x afc:wood/lumber/${wood}`, 50, 7, `${wood}_lumber_from_slab`) + + // ? -> Деревянная нажимная пластина event.shaped(`afc:wood/planks/${wood}_pressure_plate`, [ - 'ABA', + ' B ', 'CDC', - 'AEA' + ' E ' ], { - A: '#forge:screws/wood', B: '#tfc:hammers', C: `afc:wood/planks/${wood}_slab`, - D: '#forge:springs', + D: '#forge:small_springs', E: '#forge:tools/screwdrivers' }).id(`afc:crafting/wood/${wood}_pressure_plate`) event.recipes.gtceu.assembler(`${wood}_pressure_plate`) - .itemInputs('#forge:springs', `2x afc:wood/planks/${wood}_slab`) + .itemInputs('#forge:small_springs', `2x afc:wood/planks/${wood}_slab`) .circuit(0) .itemOutputs(`2x afc:wood/planks/${wood}_pressure_plate`) .duration(50) @@ -64,6 +65,20 @@ const registerAFCRecipes = (event) => { event.remove({ id: `afc:crafting/wood/${wood}_button` }) generateCutterRecipe(event, `afc:wood/planks/${wood}_pressure_plate`, `6x afc:wood/planks/${wood}_button`, 50, 2, `${wood}_button`) + + //Stomping Barrel + event.remove({ id: `afc:crafting/wood/${wood}_stomping_barrel`}) + + event.shaped(`afc:wood/stomping_barrel/${wood}`, [ + 'ABA', + 'AAA', + 'BBB' + ], { + A: `afc:wood/lumber/${wood}`, + B: 'tfc:glue' + + }).id(`afc:crafting/wood/${wood}_stomping_barrel`) + }) // #endregion diff --git a/kubejs/server_scripts/betterend/recipes.js b/kubejs/server_scripts/betterend/recipes.js index c84bdf38f..62e00407e 100644 --- a/kubejs/server_scripts/betterend/recipes.js +++ b/kubejs/server_scripts/betterend/recipes.js @@ -7,21 +7,21 @@ function registerBetterEndRecipes(event) { const recipeId = `betterend:greenhouse_${itemId.replace(':', '_')}`; event.recipes.gtceu.greenhouse(recipeId) - .itemInputs(element.id) + .notConsumable(element.id) .itemOutputs(`8x ${element.id}`) - .chancedOutput(element.id, 7500, 1000) - .chancedOutput(element.id, 5000, 1000) + .chancedOutput(element.id, 750, 0) + .chancedOutput(element.id, 500, 0) .duration(36000) // 30 mins .circuit(1) .EUt(GTValues.VA[GTValues.MV]) .dimension('ad_astra:moon') event.recipes.gtceu.greenhouse(recipeId + "_helium") - .itemInputs(element.id) + .notConsumable(element.id) .inputFluids(Fluid.of('gtceu:helium_3', 500)) .itemOutputs(`8x ${element.id}`) - .chancedOutput(element.id, 8500, 1000) - .chancedOutput(element.id, 6000, 1000) + .chancedOutput(element.id, 4000, 0) + .chancedOutput(element.id, 3000, 0) .duration(12000) // 30 mins .circuit(2) .EUt(GTValues.VA[GTValues.MV]) diff --git a/kubejs/server_scripts/create/recipes.js b/kubejs/server_scripts/create/recipes.js index 1b3206879..d3802d49f 100644 --- a/kubejs/server_scripts/create/recipes.js +++ b/kubejs/server_scripts/create/recipes.js @@ -8,8 +8,8 @@ const registerCreateRecipes = (event) => { { id: 'create:crafting/kinetics/cuckoo_clock' }, { id: 'create:crafting/kinetics/mysterious_cuckoo_clock' }, { id: 'create:crafting/kinetics/smart_chute' }, - { id: 'create:crafting/kinetics/speedometerfrom_conversion' }, - { id: 'create:crafting/kinetics/stressometerfrom_conversion' }, + { id: 'create:crafting/kinetics/speedometer_from_conversion' }, + { id: 'create:crafting/kinetics/stressometer_from_conversion' }, { id: 'create:crafting/kinetics/smart_fluid_pipe' }, { id: 'create:crafting/kinetics/portable_fluid_interface' }, { id: 'create:crafting/kinetics/clockwork_bearing' }, @@ -1494,7 +1494,7 @@ const registerCreateRecipes = (event) => { event.recipes.gtceu.assembler('tfg:create/precision_mechanism') .itemInputs('#forge:plates/gold', '2x #forge:small_springs/gold', '2x #forge:small_gears/brass', '2x #forge:bolts/wrought_iron') .itemOutputs('create:precision_mechanism') - .duration(2000) + .duration(20 * 20) .EUt(20) //#endregion diff --git a/kubejs/server_scripts/create/tags.js b/kubejs/server_scripts/create/tags.js index 03cfc7f9f..46855e8c3 100644 --- a/kubejs/server_scripts/create/tags.js +++ b/kubejs/server_scripts/create/tags.js @@ -46,6 +46,7 @@ const registerCreateItemTags = (event) => { event.add('create:blaze_burner_fuel/special', "gtceu:flawless_coal_gem") event.add('create:blaze_burner_fuel/special', "gtceu:exquisite_coal_gem") event.add('create:blaze_burner_fuel/special', "gtceu:coke_gem") + event.add('create:blaze_burner_fuel/special', "beneath:cursecoal") event.add('create:non_movable', 'gtceu:wood_crate') event.add('create:non_movable', 'gtceu:bronze_crate') diff --git a/kubejs/server_scripts/create_factory_logistics/recipes.js b/kubejs/server_scripts/create_factory_logistics/recipes.js index 615edfec9..087341b4d 100644 --- a/kubejs/server_scripts/create_factory_logistics/recipes.js +++ b/kubejs/server_scripts/create_factory_logistics/recipes.js @@ -16,7 +16,7 @@ function registerCreateFactoryLogisticsRecipes(event) { event.recipes.gtceu.assembler('create_factory_logistics:fluid_mechanism') .itemInputs('#forge:plates/copper', '2x #forge:small_springs/copper', '2x #forge:small_gears/brass', '2x #forge:bolts/wrought_iron') .itemOutputs('create_factory_logistics:fluid_mechanism') - .duration(2000) + .duration(20 * 20) .EUt(20) diff --git a/kubejs/server_scripts/endermanoverhaul/tags.js b/kubejs/server_scripts/endermanoverhaul/tags.js index 08900e071..d892dbd8b 100644 --- a/kubejs/server_scripts/endermanoverhaul/tags.js +++ b/kubejs/server_scripts/endermanoverhaul/tags.js @@ -7,7 +7,7 @@ const registerEndermanOverhaulItemTags = (event) => { 'endermanoverhaul:corrupted_shield', 'endermanoverhaul:badlands_hood', - 'endermanoverhaul:savannah_hood', + 'endermanoverhaul:savanna_hood', 'endermanoverhaul:snowy_hood', 'endermanoverhaul:bubble_pearl', diff --git a/kubejs/server_scripts/firmalife/tags.js b/kubejs/server_scripts/firmalife/tags.js index 32c5be333..c688cdcbf 100644 --- a/kubejs/server_scripts/firmalife/tags.js +++ b/kubejs/server_scripts/firmalife/tags.js @@ -19,6 +19,8 @@ const registerFirmaLifeItemTags = (event) => { // Удаление тегов у руд event.removeAllTagsFrom("/tfc:ore/[^*]+/[^*]+/") + + } const registerFirmaLifeBlockTags = (event) => { @@ -31,6 +33,35 @@ const registerFirmaLifeBlockTags = (event) => { // Удаление тегов у руд event.removeAllTagsFrom("/tfc:ore/[^*]+/[^*]+/") + // Удаление тегов у отключенных предметов + global.FIRMALIFE_DISABLED_ITEMS.forEach(item => { + event.removeAllTagsFrom(item) + }) + + // Удаление тегов у руд + event.removeAllTagsFrom("/tfc:ore/[^*]+/[^*]+/") + + //greenhouse wall fixes + event.remove('firmalife:always_valid_greenhouse_wall', '#minecraft:doors') + event.remove('firmalife:always_valid_greenhouse_wall', '#minecraft:trapdoors') + + const greenhouse_tiers = [ + 'treated_wood', + 'weathered_treated_wood', + 'copper', + 'exposed_copper', + 'weathered_copper', + 'oxidized_copper', + 'iron', + 'rusted_iron', + 'stainless_steel' + ] + + greenhouse_tiers.forEach(tier => { + event.add('firmalife:always_valid_greenhouse_wall', 'firmalife:' + tier + '_greenhouse_door') + event.add('firmalife:always_valid_greenhouse_wall', 'firmalife:' + tier + '_greenhouse_trapdoor') + }) + //Allows any block with the word "brick" in its id to be used as oven insulation. //Add blacklisted words to the const with | between. const brick_blacklist = ('drying|additionalplacements'); @@ -52,4 +83,4 @@ const registerFirmaLifeFluidTags = (event) => { event.add('firmalife:mixable', 'tfcchannelcasting:dark_chocolate') event.add('firmalife:mixable', 'afc:maple_syrup') event.add('firmalife:mixable', 'afc:birch_syrup') -} \ No newline at end of file +} diff --git a/kubejs/server_scripts/greate/recipes.removes.js b/kubejs/server_scripts/greate/recipes.removes.js index 2ccba468f..55bcd52e1 100644 --- a/kubejs/server_scripts/greate/recipes.removes.js +++ b/kubejs/server_scripts/greate/recipes.removes.js @@ -13,6 +13,7 @@ function removeGreateRecipes(event) { }) event.remove({ mod: 'greate', input: 'create:andesite_alloy' }); + event.remove({ mod: 'greate', output: 'minecraft:bamboo_pressure_plate'}) event.remove({ id: 'greate:shapeless/large_andesite_alloy_cogwheel_from_little' }) event.remove({ id: 'greate:shapeless/large_steel_cogwheel_from_little' }) diff --git a/kubejs/server_scripts/gregtech/data.js b/kubejs/server_scripts/gregtech/data.js index ab7f9ed32..3bf6b6017 100644 --- a/kubejs/server_scripts/gregtech/data.js +++ b/kubejs/server_scripts/gregtech/data.js @@ -112,6 +112,7 @@ const registerGTCEUMetals = (event) => { event.metal('gtceu:redstone', 460, 0.01729, null, null, null, 1, 'tfg:redstone') event.metal('gtceu:red_alloy', 740, 0.01529, '#forge:ingots/red_alloy', '#forge:double_ingots/red_alloy', '#forge:plates/red_alloy', 2, 'tfg:red_alloy') event.metal('gtceu:tin_alloy', 1250, 0.00829, '#forge:ingots/tin_alloy', '#forge:double_ingots/tin_alloy', '#forge:plates/tin_alloy', 3, 'tfg:tin_alloy') + event.metal('gtceu:lead', 330, 0.01729, '#forge:ingots/lead', '#forge:double_ingots/lead', '#forge:plates/lead', 2, 'tfg:lead') } diff --git a/kubejs/server_scripts/gregtech/recipes.js b/kubejs/server_scripts/gregtech/recipes.js index 5d028cf34..57b3e6e82 100644 --- a/kubejs/server_scripts/gregtech/recipes.js +++ b/kubejs/server_scripts/gregtech/recipes.js @@ -174,28 +174,29 @@ const registerGTCEURecipes = (event) => { event.recipes.gtceu.compressor('plant_ball_from_tfc_seeds') .itemInputs('8x #tfc:seeds') .itemOutputs('gtceu:plant_ball') - .circuit(1) .duration(300) .EUt(2) + let food = Ingredient.of('#tfc:foods') + .subtract('minecraft:brown_mushroom') + .subtract('minecraft:red_mushroom') + .withCount(8) + event.recipes.gtceu.compressor('plant_ball_from_tfc_food') - .itemInputs('8x #tfc:foods') + .itemInputs(food) .itemOutputs('gtceu:plant_ball') - .circuit(1) .duration(300) .EUt(2) event.recipes.gtceu.compressor('plant_ball_from_tfc_plants') .itemInputs('8x #tfc:plants') .itemOutputs('gtceu:plant_ball') - .circuit(1) .duration(300) .EUt(2) event.recipes.gtceu.compressor('plant_ball_from_tfc_corals') .itemInputs('8x #tfc:corals') .itemOutputs('gtceu:plant_ball') - .circuit(1) .duration(300) .EUt(2) @@ -483,12 +484,19 @@ const registerGTCEURecipes = (event) => { }).id('gtceu:shaped/electric_blast_furnace') // Клей из ТФК клея - event.recipes.gtceu.extractor('glue_from_tfc_glue') + event.recipes.gtceu.extractor('tfg:glue_from_tfc_glue') .itemInputs('tfc:glue') .outputFluids(Fluid.of('gtceu:glue', 50)) .duration(400) .EUt(5) + event.recipes.gtceu.mixer('tfg:glue_from_bone_meal') + .itemInputs('minecraft:bone_meal') + .inputFluids(Fluid.of('tfc:limewater', 500)) + .outputFluids(Fluid.of('gtceu:glue', 50)) + .duration(100) + .EUt(5) + // Исправление рецепта пыли серебра стерлинга generateMixerRecipe(event, ['#forge:dusts/copper', '4x #forge:dusts/silver'], [], '5x gtceu:sterling_silver_dust', 1, [], 500, 7, 64, 'sterling_silver') @@ -1040,6 +1048,15 @@ const registerGTCEURecipes = (event) => { //#endregion + // Fix Snow in Compressor + + event.remove({ id: 'gtceu:compressor/snowballs_to_snow' }) + event.recipes.gtceu.compressor('gtceu:compressor/snowballs_to_snow_fixed') + .itemInputs('8x minecraft:snowball') + .itemOutputs('minecraft:snow_block') + .duration(20*10) + .EUt(2) + //#region Changing tiers of decomposition recipes event.recipes.gtceu.electrolyzer('gtceu:decomposition_electrolyzing_clay') @@ -1185,9 +1202,9 @@ const registerGTCEURecipes = (event) => { generateMixerRecipe(event, ['gtceu:tiny_nether_quartz_dust', '8x gtceu:tiny_redstone_dust'], [], 'gtceu:rose_quartz_dust', 2, [], 20, 60, 64, 'tiny_rose_quartz_dust_mixing') event.recipes.gtceu.autoclave("autoclave_dust_rose_quartz_ice") - .itemInputs("gtceu:rose_quartz_dust") + .itemInputs('#forge:dusts/rose_quartz') .inputFluids(Fluid.of("gtceu:ice", 144)) - .itemOutputs("gtceu:rose_quartz_gem") + .itemOutputs("#forge:gems/rose_quartz") .duration(2000) .EUt(120) @@ -1244,25 +1261,10 @@ const registerGTCEURecipes = (event) => { //#region Circuit Fixes - //Adds circuit #1 to the tetrafluoroethylene_from_chloroform recipe - event.findRecipes({ id: "gtceu:chemical_reactor/tetrafluoroethylene_from_chloroform" }).forEach(recipe => { - const inputs = recipe.json.get("inputs"); - const itemArray = inputs.has("item") ? Java.from(inputs.get("item")) : []; - - itemArray.push({ - content: { - type: "gtceu:circuit", - configuration: 1 - }, - chance: 0, - maxChance: 10000, - tierChanceBoost: 0 - }); - - inputs.add("item", itemArray); - recipe.json.add("inputs", inputs); - }); - + global.ADD_CIRCUIT.forEach(item => { + addCircuitToRecipe(event, item.recipeId, item.circuitNumber) + }) + //#endregion //#region Chemical Reaction for Solar Panel @@ -1288,4 +1290,22 @@ const registerGTCEURecipes = (event) => { //#endregion event.replaceInput({ id: 'gtceu:shaped/powderbarrel' }, 'gtceu:wood_plate', '#tfc:lumber') + + event.shaped('gtceu:treated_wood_pressure_plate', [ + ' B ', + 'CDC', + ' E ' + ], { + B: '#tfc:hammers', + C: 'gtceu:treated_wood_slab', + D: '#forge:small_springs', + E: '#forge:tools/screwdrivers' + }).id('gtceu:shaped/treated_pressure_plate') + + event.recipes.gtceu.assembler('gtceu:treated_pressure_plate') + .itemInputs('#forge:small_springs', '2x gtceu:treated_wood_slab') + .itemOutputs('gtceu:treated_wood_pressure_plate') + .circuit(0) + .duration(50) + .EUt(2) } diff --git a/kubejs/server_scripts/gregtech/recipes.materials.js b/kubejs/server_scripts/gregtech/recipes.materials.js index 31e10161c..8b2b4d77e 100644 --- a/kubejs/server_scripts/gregtech/recipes.materials.js +++ b/kubejs/server_scripts/gregtech/recipes.materials.js @@ -750,7 +750,7 @@ function registerGTCEUMetalRecipes(event) { const materialDustStack = ChemicalHelper.get(TagPrefix.dust, material, 1) const materialIngotStack = ChemicalHelper.get(TagPrefix.ingot, material, 1) - const glassDustStack = ChemicalHelper.get(TagPrefix.dust, GTMaterials.Glass, 4) + const glassDustStack = ChemicalHelper.get(TagPrefix.dust, GTMaterials.Glass, 1) const unfinishedLampStack = ChemicalHelper.get(TFGTagPrefix.lampUnfinished, material, 1) event.recipes.gtceu.macerator(`tfg:macerate_${material.getName()}_lamp`) diff --git a/kubejs/server_scripts/gregtech/recipes.removes.js b/kubejs/server_scripts/gregtech/recipes.removes.js index ce021716a..8ff529cb0 100644 --- a/kubejs/server_scripts/gregtech/recipes.removes.js +++ b/kubejs/server_scripts/gregtech/recipes.removes.js @@ -661,11 +661,22 @@ function removeGTCEURecipes(event) { event.remove({ id: 'gtceu:compressor/compress_certus_quartz_to_raw_ore_block' }) event.remove({ id: 'gtceu:compressor/glowstone' }) + event.remove({ id: 'gtceu:compressor/plant_ball_from_red_mushroom' }) + event.remove({ id: 'gtceu:compressor/plant_ball_from_brown_mushroom' }) event.remove({ id: 'gtceu:forming_press/form_purpur_slab_into_pillar' }) event.remove({ id: 'gtceu:rock_breaker/red_granite' }) + // Snow Stuffs + + event.remove({ id: 'gtceu:fluid_solidifier/snow_block' }) + event.remove({ id: 'gtceu:fluid_solidifier/snow_block_distilled' }) + + removeCutterRecipe(event, 'snow_layer') + removeCutterRecipe(event, 'snow_layer_distilled_water') + removeCutterRecipe(event, 'snow_layer_water') + // Remove vanilla Eye of Ender event.remove({ id: 'minecraft:ender_eye' }) @@ -674,6 +685,19 @@ function removeGTCEURecipes(event) { event.remove({ id: 'gtceu:compressor/compress_plate_dust_wood' }) event.remove({ id: 'gtceu:compressor/compress_plate_dust_treated_wood'}) + + // Remove Default Pressure Plate Recipes + const MC_PRESSURE_PLATES = [ + 'bamboo', + 'polished_blackstone', + 'light_weighted', + 'heavy_weighted', + 'treated' + ] + MC_PRESSURE_PLATES.forEach(material => { + event.remove({ id: `gtceu:shaped/${material}_pressure_plate` }) + event.remove({ id: `gtceu:assembler/${material}_pressure_plate` }) + }) } function removeMaceratorRecipe(event, id) { @@ -684,4 +708,4 @@ function removeMaceratorRecipe(event, id) { function removeCutterRecipe(event, id) { event.remove({ id: `gtceu:cutter/${id}` }) event.remove({ id: `greate:cutting/integration/gtceu/cutter/${id}` }) -} \ No newline at end of file +} diff --git a/kubejs/server_scripts/gregtech/utility.js b/kubejs/server_scripts/gregtech/utility.js index 2c8c484a3..05653ebb4 100644 --- a/kubejs/server_scripts/gregtech/utility.js +++ b/kubejs/server_scripts/gregtech/utility.js @@ -1,5 +1,21 @@ // priority: 0 +//#region Mixer Recipes +/** + * Function for generating gtceu mixer recipes. + * Adding a circuit is optional. + * + * @param {*} event + * @param {string} input -Item + * @param {string} fluid_input -Fluid + * @param {string} output -Item + * @param {number} circuit -0-32 + * @param {string} fluid_output -Fluid + * @param {number} duration -Ticks + * @param {number} EUt -GTValues.VA[] + * @param {number} rpm -Depreciated + * @param {string} id -Recipe ID + */ const generateMixerRecipe = (event, input, fluid_input, output, circuit, fluid_output, duration, EUt, rpm, id) => { const recipe = event.recipes.gtceu.mixer(id) .itemInputs(input) @@ -9,11 +25,26 @@ const generateMixerRecipe = (event, input, fluid_input, output, circuit, fluid_o .duration(duration) .EUt(EUt) + /** + * Applies if circuit param is not empty + */ if (circuit != null) { recipe.circuit(circuit) } } +//#endregion +//#region Cutter Recipes +/** + * Function for generating gtceu cutter recipes. + * + * @param {*} event + * @param {string} input -Item + * @param {string} output -Item + * @param {number} duration -Ticks + * @param {number} EUt -GTValues.VA[] + * @param {string} id -Recipe ID + */ const generateCutterRecipe = (event, input, output, duration, EUt, id) => { event.recipes.gtceu.cutter(`tfg:${id}`) @@ -22,39 +53,79 @@ const generateCutterRecipe = (event, input, output, duration, EUt, id) => { .duration(duration) .EUt(EUt) } +//#endregion -const generateGreenHouseRecipe = (event, input, fluid_amount, output, id, dimension, fertiliser_count) => { +//#region Green House +/** + * Function for generating greenhouse recipes. + * + * @param {*} event + * @param {string} input -Item (Not consumed) + * @param {number} fluid_amount -mB (uses #tfg:clean_water) + * @param {string} output -Item (Chanced output uses input item) + * @param {string} id -Recipe ID + * @param {string} dimension -Dimension ID + * @param {number} fertiliser_count + * @param {string} output_seconday -Item (Optional, if there should be a third output) + * @param {string} tier - GTValues.VA[] (Optional, defaults to LV) + */ +const generateGreenHouseRecipe = (event, input, fluid_amount, output, id, dimension, fertiliser_count, output_secondary, tier) => { - // Без удобрения + // Без удобрения (Without fertilizer) let r = event.recipes.gtceu.greenhouse(id) - .itemInputs(input) + .notConsumable(input) .circuit(1) .inputFluids(JsonIO.of({ amount: fluid_amount, value: { tag: "tfg:clean_water" }})) .itemOutputs(output) - .chancedOutput(input, 7500, 1000) - .chancedOutput(input, 5000, 1000) + .chancedOutput(input, 750, 0) + .chancedOutput(input, 500, 0) .duration(36000) // 30 mins - .EUt(GTValues.VA[GTValues.LV]) - if (dimension != null) + if (dimension != null){ r.dimension(dimension) + } + if (output_secondary != null){ + r.chancedOutput(output_secondary, 750, 0) + } + if (tier != null){ + r.EUt(tier) + } else { + r.EUt(GTValues.VA[GTValues.LV]) + } - // С удобрением + // С удобрением (With fertilizer) r = event.recipes.gtceu.greenhouse(`${id}_fertilized`) - .itemInputs(input) + .notConsumable(input) .itemInputs(Item.of('gtceu:fertilizer', fertiliser_count)) .circuit(2) .inputFluids(JsonIO.of({ amount: fluid_amount, value: { tag: "tfg:clean_water" }})) .itemOutputs(output) - .chancedOutput(input, 8500, 1000) - .chancedOutput(input, 6000, 1000) + .chancedOutput(input, 4000, 0) + .chancedOutput(input, 3000, 0) .duration(12000) // 10 mins - .EUt(GTValues.VA[GTValues.LV]) - if (dimension != null) + if (dimension != null){ r.dimension(dimension) + } + if (output_secondary != null){ + r.chancedOutput(output_secondary, 4000, 0) + } + if (tier != null){ + r.EUt(tier) + } else { + r.EUt(GTValues.VA[GTValues.LV]) + } } +//#endregion +//#region Filling NBT +/** + * Function to get fluid filling NBT. + * + * @param {string} material -Fluid + * @param {number} amount -mB + * @returns {{ tank: { FluidName: string; Amount: number; }; }} + */ const getFillingNBT = (material, amount) => { return { tank: { @@ -63,7 +134,15 @@ const getFillingNBT = (material, amount) => { } } } +//#endregion +//#region Plated Blocks +/** + * Function for generating plated block recipes. + * + * @param {*} event + * @param {GTMaterials} material + */ function generatePlatedBlockRecipe(event, material) { // firmaciv plated blocks don't have this property let tfcProperty = material.getProperty(TFGPropertyKey.TFC_PROPERTY) @@ -75,6 +154,9 @@ function generatePlatedBlockRecipe(event, material) { let platedSlab = ChemicalHelper.get(TFGTagPrefix.slabPlated, material, 1); let platedStair = ChemicalHelper.get(TFGTagPrefix.stairPlated, material, 1); + if (platedBlock == null) + return + let tfcMetalName = material.getName(); if (tfcMetalName == "iron") tfcMetalName = "cast_iron"; @@ -169,9 +251,223 @@ function generatePlatedBlockRecipe(event, material) { .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) .EUt(GTValues.VA[GTValues.LV]) } +//#endregion +//#region forEachMaterial +/** + * Function for iterating through registered materials + * {@link https://github.com/GregTechCEu/GregTech-Modern/blob/1.20.1/src/main/java/com/gregtechceu/gtceu/api/data/chemical/material/Material.java} + * + * @param {GTCEuAPI.materialManager.getRegisteredMaterials} iterator -Material + */ function forEachMaterial(iterator) { for (var material of GTCEuAPI.materialManager.getRegisteredMaterials()) { iterator(material) } -} \ No newline at end of file +} +//#endregion + +//#region Add Circuit +/** + * Function for adding circuit numbers for existing recipes + * + * Constants {@link global.ADD_CIRCUIT} + * + * @param {*} event + * @param {string} recipeId -Recipe ID + * @param {number} circuitNumber -0-32 + */ +function addCircuitToRecipe(event, recipeId, circuitNumber) { + + event.findRecipes({ id: recipeId }).forEach(recipe => { + const inputs = recipe.json.get("inputs"); + const itemArray = inputs.has("item") ? Java.from(inputs.get("item")) : []; + + itemArray.push({ + content: { + type: "gtceu:circuit", + configuration: circuitNumber + }, + chance: 0, + maxChance: 10000, + tierChanceBoost: 0 + }); + + inputs.add("item", itemArray); + recipe.json.add("inputs", inputs); + }); +} +//#endregion + +//#region Wood Builder + +/** + * Generates most basic wooden recipes. + * + * All parameters are optional. Name is used for the ID. + * + * @param {*} event + * @param {string} name -Name of the wood. + * @param {string} lumber -ID for the lumber. + * @param {string} logs -Tag or ID for all the logs. + * @param {string} log -ID for the regular log. + * @param {string} stripped_log -ID for the stripped log. + * @param {string} plank -ID for planks. + * @param {string} stair -ID for stairs. + * @param {string} slab -ID for slabs. + * @param {string} door -ID for the door. + * @param {string} trapdoor -ID for the trapdoor. + * @param {string} fence -ID for the fence. + * @param {string} fence_gate -ID for the fence gate. + * @param {string} support -ID for the support. + * @param {string} pressure_plate -ID for the pressure plate. + * @param {string} button -ID for the button. + */ +function woodBuilder(event, name, lumber, logs, log, stripped_log, plank, stair, slab, door, trapdoor, fence, fence_gate, support, pressure_plate, button) { + + if (log && stripped_log && name) { + event.recipes.gtceu.lathe(`tfg:cutter/${name}_stripped_log_from_log`) + .itemInputs(log) + .itemOutputs(stripped_log) + .duration(50) + .EUt(GTValues.VA[GTValues.ULV]) + } + + if (logs && lumber && name) { + event.shapeless(`8x ${lumber}`, + [logs, '#forge:tools/saws'] + ).id(`tfg:shapeless/${name}_lumber_from_log`) + + generateCutterRecipe(event, logs, `16x ${lumber}`, 50, 7, `cutter_${name}_lumber_from_log`) + } + + if (plank && lumber && name) { + event.shapeless(`4x ${lumber}`, + [plank, '#forge:tools/saws'] + ).id(`tfg:shapeless/${name}_lumber_from_plank`) + + generateCutterRecipe(event, plank, `4x ${lumber}`, 50, 7, `cutter_${name}_lumber_from_plank`) + + event.shaped(plank, [ + 'AA', + 'AA' + ], { + A: lumber, + }).id(`tfg:shaped/${name}_plank_from_lumber`) + } + + if (slab && lumber && name) { + event.shapeless(`2x ${lumber}`, + [slab, '#forge:tools/saws'] + ).id(`tfg:shapeless/${name}_lumber_from_slab`) + + generateCutterRecipe(event, slab, `2x ${lumber}`, 50, 7, `cutter_${name}_lumber_from_slab`) + } + + if (slab && plank && name) { + event.shaped(`6x ${slab}`, [ + 'AAA' + ], { + A: plank, + }).id(`tfg:shaped/${name}_slab_from_plank`) + } + + if (stair && lumber && name) { + event.shapeless(`3x ${lumber}`, + [stair, '#forge:tools/saws'] + ).id(`tfg:shapeless/${name}_lumber_from_stair`) + + generateCutterRecipe(event, stair, `3x ${lumber}`, 50, 7, `cutter_${name}_lumber_from_stair`) + } + + if (stair && plank && name) { + event.shaped(`8x ${stair}`, [ + 'A ', + 'AA ', + 'AAA' + ], { + A: plank, + }).id(`tfg:shaped/${name}_stair_from_plank`) + } + + if (door && lumber && name) { + event.shaped(`2x ${door}`, [ + 'AA', + 'AA', + 'AA' + ], { + A: lumber, + }).id(`tfg:shaped/${name}_door_from_lumber`) + } + + if (trapdoor && lumber && name) { + event.shaped(`3x ${trapdoor}`, [ + 'AAA', + 'AAA' + ], { + A: lumber, + }).id(`tfg:shaped/${name}_trapdoor_from_lumber_and_plank`) + } + + if (fence && lumber && plank && name) { + event.shaped(`8x ${fence}`, [ + 'ABA', + 'ABA' + ], { + A: lumber, + B: plank, + }).id(`tfg:shaped/${name}_fence_from_lumber_and_plank`) + } + + if (fence_gate && lumber && plank && name) { + event.shaped(`2x ${fence_gate}`, [ + 'ABA', + 'ABA' + ], { + A: plank, + B: lumber, + }).id(`tfg:shaped/${name}_fence_gate_from_lumber_and_plank`) + } + + if (support && logs && name) { + event.shapeless(`8x ${support}`, + [`2x ${logs}`, '#forge:tools/saws'] + ).id(`tfg:shapeless/${name}_support_from_logs`) + + event.recipes.gtceu.assembler(`tfg:assembler/${name}_support_from_logs`) + .itemInputs(`2x ${logs}`) + .itemOutputs(`8x ${support}`) + .duration(50) + .circuit(4) + .EUt(GTValues.VA[GTValues.ULV]) + } + + if (pressure_plate && slab && name) { + event.shaped(pressure_plate, [ + ' B ', + 'ACA', + ' D ' + ], { + A: slab, + B: '#forge:tools/hammers', + C: '#forge:springs', + D: '#forge:tools/screwdrivers', + }).id(`tfg:shaped/${name}_pressure_plate`) + + event.recipes.gtceu.assembler(`tfg:assembler/${name}_pressure_plate`) + .itemInputs(`2x ${slab}`, '#forge:springs') + .itemOutputs(`2x ${pressure_plate}`) + .duration(50) + .circuit(0) + .EUt(GTValues.VA[GTValues.ULV]) + } + + if (button && pressure_plate && name) { + event.recipes.gtceu.cutter(`tfg:cutter/${name}_button_from_pressure_plate`) + .itemInputs(pressure_plate) + .itemOutputs(`6x ${button}`) + .duration(50) + .EUt(GTValues.VA[GTValues.ULV]) + } +} +//#endregion \ No newline at end of file diff --git a/kubejs/server_scripts/main_server_script.js b/kubejs/server_scripts/main_server_script.js index 676675af5..673ef131a 100644 --- a/kubejs/server_scripts/main_server_script.js +++ b/kubejs/server_scripts/main_server_script.js @@ -38,6 +38,7 @@ ServerEvents.tags('item', event => { registerModernMarkingsItemTags(event) registerMoreRedItemTags(event) registerHotOrNotItemTags(event) + registerPrimitiveCreaturesItemTags(event) registerRailWaysItemTags(event) registerRnrItemTags(event) registerSophisticatedBackpacksItemTags(event) @@ -148,6 +149,7 @@ TFCEvents.data(event => { registerTFCDataForImmersiveAircraft(event); registerTFCDataForMinecraft(event) registerTFCDataForSophisticatedBackpacks(event) + registerTFCDataForTACZ(event) registerTFCDataForTFC(event) registerTFCDataForTFCBetterBF(event) registerTFCDataForTFCLunchbox(event) @@ -237,6 +239,7 @@ ServerEvents.recipes(event => { registerMinecraftRecipes(event) registerModernMarkingRecipes(event) registerMoreRedRecipes(event) + registerPrimitiveCreaturesRecipes(event) registerProgrammedCircuitCardRecipes(event) registerRailWaysRecipes(event) registerRnrRecipes(event) diff --git a/kubejs/server_scripts/minecraft/recipes.js b/kubejs/server_scripts/minecraft/recipes.js index 6a0966b02..2e6e0c8e3 100644 --- a/kubejs/server_scripts/minecraft/recipes.js +++ b/kubejs/server_scripts/minecraft/recipes.js @@ -814,10 +814,10 @@ const registerMinecraftRecipes = (event) => { .EUt(420) event.recipes.gtceu.assembler('tfg:minecraft/elytra_repairing') - .itemInputs('6x tfg:polycaprolactam_fabric', Item.of('minecraft:elytra', '{Damage:2045}').strongNBT()) + .itemInputs('6x tfg:polycaprolactam_fabric', 'minecraft:elytra') .circuit(4) .itemOutputs(Item.of('minecraft:elytra', "{Damage:0}")) - .duration(1600) + .duration(800) .EUt(120) event.recipes.gtceu.arc_furnace('tfg:minecraft/arc_furnace/recycling/elytra') @@ -1005,7 +1005,6 @@ const registerMinecraftRecipes = (event) => { event.recipes.gtceu.compressor('tfg:red_mushroom') .itemInputs('4x minecraft:red_mushroom') .itemOutputs('minecraft:red_mushroom_block') - .circuit(2) .duration(20) .EUt(GTValues.VA[GTValues.ULV]) @@ -1013,7 +1012,6 @@ const registerMinecraftRecipes = (event) => { .itemInputs('4x minecraft:brown_mushroom') .itemOutputs('minecraft:brown_mushroom_block') .duration(20) - .circuit(2) .EUt(GTValues.VA[GTValues.ULV]) event.recipes.gtceu.chemical_bath('tfg:red_mushroom_to_shroomlight') @@ -1083,4 +1081,33 @@ const registerMinecraftRecipes = (event) => { event.shapeless('2x minecraft:gunpowder', ['#forge:tools/mortars', 'tfc:powder/saltpeter', 'tfc:powder/saltpeter', 'tfc:powder/sulfur', 'tfc:powder/charcoal', 'tfc:powder/charcoal', 'tfc:powder/charcoal']) .id('tfg:shapeless/gunpowder_tfc_style') + + event.shapeless('8x minecraft:bone_meal', ['#forge:tools/mortars', 'minecraft:skeleton_skull']) + + //Pressure Plates + const PRESSURE_PLATES = [ + {type: 'bamboo', material: 'minecraft:bamboo_slab'}, + {type: 'polished_blackstone', material: 'minecraft:polished_blackstone_slab'}, + {type: 'light_weighted', material: '#forge:plates/gold'}, + {type: 'heavy_weighted', material: '#forge:plates/iron'} + ] + PRESSURE_PLATES.forEach(x => { + event.shaped(`minecraft:${x.type}_pressure_plate`, [ + ' B ', + 'CDC', + ' E ' + ], { + B: '#tfc:hammers', + C: x.material, + D: '#forge:small_springs', + E: '#forge:tools/screwdrivers' + }).id(`minecraft:shaped/${x.type}_pressure_plate`) + + event.recipes.gtceu.assembler(`minecraft:${x.type}_pressure_plate`) + .itemInputs('#forge:small_springs', `2x ${x.material}`) + .itemOutputs(`minecraft:${x.type}_pressure_plate`) + .circuit(0) + .duration(50) + .EUt(2) + }) } diff --git a/kubejs/server_scripts/minecraft/recipes.removes.js b/kubejs/server_scripts/minecraft/recipes.removes.js index bcd81d0ff..fa9edf345 100644 --- a/kubejs/server_scripts/minecraft/recipes.removes.js +++ b/kubejs/server_scripts/minecraft/recipes.removes.js @@ -2079,4 +2079,5 @@ function removeMinecraftRecipes(event) { //#endregion event.remove({ id: 'minecraft:flower_banner_pattern' }) + event.remove({ id: 'gtceu:assembler/lodestone' }) } \ No newline at end of file diff --git a/kubejs/server_scripts/primitive_creatures/loot.js b/kubejs/server_scripts/primitive_creatures/loot.js index 89010f10d..2b5bbcf03 100644 --- a/kubejs/server_scripts/primitive_creatures/loot.js +++ b/kubejs/server_scripts/primitive_creatures/loot.js @@ -2,12 +2,187 @@ function registerPrimitiveCreaturesLoots(event) { - event.addEntityLootModifier('kaolinclayze:tfc') + // kaolin klayze + event.addEntityLootModifier('primitive_creatures:tfc') .removeLoot(ItemFilter.ALWAYS_TRUE) .addWeightedLoot([12,16], ['tfc:kaolin_clay', 'minecraft:clay_ball']) .addLoot('tfc:plant/blood_lily') - event.addEntityLootModifier('kaolinclayze:golem_2') + // graphite glayze + event.addEntityLootModifier('primitive_creatures:golem_2') .removeLoot(ItemFilter.ALWAYS_TRUE) - .addWeightedLoot([3,5], ['gtceu:rich_raw_graphite']) + .addWeightedLoot([2,4], ['gtceu:rich_raw_graphite']) + + + const CLOTHING_DROP_RATE = 0.05 + + // forager - light tan clothes, holds a stone axe + event.addEntityLootModifier('primitive_creatures:iloger_1') + .removeLoot(ItemFilter.ALWAYS_TRUE) + .addWeightedLoot([ + // the illusion of randomness + Item.of('tfc:food/bunchberry', 3), + Item.of('tfc:food/cranberry', 4), + Item.of('tfc:food/gooseberry', 5), + Item.of('tfc:food/blackberry', 6), + Item.of('tfc:food/blueberry', 3), + Item.of('tfc:food/cloudberry', 4), + Item.of('tfc:food/elderberry', 5), + Item.of('tfc:food/raspberry', 6), + Item.of('tfc:food/snowberry', 3), + Item.of('tfc:food/strawberry', 4), + Item.of('tfc:food/wintergreen_berry', 5)]) + .addAlternativesLoot( + LootEntry.of('primitive_creatures:grh').when(c => c.randomChance(0.8)), + LootEntry.of('gtceu:stone_axe').when(c => c.randomChance(0.3)), + LootEntry.of('primitive_creatures:totem_0').when(c => c.randomChance(0.1)), + LootEntry.of('primitive_creatures:totem_3').when(c => c.randomChance(0.1))) + event.addEntityLootModifier('primitive_creatures:iloger_1') + .randomChance(CLOTHING_DROP_RATE) + .addWeightedLoot([ + Item.of('tfc_textile:raw_hat'), + Item.of('tfc_textile:raw_shirt'), + Item.of('tfc_textile:raw_pants'), + Item.of('tfc_textile:raw_socks')]) + + // herbalist - brown clothes with a mask that looks like a Creaking + event.addEntityLootModifier('primitive_creatures:iloger_2') + .removeLoot(ItemFilter.ALWAYS_TRUE) + .addWeightedLoot([1,2], ['gtceu:tricalcium_phosphate_dust']) + .addAlternativesLoot( + LootEntry.of('tfc:plant/field_horsetail').when(c => c.randomChance(0.3)), + LootEntry.of('tfc:plant/foxglove').when(c => c.randomChance(0.5)), + LootEntry.of('firmalife:beeswax').when(c => c.randomChance(0.8)), + LootEntry.of('primitive_creatures:totem_0').when(c => c.randomChance(0.1)), + LootEntry.of('primitive_creatures:totem_3').when(c => c.randomChance(0.1))) + event.addEntityLootModifier('primitive_creatures:iloger_2') + .randomChance(CLOTHING_DROP_RATE) + .addWeightedLoot([ + Item.of('tfc_textile:grizzly_bear_hat'), + Item.of('tfc_textile:grizzly_bear_shirt'), + Item.of('tfc_textile:grizzly_bear_pants'), + Item.of('tfc_textile:grizzly_bear_boots')]) + + // bonebreaker - skull helmet, bone armor? hits harder, has knockback + event.addEntityLootModifier('primitive_creatures:iloger_3') + .removeLoot(ItemFilter.ALWAYS_TRUE) + .addWeightedLoot([0,2], ['minecraft:flint']) + .addWeightedLoot([1,3], ['minecraft:bone']) + .addAlternativesLoot( + LootEntry.of('gtceu:stone_hammer').when(c => c.randomChance(0.2)), + LootEntry.of('minecraft:skeleton_skull').when(c => c.randomChance(0.1)), + LootEntry.of('primitive_creatures:grh').when(c => c.randomChance(0.5))) // battered wool + event.addEntityLootModifier('primitive_creatures:iloger_3') + .randomChance(CLOTHING_DROP_RATE) + .addWeightedLoot([ + Item.of('tfc_textile:direwolf_hat'), + Item.of('tfc_textile:direwolf_shirt'), + Item.of('tfc_textile:direwolf_pants'), + Item.of('tfc_textile:direwolf_boots')]) + + // ambusher - leaf on head, leafy clothes (like the swamp vanilla villager type), ranged with poison + event.addEntityLootModifier('primitive_creatures:iloger_4') + .removeLoot(ItemFilter.ALWAYS_TRUE) + .addWeightedLoot([1,3], LootEntry.of('minecraft:tipped_arrow')).addPotion("poison") + .addAlternativesLoot( + LootEntry.of('firmalife:food/nightshade_berry').when(c => c.randomChance(0.7)), + LootEntry.of('minecraft:spider_eye').when(c => c.randomChance(0.7)), + LootEntry.of('primitive_creatures:totem_0').when(c => c.randomChance(0.1)), + LootEntry.of('primitive_creatures:totem_2').when(c => c.randomChance(0.1))) + event.addEntityLootModifier('primitive_creatures:iloger_4') + .randomChance(CLOTHING_DROP_RATE) + .addWeightedLoot([ + Item.of('tfc_textile:crocodile_hat'), + Item.of('tfc_textile:crocodile_shirt'), + Item.of('tfc_textile:crocodile_pants'), + Item.of('tfc_textile:crocodile_boots')]) + + // hunter - wears brown and white fur, briefly disappears when hit, ranged with weakness + event.addEntityLootModifier('primitive_creatures:iloger_5') + .removeLoot(ItemFilter.ALWAYS_TRUE) + .addWeightedLoot([1,3], LootEntry.of('minecraft:tipped_arrow')).addPotion("weakness") + .addAlternativesLoot( + // placeholder for a blowpipe + LootEntry.of('minecraft:bamboo').when(c => c.randomChance(0.6)), + LootEntry.of('primitive_creatures:grh').when(c => c.randomChance(0.5)), // battered wool + LootEntry.of('primitive_creatures:totem_0').when(c => c.randomChance(0.1)), + LootEntry.of('primitive_creatures:totem_3').when(c => c.randomChance(0.1))) + event.addEntityLootModifier('primitive_creatures:iloger_5') + .randomChance(CLOTHING_DROP_RATE) + .addWeightedLoot([ + Item.of('tfc_textile:sabertooth_hat'), + Item.of('tfc_textile:sabertooth_shirt'), + Item.of('tfc_textile:sabertooth_pants'), + Item.of('tfc_textile:sabertooth_boots')]) + + // shaman - yellow clothes, throws fireballs + event.addEntityLootModifier('primitive_creatures:iloger_6') + .removeLoot(ItemFilter.ALWAYS_TRUE) + .addWeightedLoot([1,2], ['primitive_creatures:f_1']) // primitive explosives + .addWeightedLoot([1,3], ['minecraft:gunpowder']) + .addAlternativesLoot( + LootEntry.of('primitive_creatures:grh').when(c => c.randomChance(0.5)), // battered wool + LootEntry.of('primitive_creatures:totem_2').when(c => c.randomChance(0.1)), + LootEntry.of('primitive_creatures:totem_3').when(c => c.randomChance(0.1))) + event.addEntityLootModifier('primitive_creatures:iloger_6') + .randomChance(CLOTHING_DROP_RATE) + .addWeightedLoot([ + Item.of('tfc_textile:cougar_hat'), + Item.of('tfc_textile:cougar_shirt'), + Item.of('tfc_textile:cougar_pants'), + Item.of('tfc_textile:cougar_boots')]) + + // beast tamer - wears tiger fur, holds vanilla sugarcane? fucking summons ravagers + event.addEntityLootModifier('primitive_creatures:wiloger') + .removeLoot(ItemFilter.ALWAYS_TRUE) + .addWeightedLoot([0,2], ['primitive_creatures:grh']) // battered wool + .addAlternativesLoot( + LootEntry.of('minecraft:lead').when(c => c.randomChance(0.4)), + LootEntry.of('primitive_creatures:totem_0').when(c => c.randomChance(0.1)), + LootEntry.of('primitive_creatures:totem_3').when(c => c.randomChance(0.1))) + event.addEntityLootModifier('primitive_creatures:wiloger') + .randomChance(CLOTHING_DROP_RATE) + .addWeightedLoot([ + Item.of('tfc_textile:tiger_hat'), + Item.of('tfc_textile:tiger_shirt'), + Item.of('tfc_textile:tiger_pants'), + Item.of('tfc_textile:tiger_boots')]) + + // huntsman - lion fur, holds flint club - stuns you in place when hit + event.addEntityLootModifier('primitive_creatures:piloger_9') + .removeLoot(ItemFilter.ALWAYS_TRUE) + .addAlternativesLoot( + LootEntry.of('primitive_creatures:yhgi').when(c => c.randomChance(0.2)), // flint club + LootEntry.of('tfc:small_raw_hide').when(c => c.randomChance(0.4)), + LootEntry.of('primitive_creatures:grh').when(c => c.randomChance(0.5))) // battered wool + event.addEntityLootModifier('primitive_creatures:piloger_9') + .randomChance(CLOTHING_DROP_RATE) + .addWeightedLoot([ + Item.of('tfc_textile:lion_hat'), + Item.of('tfc_textile:lion_shirt'), + Item.of('tfc_textile:lion_pants'), + Item.of('tfc_textile:lion_boots')]) + + // mercenary + event.addEntityLootModifier('primitive_creatures:viloger_10') + .removeLoot(ItemFilter.ALWAYS_TRUE) + .addWeightedLoot([1,2], ['minecraft:emerald']) + .addAlternativesLoot( + LootEntry.of('primitive_creatures:grh').when(c => c.randomChance(0.8)), // battered wool + LootEntry.of('gtceu:stone_knife').when(c => c.randomChance(0.3)), + LootEntry.of('primitive_creatures:totem_2').when(c => c.randomChance(0.1)), + LootEntry.of('primitive_creatures:totem_3').when(c => c.randomChance(0.1))) + event.addEntityLootModifier('primitive_creatures:viloger_10') + .randomChance(CLOTHING_DROP_RATE) + .addWeightedLoot([ + Item.of('tfc_textile:raw_hat'), + Item.of('tfc_textile:raw_shirt'), + Item.of('tfc_textile:raw_pants'), + Item.of('tfc_textile:raw_socks')]) + + // mistah beeeaaaasssstt + event.addEntityLootModifier('primitive_creatures:beast') + .removeLoot(ItemFilter.ALWAYS_TRUE) + .addWeightedLoot([4,8], ['minecraft:bone']) + // raw meat? } \ No newline at end of file diff --git a/kubejs/server_scripts/primitive_creatures/recipes.js b/kubejs/server_scripts/primitive_creatures/recipes.js new file mode 100644 index 000000000..c04387193 --- /dev/null +++ b/kubejs/server_scripts/primitive_creatures/recipes.js @@ -0,0 +1,44 @@ +// priority: 0 + +function registerPrimitiveCreaturesRecipes(event) { + + // terrible idol crafting + event.remove({ id: 'primitive_creatures:h' }) + // the brown idol -> brown dye + event.remove({ id: 'primitive_creatures:eg' }) + // craft flint club + event.remove({ id: 'primitive_creatures:rwtge' }) + // battered wool to wool block + event.remove({ id: 'primitive_creatures:egwgew' }) + // lodestone? + event.remove({ id: 'primitive_creatures:hhg' }) + + // craft fortified flint club + event.replaceInput({ id: 'primitive_creatures:wegfweg' }, 'primitive_creatures:tt_5', '#tfc:nuggets') + event.replaceInput({ id: 'primitive_creatures:wegfweg' }, 'primitive_creatures:grh', 'tfc:wool') + + event.recipes.tfc.knapping( + 'tfg:flint_club_head', + 'tfg:flint', + [ + ' XXX ', + ' XXX ', + ' X ', + ' XXX ', + ' X ' + ] + ).outsideSlotRequired(false) + .id('tfg:knapping/flint_club_head') + + // craft flint club + event.shapeless('primitive_creatures:yhgi', ['tfg:flint_club_head', '#forge:rods/wooden']) + .id('tfg:shapeless/flint_club') + + // turn battered wool into tfc wool + event.shapeless('tfc:wool', ['primitive_creatures:grh', 'primitive_creatures:grh', '#forge:tools/knives']) + .id('tfg:shapeless/cleaning_battered_wool') + + // mud idol into mud + event.shapeless('6x tfc:daub', ['primitive_creatures:totem_3']) + .id('tfg:shapeless/totem_3_decomp') +} \ No newline at end of file diff --git a/kubejs/server_scripts/primitive_creatures/tags.js b/kubejs/server_scripts/primitive_creatures/tags.js new file mode 100644 index 000000000..e6fbe37f0 --- /dev/null +++ b/kubejs/server_scripts/primitive_creatures/tags.js @@ -0,0 +1,28 @@ +// priority: 0 + +function registerPrimitiveCreaturesItemTags(event) { + const DISABLED_ITEMS = [ + // idol fragment (combine to make a terrible idol) + 'primitive_creatures:tt_5', + // the terrible idol (spawns illager herobrine) + 'primitive_creatures:kopo', + // the friendly idol (spawns an allay) + 'primitive_creatures:jjj', + ] + + DISABLED_ITEMS.forEach(item => { + event.removeAllTagsFrom(item) + event.add('c:hidden_from_recipe_viewers', item) + }) + + // This tag doesn't actually do anything, as the list is hardcoded into the mod, + // but it makes it easier to find what they will accept + event.add('primitive_creatures:mercenary_payment', 'minecraft:rabbit_foot') + event.add('primitive_creatures:mercenary_payment', 'minecraft:leather') + event.add('primitive_creatures:mercenary_payment', 'minecraft:scute') + event.add('primitive_creatures:mercenary_payment', 'minecraft:redstone') + event.add('primitive_creatures:mercenary_payment', 'minecraft:gunpowder') + event.add('primitive_creatures:mercenary_payment', 'minecraft:spider_eye') + event.add('primitive_creatures:mercenary_payment', 'minecraft:flint') + event.add('primitive_creatures:mercenary_payment', 'minecraft:emerald') +} \ No newline at end of file diff --git a/kubejs/server_scripts/railways/recipes.js b/kubejs/server_scripts/railways/recipes.js index 79ad3ae2e..61a74132a 100644 --- a/kubejs/server_scripts/railways/recipes.js +++ b/kubejs/server_scripts/railways/recipes.js @@ -316,7 +316,7 @@ const registerRailWaysRecipes = (event) => { ], { A: '#forge:plates/wrought_iron', B: '#forge:rods/wrought_iron', - C: 'create:propeller', + C: '#forge:rotors/iron', }).id('tfg:railways/shaped/smokestack_diesel') // Монорельс diff --git a/kubejs/server_scripts/species/recipes.js b/kubejs/server_scripts/species/recipes.js index a6273922d..3a10d7025 100644 --- a/kubejs/server_scripts/species/recipes.js +++ b/kubejs/server_scripts/species/recipes.js @@ -1,7 +1,10 @@ // priority: 0 function registerSpeciesRecipes(event) { - event.remove({ mod: 'species' }) + global.SPECIES_DISABLED_ITEMS.forEach(item => { + event.remove({ input: item }) + event.remove({ output: item }) + }) event.shapeless('species:music_disc_dial', ['etched:blank_music_disc', 'species:birt_egg']) diff --git a/kubejs/server_scripts/tacz/data.js b/kubejs/server_scripts/tacz/data.js new file mode 100644 index 000000000..77bf1eb84 --- /dev/null +++ b/kubejs/server_scripts/tacz/data.js @@ -0,0 +1,7 @@ +// priority: 0 + +function registerTFCDataForTACZ(event) { + + event.itemSize('tacz:modern_kinetic_gun', 'large', 'medium') + event.itemSize('tacz:attachment', 'normal', 'light') +} \ No newline at end of file diff --git a/kubejs/server_scripts/tacz/recipes.ammo.js b/kubejs/server_scripts/tacz/recipes.ammo.js index c75f4bc60..36411d7ae 100644 --- a/kubejs/server_scripts/tacz/recipes.ammo.js +++ b/kubejs/server_scripts/tacz/recipes.ammo.js @@ -54,6 +54,13 @@ function registerTACZAmmoRecipes(event){ F: '#forge:tools/saws' }).id('tfg_tacz:45_70_bullets'); + + event.recipes.gtceu.assembler('tfg_tacz:45_70_bullets_lv') + .itemInputs('4x #forge:nuggets/lead','#forge:ingots/brass', '#forge:dusts/gunpowder') + .itemOutputs(Item.of('tacz:ammo', 4, + '{AmmoId:"tacz:45_70"}')) + .EUt(GTValues.VA[GTValues.LV]) + .duration(20) //Clockwork era event.recipes.gtceu.assembler('tfg_tacz:rb_small') @@ -120,4 +127,4 @@ function registerTACZAmmoRecipes(event){ '{AmmoId:"applied_armorer:cluster_quartz_bullet"}')) .EUt(GTValues.VA[GTValues.EV]) .duration(30) -} \ No newline at end of file +} diff --git a/kubejs/server_scripts/tacz/recipes.attach.js b/kubejs/server_scripts/tacz/recipes.attach.js index 1eac8b10e..6a67c18f5 100644 --- a/kubejs/server_scripts/tacz/recipes.attach.js +++ b/kubejs/server_scripts/tacz/recipes.attach.js @@ -88,13 +88,13 @@ function registerTACZAttachRecipes(event){ //Muzzles event.recipes.gtceu.assembler('tfg_tacz:ca_large_tank') - .itemInputs('2x gtceu:blue_steel_tiny_fluid_pipe', '2x gtceu:steel_fluid_cell', '8x #forge:rings/silicone_rubber', + .itemInputs('2x gtceu:red_steel_tiny_fluid_pipe', '2x gtceu:steel_fluid_cell', '8x #forge:rings/silicone_rubber', '4x #forge:rings/stainless_steel', '#forge:plates/stainless_steel', '8x #forge:screws/stainless_steel') .itemOutputs(Item.of('tacz:attachment', '{AttachmentId:"create_armorer:muzzle_refit_bigger_cylinder"}')) .EUt(GTValues.VA[GTValues.MV]) .duration(20) event.recipes.gtceu.assembler('tfg_tacz:ca_lava_tube') - .itemInputs('4x gtceu:red_steel_tiny_fluid_pipe', 'gtceu:steel_fluid_cell', '4x gtceu:tempered_glass', + .itemInputs('4x gtceu:blue_steel_tiny_fluid_pipe', 'gtceu:steel_fluid_cell', '4x gtceu:tempered_glass', '4x #forge:rings/stainless_steel', '#forge:plates/rose_gold', '8x #forge:screws/stainless_steel') .inputFluids(Fluid.of('minecraft:lava', 2000)) .itemOutputs(Item.of('tacz:attachment', '{AttachmentId:"create_armorer:muzzle_refit_lava_perfusion_bottle"}')) diff --git a/kubejs/server_scripts/tacz/recipes.misc.js b/kubejs/server_scripts/tacz/recipes.misc.js index 946c0a548..0bea6867e 100644 --- a/kubejs/server_scripts/tacz/recipes.misc.js +++ b/kubejs/server_scripts/tacz/recipes.misc.js @@ -29,8 +29,8 @@ function registerTACZMiscRecipes(event) { //Molds event.shaped('tfg:small_casing_extruder_mold',[ - ' ', - 'AB ', + ' A', + ' B ', ' ' ],{ A: '#forge:tools/wire_cutters', @@ -66,7 +66,7 @@ function registerTACZMiscRecipes(event) { A: '#forge:tools/screwdrivers', B: '#forge:gems/flint', C: '#forge:tools/files', - D: '#forge:springs/steel', + D: '#forge:springs', E: '#forge:bolts/steel', F: '#forge:plates/steel', G: '#forge:tools/wire_cutters', @@ -89,4 +89,4 @@ function registerTACZMiscRecipes(event) { .itemOutputs('tfg:certus_mechanism') .EUt(GTValues.VA[GTValues.EV]) .duration(80) -} \ No newline at end of file +} diff --git a/kubejs/server_scripts/tfc/data.js b/kubejs/server_scripts/tfc/data.js index e96563470..bcf69105c 100644 --- a/kubejs/server_scripts/tfc/data.js +++ b/kubejs/server_scripts/tfc/data.js @@ -86,4 +86,9 @@ const registerTFCFoodData = (event) => { food.hunger(1) food.dairy(0.5) }) + + event.foodItem('firmalife:ice_shavings', food => { + food.water(5) + food.decayModifier(0) + }) } diff --git a/kubejs/server_scripts/tfc/recipes.js b/kubejs/server_scripts/tfc/recipes.js index 844b4069d..ddd633ea6 100644 --- a/kubejs/server_scripts/tfc/recipes.js +++ b/kubejs/server_scripts/tfc/recipes.js @@ -92,6 +92,12 @@ const registerTFCRecipes = (event) => { event.shapeless('2x minecraft:stick', ['#minecraft:saplings', '#forge:tools/knives']).id('tfg:strip_saplings') + event.recipes.gtceu.cutter('tfg:saplings_to_sticks') + .itemInputs('#minecraft:saplings') + .itemOutputs('2x minecraft:stick') + .duration(20) + .EUt(7) + // Доменная печь event.shaped('tfc:blast_furnace', [ 'AAA', @@ -295,4 +301,11 @@ const registerTFCRecipes = (event) => { ]).id('tfc:shapeless/jar_lid') event.replaceInput({ mod: 'tfc' }, 'minecraft:sugar', '#tfg:sugars') + + // Sea Water + event.recipes.tfc.barrel_instant() + .inputItem(ChemicalHelper.get(TagPrefix.dust, GTMaterials.Salt, 1)) + .inputFluid(Fluid.of('minecraft:water', 1000)) + .outputFluid(Fluid.of('tfc:salt_water', 1000)) + .id('tfg:barrel/water_to_salt_water') } diff --git a/kubejs/server_scripts/tfc/recipes.materials.js b/kubejs/server_scripts/tfc/recipes.materials.js index d7e0cb962..631f9574a 100644 --- a/kubejs/server_scripts/tfc/recipes.materials.js +++ b/kubejs/server_scripts/tfc/recipes.materials.js @@ -300,14 +300,9 @@ function registerTFCMaterialsRecipes(event) { .id(`tfc:heating/metal/${material.getName()}_fishing_rod`) //#endregion - - } - // Plated Blocks - applies for everything with a double ingot (except tin/red alloy) - if (material != GTMaterials.TinAlloy && material != GTMaterials.RedAlloy) { - generatePlatedBlockRecipe(event, material); - } + generatePlatedBlockRecipe(event, material); } // Tools (From Double Ingots) @@ -594,6 +589,13 @@ function registerTFCMaterialsRecipes(event) { .id(`tfc:anvil/${material.getName()}_small_spring`) } + // Nugget + let nuggetItem = ChemicalHelper.get(TagPrefix.nugget, material, 6) + if (!nuggetItem.isEmpty()) { + event.recipes.tfc.anvil(nuggetItem, ingotItem, ['punch_last', 'hit_second_last', 'punch_third_last']) + .tier(tfcProperty.getTier()) + .id(`tfg:anvil/${material.getName()}_nugget`) + } } // Tools (From Ingot) diff --git a/kubejs/server_scripts/tfc/recipes.removes.js b/kubejs/server_scripts/tfc/recipes.removes.js index 01e0ebc4f..d3bebb621 100644 --- a/kubejs/server_scripts/tfc/recipes.removes.js +++ b/kubejs/server_scripts/tfc/recipes.removes.js @@ -128,6 +128,7 @@ function removeTFCRecipes(event) { event.remove({ id: `tfc:crafting/windmill_blade` }) event.remove({ id: `tfc:barrel/dye/bleach_windmill_blades` }) + event.remove({ id: 'tfc:barrel/fresh_to_salt_water' }) global.MINECRAFT_DYE_NAMES.forEach(dye => { event.remove({ id: `tfc:barrel/dye/${dye}_windmill_blade` }) diff --git a/kubejs/server_scripts/tfc/recipes.stone.js b/kubejs/server_scripts/tfc/recipes.stone.js index f27234e47..9daea62bf 100644 --- a/kubejs/server_scripts/tfc/recipes.stone.js +++ b/kubejs/server_scripts/tfc/recipes.stone.js @@ -283,6 +283,18 @@ function registerTFCStoneRecipes(event) { //#endregion + //#region Укрепленный камень + + event.recipes.gtceu.assembler(`smooth_${stone}`) + .itemInputs(`8x tfc:rock/raw/${stone}`) + .circuit(2) + .inputFluids(Fluid.of('gtceu:concrete', 72)) + .itemOutputs(`8x tfc:rock/smooth/${stone}`) + .duration(250) + .EUt(8) + + //#endregion + //#region Акведук event.recipes.gtceu.assembler(`aqueduct_${stone}`) diff --git a/kubejs/server_scripts/tfc/tags.js b/kubejs/server_scripts/tfc/tags.js index 8714ba581..5729af43d 100644 --- a/kubejs/server_scripts/tfc/tags.js +++ b/kubejs/server_scripts/tfc/tags.js @@ -64,6 +64,9 @@ const registerTFCItemTags = (event) => { event.add('tfg:ferments_to_rennet', 'firmalife:food/fig') event.add('tfg:ferments_to_rennet', 'tfc:plant/ivy') + //Plants + event.add('tfc:plants', '#tfc:wild_fruits') + // Для складывания event.add('tfc:pileable_ingots', '#forge:ingots') event.add('tfc:pileable_sheets', '#forge:plates') @@ -482,6 +485,7 @@ const registerTFCFluidTags = (event) => { event.add('tfc:usable_in_ingot_mold', 'gtceu:red_alloy') event.add('tfc:usable_in_ingot_mold', 'gtceu:tin_alloy') + event.add('tfc:usable_in_ingot_mold', 'gtceu:lead') event.add('tfc:usable_in_bell_mold', 'gtceu:bronze') event.add('tfc:usable_in_bell_mold', 'gtceu:gold') diff --git a/kubejs/server_scripts/tfg/data.js b/kubejs/server_scripts/tfg/data.js index 54bcb47ae..197596cfa 100644 --- a/kubejs/server_scripts/tfg/data.js +++ b/kubejs/server_scripts/tfg/data.js @@ -42,6 +42,14 @@ const registerTFGItemSize = (event) => { event.itemSize('tfg:fishing_net/tin_alloy', 'large', 'medium', 'tin_alloy_fishing_net') event.itemSize('tfg:fishing_net/magnalium', 'large', 'medium', 'magnalium_fishing_net') + event.itemSize('tfg:trowel', 'large', 'medium', 'trowel') + + event.itemSize('tfg:harvest_basket', 'large', 'medium', 'harvest_basket') + event.itemSize('tfg:aluminium_harvest_basket', 'large', 'medium', 'aluminium_harvest_basket') + + event.itemSize('tfg:rapeseed_product', 'small', 'light', 'rapeseed_product') + event.itemSize('tfg:sunflower_product', 'small', 'light', 'sunflower_product') + } @@ -61,6 +69,10 @@ const registerTFGSupportData = (event) => { event.support(`tfg:${stone}_support_horizontal`, 2, 2, 4, `${stone}_support`) }) + + global.AD_ASTRA_WOOD.forEach(wood => { + event.support(`tfg:${wood.name}_support_horizontal`, 2, 2, 4, `${wood.name}_support`) + }) } @@ -155,6 +167,12 @@ const registerTFGFoodData = (event) => { food.protein(5) food.decayModifier(2.25) }) + + event.foodItem('tfg:food/ice_soup', food => { + food.hunger(1) + food.water(20) + food.decayModifier(0) + }) } const registerTFGFauna = (event) => { diff --git a/kubejs/server_scripts/tfg/events.chunks.js b/kubejs/server_scripts/tfg/events.chunks.js new file mode 100644 index 000000000..473221a6b --- /dev/null +++ b/kubejs/server_scripts/tfg/events.chunks.js @@ -0,0 +1,57 @@ +// priority: 0 + +TFCEvents.createChunkDataProvider('mars', event => { + + const rain = TFC.misc.lerpFloatLayer(0, 0, 0, 0); + const tempLayer = TFC.misc.newOpenSimplex2D(event.worldSeed + 4621678939469) + .spread(0.2) + .octaves(3) + .scaled(70, 90) + const forestLayer = TFC.misc.newOpenSimplex2D(event.worldSeed + 98713856895664) + .spread(0.8) + .terraces(9) + .affine(6, 12) + .scaled(6, 18, 0, 1) + + // Precompute the surface & aquifer heights as constants as this is nether and does not realistically change + var heights = []; + var i = 0; + while (i < 256) { + heights.push(127); + i++; + } + var aquifer = []; + i = 0; + while (i < 16) { + aquifer.push(0); + i++; + } + + event.partial((data, chunk) => { + var x = chunk.pos.minBlockX; + var z = chunk.pos.minBlockZ; + + var temp = TFC.misc.lerpFloatLayer( + tempLayer.noise(x, z), + tempLayer.noise(x, z + 15), + tempLayer.noise(x + 15, z), + tempLayer.noise(x + 15, z + 15) + ); + + data.generatePartial( + rain, + temp, + forestLayer.noise(x, z) * 4, // Kube accepts ordinal numbers for enum constants + forestLayer.noise(x * 78423 + 869, z), + forestLayer.noise(x, z * 651349 - 698763) + ); + }); + + event.full((data, chunk) => { + data.generateFull(heights, aquifer); + }); + + event.rocks((x, y, z, surfaceY, cache, rockLayers) => { + return rockLayers.sampleAtLayer(0, 0); + }); +}) diff --git a/kubejs/server_scripts/tfg/loot_tables.js b/kubejs/server_scripts/tfg/loot_tables.js index 2cd1aedb2..13c1f5b43 100644 --- a/kubejs/server_scripts/tfg/loot_tables.js +++ b/kubejs/server_scripts/tfg/loot_tables.js @@ -88,4 +88,67 @@ function registerTFGLoots(event) { .addLoot('minecraft:campfire') //#endregion -}; \ No newline at end of file + + //Cross-mod glass compat + const STRONG_GLASSES = [ + ['create:dark_oak_window', true], + ['create:mangrove_window', true], + ['create:ornate_iron_window', true], + ['create:industrial_iron_window', true], + ['create:weathered_iron_window', true], + ['create:cherry_window', true], + ['create:bamboo_window', true], + ['createdeco:andesite_window', true], + ['createdeco:copper_window', true], + ['createdeco:iron_window', true], + ['createdeco:industrial_iron_window', true], + ['createdeco:brass_window', true], + ['createdeco:zinc_window', true], + ['everycomp:c/domum_ornamentum/cactus_window_pane', false], + ['everycomp:c/domum_ornamentum/cactus_extra_window_pane', false] + ] + const GLASSES = [ + 'create:framed_glass', + 'create:vertical_framed_glass', + 'create:horizontal_framed_glass', + 'create:tiled_glass' + ] + + STRONG_GLASSES.forEach(glass => { + event.addBlockLootModifier(glass[0]) + .addLoot(glass[0]) + if(glass[1]){ + event.addBlockLootModifier(glass[0] + "_pane") + .addLoot(glass[0] + "_pane") + } + + }); + + GLASSES.forEach(glass => { + event.addBlockLootModifier(glass) + .matchMainHand(Item.of('tfc:gem_saw')) + .addLoot(glass) + event.addBlockLootModifier(glass + "_pane") + .matchMainHand(Item.of('tfc:gem_saw')) + .addLoot(glass + "_pane") + + }) + + global.TFC_WOOD_TYPES.forEach(wood => { + const id = 'everycomp:c/tfc/' + wood + "_window_pane" + event.addBlockLootModifier(id) + .addLoot(id) + }) + global.AFC_WOOD_TYPES.forEach(wood => { + const id = 'everycomp:c/afc/' + wood + "_window_pane" + event.addBlockLootModifier(id) + .addLoot(id) + }) + + global.AD_ASTRA_WOOD.forEach(wood => { + const id = 'everycomp:c/ad_astra/' + wood.name + "_window_pane" + event.addBlockLootModifier(id) + .addLoot(id) + }) + +}; diff --git a/kubejs/server_scripts/tfg/recipes.collapse.js b/kubejs/server_scripts/tfg/recipes.collapse.js index d762221da..b955fbe40 100644 --- a/kubejs/server_scripts/tfg/recipes.collapse.js +++ b/kubejs/server_scripts/tfg/recipes.collapse.js @@ -46,12 +46,16 @@ function registerTFGCollapseRecipes(event) { event.recipes.tfc.collapse('ad_astra:mercury_cobblestone', 'tfg:rock/hardened_mercury_stone') event.recipes.tfc.landslide('ad_astra:mercury_cobblestone', 'ad_astra:mercury_cobblestone') event.recipes.tfc.collapse('ad_astra:mercury_cobblestone', '#forge:ores_in_ground/mercury_stone') - event.recipes.tfc.landslide('ad_astra:mercury_sand', 'ad_astra:mercury_sand') event.recipes.tfc.collapse('ad_astra:glacio_cobblestone', 'ad_astra:glacio_stone') event.recipes.tfc.collapse('ad_astra:glacio_cobblestone', 'tfg:rock/hardened_glacio_stone') event.recipes.tfc.landslide('ad_astra:glacio_cobblestone', 'ad_astra:glacio_cobblestone') event.recipes.tfc.collapse('ad_astra:glacio_cobblestone', '#forge:ores_in_ground/glacio_stone') - event.recipes.tfc.landslide('ad_astra:glacio_sand', 'ad_astra:glacio_sand') + + event.recipes.tfc.landslide('minecraft:red_sand', 'minecraft:red_sand') + event.recipes.tfc.landslide('gtceu:red_granite_cobblestone', 'gtceu:red_granite_cobblestone') + event.recipes.tfc.collapse('gtceu:red_granite_cobblestone', 'gtceu:red_granite') + event.recipes.tfc.collapse('gtceu:red_granite_cobblestone', 'tfg:rock/hardened_red_granite') + event.recipes.tfc.collapse('gtceu:red_granite_cobblestone', '#forge:ores_in_ground/red_granite') // #endregion } \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.food.js b/kubejs/server_scripts/tfg/recipes.food.js index 7df48f898..c0735e759 100644 --- a/kubejs/server_scripts/tfg/recipes.food.js +++ b/kubejs/server_scripts/tfg/recipes.food.js @@ -441,14 +441,14 @@ function registerTFGFoodRecipes(event) { global.TFC_JAMS.forEach(name => { processorRecipe(`${name}_jam`, 200, 8, { circuit: 15, - itemInputs: [`4x tfc:food/${name}`, "#tfg:sugars", "#tfc:empty_jar_with_lid"], + itemInputs: [`4x tfc:food/${name}`, "#tfg:sugars", "4x #tfc:empty_jar_with_lid"], itemOutputs: [`4x tfc:jar/${name}`], itemOutputProvider: TFC.isp.of(`4x tfc:jar/${name}`).copyFood() }).inputFluids(JsonIO.of({ amount: 100, value: { tag: "tfg:clean_water" }})) processorRecipe(`${name}_jam_no_seal`, 200, 8, { circuit: 16, - itemInputs: [`4x tfc:food/${name}`, "#tfg:sugars", "tfc:empty_jar"], + itemInputs: [`4x tfc:food/${name}`, "#tfg:sugars", "4x tfc:empty_jar"], itemOutputs: [`4x tfc:jar/${name}_unsealed`], itemOutputProvider: TFC.isp.of(`4x tfc:jar/${name}_unsealed`).copyFood() }).inputFluids(JsonIO.of({ amount: 100, value: { tag: "tfg:clean_water" }})) @@ -459,6 +459,8 @@ function registerTFGFoodRecipes(event) { cookingRecipe("corn_tortilla", "firmalife:food/masa", "firmalife:food/corn_tortilla") + cookingRecipe("baked_potato", "tfc:food/potato", "tfc:food/baked_potato") + cookingRecipe("boiled_egg", "#firmalife:foods/raw_eggs", "tfc:food/boiled_egg") .inputFluids(JsonIO.of({ amount: 200, value: { tag: "tfg:clean_water" }})) @@ -515,7 +517,16 @@ function registerTFGFoodRecipes(event) { fluidInputs: [Fluid.of('gtceu:fermented_biomass', 40)], itemOutputProvider: TFC.isp.of('tfg:food/calorie_paste').copyOldestFood().addTrait('tfg:freeze_dried'), }) + + //Kelp + cookingRecipe("dried_kelp_a", "tfc:plant/winged_kelp", "tfc:food/dried_kelp") + cookingRecipe("dried_kelp_b", "tfc:plant/leafy_kelp", "tfc:food/dried_kelp") + cookingRecipe("dried_kelp_c", "tfc:plant/giant_kelp_flower", "tfc:food/dried_kelp") + //Seaweed + cookingRecipe("dried_seaweed_a", "tfc:food/fresh_seaweed", "tfc:food/dried_seaweed") + cookingRecipe("dried_seaweed_b", "tfc:groundcover/seaweed", "tfc:food/dried_seaweed") + // Vinegar processorRecipe('vinegar_alcohol', 600, 32, { circuit: 5, @@ -558,13 +569,7 @@ function registerTFGFoodRecipes(event) { ) }) - processorRecipe("pizza_dough_olive_oil", 300, 16, { - itemInputs: ['firmalife:spice/basil_leaves', '#tfc:foods/dough', 'tfc:powder/salt'], - itemOutputs: ['4x firmalife:food/pizza_dough'], - itemOutputProvider: TFC.isp.of("4x firmalife:food/pizza_dough").copyOldestFood() - }) - - processorRecipe("pizza_dough_soybean_oil", 300, 16, { + processorRecipe("pizza_dough", 300, 16, { itemInputs: ['firmalife:spice/basil_leaves', '#tfc:foods/dough', 'tfc:powder/salt'], itemOutputs: ['4x firmalife:food/pizza_dough'], itemOutputProvider: TFC.isp.of("4x firmalife:food/pizza_dough").copyOldestFood() @@ -642,7 +647,7 @@ function registerTFGFoodRecipes(event) { }).inputFluids(JsonIO.of({ amount: 1000, value: { tag: "tfg:clean_water" }})) processorRecipe("yeast_starter", 1200, 8, { - circuit: 1, + circuit: 2, fluidInputs: [Fluid.of('firmalife:yeast_starter', 100)], fluidOutputs: [Fluid.of('firmalife:yeast_starter', 600)], itemInputs: ['#tfc:foods/flour'], @@ -787,6 +792,11 @@ function registerTFGFoodRecipes(event) { event.recipes.tfc.quern('gtceu:cocoa_dust', 'firmalife:food/roasted_cocoa_beans') .id('tfg:quern/cocoa_dust'); + event.recipes.tfc.pot(['firmalife:ice_shavings', 'firmalife:ice_shavings', 'firmalife:ice_shavings', 'firmalife:ice_shavings', 'firmalife:ice_shavings'], + Fluid.of('minecraft:water', 1000), 20, 10) + .itemOutput('tfg:food/ice_soup') + .id('tfg:pot/ice_soup') + //#endregion //#region Heating recipes for new foods @@ -872,4 +882,4 @@ function registerTFGFoodRecipes(event) { event.replaceInput({id: 'gtceu:shaped/mv_food_refrigerator'}, 'gtceu:mv_machine_hull', 'gtceu:mv_hermetic_casing') event.replaceInput({id: 'gtceu:shaped/hv_food_refrigerator'}, 'gtceu:hv_machine_hull', 'gtceu:hv_hermetic_casing') event.replaceInput({id: 'gtceu:shaped/ev_food_refrigerator'}, 'gtceu:ev_machine_hull', 'gtceu:ev_hermetic_casing') -} \ No newline at end of file +} diff --git a/kubejs/server_scripts/tfg/recipes.miscellaneous.js b/kubejs/server_scripts/tfg/recipes.miscellaneous.js index 0a68d1e87..1cdf1d57c 100644 --- a/kubejs/server_scripts/tfg/recipes.miscellaneous.js +++ b/kubejs/server_scripts/tfg/recipes.miscellaneous.js @@ -252,7 +252,7 @@ function registerTFGMiscellaneousRecipes(event) { .EUt(GTValues.VA[GTValues.ULV]) event.recipes.gtceu.fluid_solidifier('tfg:ice') - .inputFluids(JsonIO.of({ amount: 100, value: { tag: "tfg:clean_water" } })) + .inputFluids(JsonIO.of({ amount: 144, value: { tag: "tfg:clean_water" } })) .notConsumable('gtceu:block_casting_mold') .itemOutputs('minecraft:ice') .duration(200) @@ -443,7 +443,7 @@ function registerTFGMiscellaneousRecipes(event) { .duration(100) .EUt(GTValues.VA[GTValues.MV]) - event.recipes.gtceu.fluid_solidifier('tfg:fluid_solidifier/dry_ice') + event.recipes.gtceu.gas_pressurizer('tfg:fluid_solidifier/dry_ice') .inputFluids(Fluid.of('gtceu:carbon_dioxide', 1000)) .notConsumable('gtceu:block_casting_mold') .itemOutputs('2x tfg:dry_ice') @@ -745,4 +745,144 @@ function registerTFGMiscellaneousRecipes(event) { .itemOutputs('gtceu:quantum_eye') .duration(24 * 20) .EUt(480) + + // Harvest Baskets + + event.shaped('tfg:harvest_basket', [ + 'BDB', + 'ACA', + 'AAA' + ], { + A: 'tfg:soaked_hardwood_strip', + B: ChemicalHelper.get(TagPrefix.bolt, GTMaterials.SterlingSilver, 1), + C: 'tfc:glue', + D: ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.TreatedWood, 1), + }).id('tfg:shaped/harvest_basket_from_wood') + + event.recipes.gtceu.assembler('tfg:assembler/harvest_basket_from_wood') + .itemInputs( + '5x tfg:soaked_hardwood_strip', + ChemicalHelper.get(TagPrefix.bolt, GTMaterials.SterlingSilver, 2), + ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.TreatedWood, 1) + ) + .inputFluids(Fluid.of('gtceu:glue', 50)) + .itemOutputs('tfg:harvest_basket') + .duration(100) + .EUt(GTValues.VA[GTValues.ULV]) + + event.shaped('tfg:harvest_basket', [ + 'BDB', + 'ACA', + 'AAA' + ], { + A: 'tfc:soaked_papyrus_strip', + B: ChemicalHelper.get(TagPrefix.bolt, GTMaterials.SterlingSilver, 1), + C: 'tfc:glue', + D: ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.TreatedWood, 1), + }).id('tfg:shaped/harvest_basket_from_papyrus') + + event.recipes.gtceu.assembler('tfg:assembler/harvest_basket_from_papyrus') + .itemInputs( + '5x tfc:soaked_papyrus_strip', + ChemicalHelper.get(TagPrefix.bolt, GTMaterials.SterlingSilver, 2), + ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.TreatedWood, 1) + ) + .inputFluids(Fluid.of('gtceu:glue', 50)) + .itemOutputs('tfg:harvest_basket') + .duration(100) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.assembler('tfg:assembler/aluminium_harvest_basket') + .itemInputs( + ChemicalHelper.get(TagPrefix.plate, GTMaterials.Aluminium, 3), + ChemicalHelper.get(TagPrefix.foil, GTMaterials.Aluminium, 2), + ChemicalHelper.get(TagPrefix.bolt, GTMaterials.Steel, 2), + ChemicalHelper.get(TagPrefix.rodLong, + GTMaterials.Aluminium, 1) + ) + .inputFluids(Fluid.of('gtceu:cobalt_brass', 144)) + .itemOutputs('tfg:aluminium_harvest_basket') + .duration(200) + .circuit(4) + .EUt(GTValues.VA[GTValues.LV]) + + //Rock-wool stuff + event.recipes.gtceu.mixer('aes_mix') + .itemInputs('5x gtceu:silicon_dioxide_dust', '4x gtceu:quicklime_dust', 'gtceu:magnesia_dust') + .itemOutputs('10x tfg:aes_mix_dust') + .duration(160) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.electric_blast_furnace('molten_aes') + .itemInputs('2x tfg:aes_mix_dust') + .outputFluids(Fluid.of('tfg:molten_aes', 1000)) + .chancedOutput('gtceu:ash_dust', 3000, 0) + .circuit(1) + .duration(400) + .blastFurnaceTemp(3000) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.electric_blast_furnace('molten_aes_he') + .itemInputs('2x tfg:aes_mix_dust') + .inputFluids(Fluid.of('gtceu:helium', 200)) + .outputFluids(Fluid.of('tfg:molten_aes', 1000)) + .circuit(2) + .duration(140) + .blastFurnaceTemp(3000) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.centrifuge('aes_wool') + .inputFluids(Fluid.of('tfg:molten_aes', 200)) + .itemOutputs('tfg:aes_wool') + .duration(30) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.forming_press('aes_compressed_wool') + .itemInputs('4x tfg:aes_wool') + .notConsumable('gtceu:ingot_casting_mold') + .itemOutputs('tfg:aes_compressed_wool') + .duration(40) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.chemical_bath('aes_insulation_sheet') + .itemInputs('tfg:aes_compressed_wool') + .inputFluids(Fluid.of('gtceu:epoxy', 72)) + .circuit(1) + .itemOutputs('tfg:aes_insulation_sheet') + .duration(80) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.chemical_bath('aes_insulation_roll') + .itemInputs('9x tfg:aes_compressed_wool') + .inputFluids(Fluid.of('gtceu:epoxy', 648)) + .itemOutputs('tfg:aes_insulation_roll') + .circuit(9) + .duration(400) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.assembler('aes_insulation_roll') + .itemInputs('9x tfg:aes_insulation_sheet') + .itemOutputs('tfg:aes_insulation_roll') + .circuit(0) + .duration(20) + .EUt(GTValues.VA[GTValues.LV]) + + event.shaped('tfg:aes_insulation_roll', [ + 'AAA', + 'AAA', + 'AAA' + ], { + A: 'tfg:aes_insulation_sheet', + }).id('tfg:shaped/aes_insulation_roll') + + event.recipes.gtceu.assembler('aes_insulation_sheet') + .itemInputs('9x tfg:aes_insulation_sheet') + .itemOutputs('tfg:aes_insulation_roll') + .circuit(0) + .duration(20) + .EUt(GTValues.VA[GTValues.LV]) + + event.shapeless('9x tfg:aes_insulation_sheet', [ + 'tfg:aes_insulation_roll' + ]).id('tfg:shapeless/aes_insulation_sheet') } diff --git a/kubejs/server_scripts/tfg/recipes.molds.js b/kubejs/server_scripts/tfg/recipes.molds.js index f24ad38ef..4738db382 100644 --- a/kubejs/server_scripts/tfg/recipes.molds.js +++ b/kubejs/server_scripts/tfg/recipes.molds.js @@ -263,9 +263,9 @@ function registerTFGMoldRecipes(event) { }) event.shaped('tfg:wire_cutter_head_extruder_mold', [ - ' ', 'hS ', - 'f ' + ' ', + ' f ' ], { S: 'gtceu:empty_mold', f: '#forge:tools/files', diff --git a/kubejs/server_scripts/tfg/recipes.paper.js b/kubejs/server_scripts/tfg/recipes.paper.js index eb6d1c28e..5f02457f8 100644 --- a/kubejs/server_scripts/tfg/recipes.paper.js +++ b/kubejs/server_scripts/tfg/recipes.paper.js @@ -85,6 +85,12 @@ function registerTFGPapermakingRecipes(event) { .inputs('tfg:hardwood_strip', TFC.fluidStackIngredient('#tfc:water', 100)) .outputItem('tfg:soaked_hardwood_strip') .id('tfg:barrel/soak_hardwood_strip') + event.recipes.gtceu.chemical_bath('tfg:chemical_bath/soak_hardwood_strips') + .inputFluids( JsonIO.of({ amount: 100, value: { tag: "tfc:any_water" }})) + .itemInputs('tfg:hardwood_strip') + .itemOutputs('tfg:soaked_hardwood_strip') + .duration(200) + .EUt(GTValues.VA[GTValues.ULV]) //Create Hardwood Dust using Quern and Millstone/Crushing Wheels event.recipes.gtceu.macerator('tfg:macerator/macerate_hardwood_strips') diff --git a/kubejs/server_scripts/tfg/recipes.recycling.js b/kubejs/server_scripts/tfg/recipes.recycling.js index 6b8c9251f..adac77f11 100644 --- a/kubejs/server_scripts/tfg/recipes.recycling.js +++ b/kubejs/server_scripts/tfg/recipes.recycling.js @@ -376,4 +376,27 @@ function registerTFGRecyclingRecipes(event) { .duration(GTMaterials.Titanium.getMass() * 6) .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) .EUt(GTValues.VA[GTValues.LV]) + + //Aluminium Harvest Basket + event.recipes.gtceu.macerator('tfg:macerator/recycling/aluminium_harvest_basket') + .itemInputs('tfg:aluminium_harvest_basket') + .itemOutputs( + ChemicalHelper.get(TagPrefix.dust, GTMaterials.Aluminium, 2), + ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Steel, 1), + ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.CobaltBrass, 2) + ) + .duration(GTMaterials.Aluminium.getMass() * 2) + .category(GTRecipeCategories.MACERATOR_RECYCLING) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.arc_furnace('tfg:arc_furnace/recycling/aluminium_harvest_basket') + .itemInputs('tfg:aluminium_harvest_basket') + .itemOutputs( + ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Aluminium, 2), + ChemicalHelper.get(TagPrefix.nugget, GTMaterials.Steel, 1), + ChemicalHelper.get(TagPrefix.nugget, GTMaterials.CobaltBrass, 2) + ) + .duration(GTMaterials.Aluminium.getMass() * 2) + .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) + .EUt(GTValues.VA[GTValues.LV]) } \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.space.js b/kubejs/server_scripts/tfg/recipes.space.js index 780572b5c..d3448fa72 100644 --- a/kubejs/server_scripts/tfg/recipes.space.js +++ b/kubejs/server_scripts/tfg/recipes.space.js @@ -91,8 +91,8 @@ function registerTFGSpaceRecipes(event) { event.recipes.gtceu.aqueous_accumulator('lava_nether') .circuit(aaCircuit++) .dimension('minecraft:the_nether') - .duration(20) - .EUt(GTValues.VHA[GTValues.LV]) + .duration(20*5) + .EUt(GTValues.VHA[GTValues.HV]) .addDataString("fluidA", "minecraft:lava") .outputFluids(Fluid.of("minecraft:lava", 1000)) @@ -140,21 +140,21 @@ function registerTFGSpaceRecipes(event) { // Chorus event.recipes.gtceu.greenhouse('tfg:chorus') - .itemInputs('8x tfg:lunar_chorus_flower') + .notConsumable('8x tfg:lunar_chorus_flower') .itemOutputs('64x minecraft:chorus_fruit') - .chancedOutput('8x tfg:lunar_chorus_flower', 7500, 1000) - .chancedOutput('8x tfg:lunar_chorus_flower', 5000, 1000) + .chancedOutput('8x tfg:lunar_chorus_flower', 750, 0) + .chancedOutput('8x tfg:lunar_chorus_flower', 500, 0) .duration(36000) // 30 mins .circuit(1) .EUt(GTValues.VA[GTValues.MV]) .dimension('ad_astra:moon') event.recipes.gtceu.greenhouse('tfg:chorus_helium') - .itemInputs('8x tfg:lunar_chorus_flower') + .notConsumable('8x tfg:lunar_chorus_flower') .inputFluids(Fluid.of('gtceu:helium_3', 2000)) .itemOutputs('64x minecraft:chorus_fruit') - .chancedOutput('8x tfg:lunar_chorus_flower', 8500, 1000) - .chancedOutput('8x tfg:lunar_chorus_flower', 6000, 1000) + .chancedOutput('8x tfg:lunar_chorus_flower', 4000, 0) + .chancedOutput('8x tfg:lunar_chorus_flower', 3000, 0) .duration(12000) // 10 mins .circuit(2) .EUt(GTValues.VA[GTValues.MV]) @@ -171,7 +171,7 @@ function registerTFGSpaceRecipes(event) { event.recipes.gtceu.fermenter('tfg:chorus') .itemInputs('minecraft:chorus_fruit') .inputFluids(Fluid.of('gtceu:biomass', 20)) - .chancedOutput('ae2:ender_dust', 100, 100) + .chancedOutput('ae2:ender_dust', 100, 0) .outputFluids(Fluid.of('gtceu:nitrogen', 1000)) .circuit(2) .duration(5 * 20) @@ -180,23 +180,23 @@ function registerTFGSpaceRecipes(event) { // Lightblooms event.recipes.gtceu.greenhouse('tfg:lightbloom') - .itemInputs('8x minecraft:twisting_vines') + .notConsumable('8x minecraft:twisting_vines') .itemOutputs('16x minecraft:twisting_vines') - .chancedOutput('minecraft:pearlescent_froglight', 2500, 1000) - .chancedOutput('minecraft:verdant_froglight', 2500, 1000) - .chancedOutput('minecraft:ochre_froglight', 2500, 1000) + .chancedOutput('minecraft:pearlescent_froglight', 2500, 0) + .chancedOutput('minecraft:verdant_froglight', 2500, 0) + .chancedOutput('minecraft:ochre_froglight', 2500, 0) .duration(36000) // 30 mins .circuit(1) .EUt(GTValues.VA[GTValues.LV]) .dimension('ad_astra:moon') event.recipes.gtceu.greenhouse('tfg:lightbloom_helium') - .itemInputs('8x minecraft:twisting_vines') + .notConsumable('8x minecraft:twisting_vines') .inputFluids(Fluid.of('gtceu:helium_3', 2000)) .itemOutputs('16x minecraft:twisting_vines') - .chancedOutput('minecraft:pearlescent_froglight', 3500, 1000) - .chancedOutput('minecraft:verdant_froglight', 3500, 1000) - .chancedOutput('minecraft:ochre_froglight', 3500, 1000) + .chancedOutput('minecraft:pearlescent_froglight', 3500, 0) + .chancedOutput('minecraft:verdant_froglight', 3500, 0) + .chancedOutput('minecraft:ochre_froglight', 3500, 0) .duration(12000) // 30 mins .circuit(2) .EUt(GTValues.VA[GTValues.LV]) @@ -211,35 +211,35 @@ function registerTFGSpaceRecipes(event) { // Space suit gases - event.recipes.gtceu.compressor('compressed_nitrox') + event.recipes.gtceu.gas_pressurizer('compressed_nitrox') .inputFluids(Fluid.of('gtceu:nitrogen', 8000), Fluid.of('gtceu:oxygen', 2000)) .outputFluids(Fluid.of('tfg:compressed_nitrox', 1000)) .circuit(1) .duration(100) .EUt(GTValues.VA[GTValues.HV]) - event.recipes.gtceu.compressor('compressed_heliox') + event.recipes.gtceu.gas_pressurizer('compressed_heliox') .inputFluids(Fluid.of('gtceu:helium', 8000), Fluid.of('gtceu:oxygen', 2000)) .outputFluids(Fluid.of('tfg:compressed_heliox', 1000)) .circuit(1) .duration(100) .EUt(GTValues.VA[GTValues.HV]) - event.recipes.gtceu.compressor('compressed_heliox_3') + event.recipes.gtceu.gas_pressurizer('compressed_heliox_3') .inputFluids(Fluid.of('gtceu:helium_3', 8000), Fluid.of('gtceu:oxygen', 2000)) .outputFluids(Fluid.of('tfg:compressed_heliox_3', 1000)) .circuit(1) .duration(100) .EUt(GTValues.VA[GTValues.HV]) - event.recipes.gtceu.compressor('compressed_trimix') + event.recipes.gtceu.gas_pressurizer('compressed_trimix') .inputFluids(Fluid.of('gtceu:nitrogen', 5000), Fluid.of('gtceu:oxygen', 3000), Fluid.of('gtceu:helium', 2000)) .outputFluids(Fluid.of('tfg:compressed_trimix', 1000)) .circuit(2) .duration(100) .EUt(GTValues.VA[GTValues.HV]) - event.recipes.gtceu.compressor('compressed_trimix_3') + event.recipes.gtceu.gas_pressurizer('compressed_trimix_3') .inputFluids(Fluid.of('gtceu:nitrogen', 5000), Fluid.of('gtceu:oxygen', 3000), Fluid.of('gtceu:helium_3', 2000)) .outputFluids(Fluid.of('tfg:compressed_trimix_3', 1000)) .circuit(2) diff --git a/kubejs/server_scripts/tfg/tags.js b/kubejs/server_scripts/tfg/tags.js index 73eb22339..8a4c12254 100644 --- a/kubejs/server_scripts/tfg/tags.js +++ b/kubejs/server_scripts/tfg/tags.js @@ -29,7 +29,7 @@ const registerTFGItemTags = (event) => { //Knapping event.add('tfc:any_knapping', 'minecraft:flint') - //Tools & Armor + //#region Tools & Armor event.add('forge:tools/fishing_nets', 'tfg:fishing_net/wood') event.add('forge:tools/fishing_nets', 'tfg:fishing_net/brass') event.add('forge:tools/fishing_nets', 'tfg:fishing_net/rose_gold') @@ -44,6 +44,10 @@ const registerTFGItemTags = (event) => { event.add('forge:tools/trowels', 'tfg:trowel') event.add('tfc:usable_on_tool_rack', 'tfg:trowel') + event.add('tfg:harvester', 'tfg:harvest_basket') + event.add('tfg:harvester', 'tfg:aluminium_harvest_basket') + //#endregion + // #region Paper from wood event.add('tfg:hardwood_strips', 'tfg:hardwood_strip') event.add('tfg:hardwood_strips', 'tfg:soaked_hardwood_strip') @@ -310,6 +314,7 @@ const registerTFGItemTags = (event) => { //#endregion } +//#region Blocks const registerTFGBlockTags = (event) => { event.add('minecraft:mineable/shovel', 'tfg:ash_pile') @@ -340,9 +345,15 @@ const registerTFGBlockTags = (event) => { event.add('minecraft:base_stone_nether', 'tfg:rock/hardened_dripstone') event.add('tfc:rock/hardened', 'tfg:rock/hardened_dripstone') + event.add('tfg:harvester_harvestable', '#tfc:fruit_tree_leaves') + event.add('tfg:harvester_harvestable', '#tfc:berry_bushes') + event.add('tfg:harvester_harvestable', '#tfc:any_spreading_bush') + // #endregion } +//#endregion +//#region Fluids const registerTFGFluidTags = (event) => { event.add('tfc:usable_in_pot', 'tfg:latex') @@ -367,10 +378,13 @@ const registerTFGFluidTags = (event) => { event.add('tfg:clean_water', 'tfc:river_water') event.add('tfg:clean_water', 'tfc:spring_water') + event.add('tfc:usable_in_barrel', 'gtceu:seed_oil') + global.BREATHABLE_COMPRESSED_AIRS.forEach(x => { event.add('tfg:breathable_compressed_air', x) }) } +//#endregion const registerTFGBiomeTags = (event) => { diff --git a/kubejs/server_scripts/vintage_improvements/recipes.js b/kubejs/server_scripts/vintage_improvements/recipes.js index 13cfe46b8..2485b2dac 100644 --- a/kubejs/server_scripts/vintage_improvements/recipes.js +++ b/kubejs/server_scripts/vintage_improvements/recipes.js @@ -134,7 +134,7 @@ function registerVintageImprovementsRecipes(event) { .itemInputs('#forge:plates/red_alloy', '#forge:small_gears/brass', '#forge:bolts/red_alloy') .inputFluids(Fluid.of('gtceu:redstone', 144)) .itemOutputs('vintageimprovements:redstone_module') - .duration(400) + .duration(20 * 20) .EUt(20) event.shaped('vintageimprovements:recipe_card', [ diff --git a/kubejs/startup_scripts/ad_astra/constants.js b/kubejs/startup_scripts/ad_astra/constants.js index 1c30eda43..8e1f8bd7f 100644 --- a/kubejs/startup_scripts/ad_astra/constants.js +++ b/kubejs/startup_scripts/ad_astra/constants.js @@ -109,4 +109,10 @@ global.BREATHABLE_COMPRESSED_AIRS = 'tfg:compressed_heliox_3', 'tfg:compressed_trimix', 'tfg:compressed_trimix_3' -]; \ No newline at end of file +]; + +global.AD_ASTRA_WOOD = [ + {name: 'aeronos', logs: '#ad_astra:aeronos_caps', log: 'ad_astra:aeronos_stem', stripped_log: null, lumber: 'tfg:wood/lumber/aeronos', plank: 'ad_astra:aeronos_planks', stair: 'ad_astra:aeronos_stairs', slab: 'ad_astra:aeronos_slab', fence: 'ad_astra:aeronos_fence', fence_gate: 'ad_astra:aeronos_fence_gate', door: 'ad_astra:aeronos_door', trapdoor: 'ad_astra:aeronos_trapdoor', button: null, pressure_plate: null, support: 'tfg:aeronos_support', isHardwood: false}, + {name: 'strophar', logs: '#ad_astra:strophar_caps', log: 'ad_astra:strophar_stem', stripped_log: null, lumber: 'tfg:wood/lumber/strophar', plank: 'ad_astra:strophar_planks', stair: 'ad_astra:strophar_stairs', slab: 'ad_astra:strophar_slab', fence:'ad_astra:strophar_fence', fence_gate: 'ad_astra:strophar_fence_gate', door:'ad_astra:strophar_door', trapdoor: 'ad_astra:strophar_trapdoor', button: null, pressure_plate: null, support: 'tfg:strophar_support', isHardwood: false}, + {name: 'glacian', logs: '#ad_astra:glacian_logs', log: 'ad_astra:glacian_log', stripped_log: 'ad_astra:stripped_glacian_log', lumber: 'tfg:wood/lumber/glacian', plank: 'ad_astra:glacian_planks', stair: 'ad_astra:glacian_stairs', slab: 'ad_astra:glacian_slab', fence: 'ad_astra:glacian_fence', fence_gate: 'ad_astra:glacian_fence_gate', door: 'ad_astra:glacian_door', trapdoor: 'ad_astra:glacian_trapdoor', button: 'ad_astra:glacian_button', pressure_plate: 'ad_astra:glacian_pressure_plate', support: 'tfg:glacian_support', isHardwood: true}, +] \ No newline at end of file diff --git a/kubejs/startup_scripts/gtceu/constants.js b/kubejs/startup_scripts/gtceu/constants.js index d1df1dd58..67ffe8bb3 100644 --- a/kubejs/startup_scripts/gtceu/constants.js +++ b/kubejs/startup_scripts/gtceu/constants.js @@ -1,7 +1,9 @@ // priority: 0 +//#region Disabled Items +/** @global */ global.GTCEU_DISABLED_ITEMS = [ - // Пыль пшеницы + // Пыль пшеницы (Wheat Dusts) 'gtceu:wheat_dust', 'gtceu:small_wheat_dust', 'gtceu:tiny_wheat_dust', @@ -22,14 +24,14 @@ global.GTCEU_DISABLED_ITEMS = [ 'gtceu:lp_steam_solar_boiler', 'gtceu:charcoal_pile_igniter', - // Примитивная помпа + // Примитивная помпа (Primitive Pump) 'gtceu:infinite_water_cover', 'gtceu:ender_fluid_link_cover', 'gtceu:pump_deck', 'gtceu:pump_hatch', 'gtceu:primitive_pump', - // Другое + // Другое (Other) 'gtceu:flint_mortar', 'gtceu:flint_knife', 'gtceu:firebrick', @@ -175,7 +177,11 @@ global.GTCEU_DISABLED_ITEMS = [ 'gtceu:cracked_marble_bricks', 'gtceu:mossy_marble_bricks' ]; +//#endregion + +//#region Hidden Items +/** @global */ global.GTCEU_HIDED_ITEMS = [ 'gtceu:netherrack_dust', 'gtceu:small_netherrack_dust', @@ -183,7 +189,10 @@ global.GTCEU_HIDED_ITEMS = [ 'gtceu:sus_record' ]; +//#endregion +//#region Armor +/** @global */ global.GTCEU_ARMORS = [ 'gtceu:hazmat_chestpiece', 'gtceu:hazmat_leggings', @@ -201,7 +210,10 @@ global.GTCEU_ARMORS = [ 'gtceu:quarktech_helmet', 'gtceu:advanced_quarktech_chestplate' ]; +//#endregion +//#region Extruder Molds +/** @global */ global.TFG_EXTRUDER_MOLDS = [ 'tfg:mining_hammer_head_extruder_mold', 'tfg:sword_head_extruder_mold', @@ -230,14 +242,20 @@ global.TFG_EXTRUDER_MOLDS = [ 'tfg:shell_casing_extruder_mold', 'tfg:large_casing_extruder_mold' ]; +//#endregion +//#region Casting Molds +/** @global */ global.TFG_CASTING_MOLDS = [ 'tfg:lamp_casting_mold', 'tfg:trapdoor_casting_mold', 'tfg:chain_casting_mold', 'tfg:bell_casting_mold' ]; +//#endregion +//#region Ore Bearing Stone +/** @global */ global.ORE_BEARING_STONES = [ 'gabbro', 'shale', @@ -271,4 +289,13 @@ global.ORE_BEARING_STONES = [ 'mercury_stone', 'glacio_stone' ]; +//#endregion + +//#region Add Circuits +/** @global */ +global.ADD_CIRCUIT = [ + {recipeId: 'gtceu:chemical_reactor/tetrafluoroethylene_from_chloroform', circuitNumber: 1}, + {recipeId: 'gtceu:chemical_reactor/hydrofluoric_acid_from_elements', circuitNumber: 2}, +]; +//#endregion diff --git a/kubejs/startup_scripts/gtceu/materials.js b/kubejs/startup_scripts/gtceu/materials.js index 5a70f306c..f04b5886f 100644 --- a/kubejs/startup_scripts/gtceu/materials.js +++ b/kubejs/startup_scripts/gtceu/materials.js @@ -81,6 +81,10 @@ const registerGTCEuMaterialModification = (event) => { /* TFC Проперти для материалов */ // TFC_PROPERTY = (forging temp, welding temp, melt temp, material, tier, percent of material) + // OR = (forging temp, welding temp, melt temp, tier) + // + // If registering a new material that you want to melt into a liquid in a vessel etc, + // make sure you add it to registerGTCEUMetals()! GTMaterials.Copper.setProperty(TFGPropertyKey.TFC_PROPERTY, new $TFC_PROPERTY(648, 864, 1080, 1)); GTMaterials.BismuthBronze.setProperty(TFGPropertyKey.TFC_PROPERTY, new $TFC_PROPERTY(591, 788, 985, 2)); @@ -126,6 +130,7 @@ const registerGTCEuMaterialModification = (event) => { GTMaterials.Redstone.setProperty(TFGPropertyKey.TFC_PROPERTY, new $TFC_PROPERTY(240, 320, 460, 1)); GTMaterials.RedAlloy.setProperty(TFGPropertyKey.TFC_PROPERTY, new $TFC_PROPERTY(570, 650, 740, 2)); GTMaterials.TinAlloy.setProperty(TFGPropertyKey.TFC_PROPERTY, new $TFC_PROPERTY(1000, 1100, 1250, 3)); + GTMaterials.Lead.setProperty(TFGPropertyKey.TFC_PROPERTY, new $TFC_PROPERTY(170, 250, 330, 2)); GTMaterials.Gold.addFlags(GENERATE_BELL); @@ -176,6 +181,7 @@ const registerGTCEuMaterialModification = (event) => { // /* Имеют двойные слитки */ GTMaterials.RedAlloy.addFlags(GENERATE_DOUBLE_INGOTS, GENERATE_SMALL_GEAR); GTMaterials.TinAlloy.addFlags(GENERATE_DOUBLE_INGOTS); + GTMaterials.Lead.addFlags(GENERATE_DOUBLE_INGOTS); // // /* Другое */ @@ -315,6 +321,8 @@ const registerGTCEuMaterialModification = (event) => { GTMaterials.Platinum.setMaterialSecondaryARGB(0x59563a) GTMaterials.Nickel.setMaterialARGB(0xfff4ba) GTMaterials.Nickel.setMaterialSecondaryARGB(0x8d8d71) + GTMaterials.Thorium.setMaterialARGB(0xf8a8c0) + GTMaterials.Thorium.setMaterialSecondaryARGB(0xcd8dbc) global.MINECRAFT_DYE_NAMES.forEach(colorName => @@ -332,4 +340,4 @@ const registerGTCEuMaterialModification = (event) => { GTCEuAPI.materialManager.getMaterial('tfg:kaolinite').setFormula("Al2Si2O5(OH)4", true) GTCEuAPI.materialManager.getMaterial('tfg:vitrified_pearl').setFormula("(Al2Si2O5(OH)4)(BeK4N5)", true) -} \ No newline at end of file +} diff --git a/kubejs/startup_scripts/gtceu/tag_prefixes.js b/kubejs/startup_scripts/gtceu/tag_prefixes.js index 3e15958a2..4b5f973b2 100644 --- a/kubejs/startup_scripts/gtceu/tag_prefixes.js +++ b/kubejs/startup_scripts/gtceu/tag_prefixes.js @@ -52,13 +52,6 @@ const registerGTCEuTagPrefixes = (event) => { TagPrefix.pipeNonupleFluid.defaultTagPath("nonuple_fluid_pipes/%s") TagPrefix.pipeNonupleFluid.unformattedTagPath("nonuple_fluid_pipes") - // FirmaLife Shit - TagPrefix.pipeTinyFluid.customTagPath("", (prefix, mat) => createBlockTag("firmalife:always_valid_greenhouse_wall")) - TagPrefix.pipeSmallFluid.customTagPath("", (prefix, mat) => createBlockTag("firmalife:always_valid_greenhouse_wall")) - TagPrefix.pipeNormalFluid.customTagPath("", (prefix, mat) => createBlockTag("firmalife:always_valid_greenhouse_wall")) - TagPrefix.pipeLargeFluid.customTagPath("", (prefix, mat) => createBlockTag("firmalife:always_valid_greenhouse_wall")) - // FirmaLife Shit - TagPrefix.pipeSmallItem.defaultTagPath("small_item_pipes/%s") TagPrefix.pipeSmallItem.unformattedTagPath("small_item_pipes") TagPrefix.pipeNormalItem.defaultTagPath("normal_item_pipes/%s") @@ -99,4 +92,4 @@ const registerGTCEuTagPrefixes = (event) => { TagPrefix.rawOreBlock.unformattedTagPath("raw_ore_blocks") TagPrefix.rawOre.setIgnored(GTMaterials.Iron); -} \ No newline at end of file +} diff --git a/kubejs/startup_scripts/main_startup_script.js b/kubejs/startup_scripts/main_startup_script.js index 62ef82f38..07dbe6aa3 100644 --- a/kubejs/startup_scripts/main_startup_script.js +++ b/kubejs/startup_scripts/main_startup_script.js @@ -72,6 +72,6 @@ TFCEvents.registerFoodTrait(event => { registerTFGFoodTraits(event) }) -Platform.mods.kaolinclayze.name = "Primitive Creatures"; +Platform.mods.primitive_creatures.name = "Primitive Creatures"; Platform.mods.tfg.name = "TerraFirmaGreg"; Platform.mods.kubejs.name = "TerraFirmaGreg"; \ No newline at end of file diff --git a/kubejs/startup_scripts/minecraft/constants.js b/kubejs/startup_scripts/minecraft/constants.js index 0c1c6b7ac..2aabf4dbb 100644 --- a/kubejs/startup_scripts/minecraft/constants.js +++ b/kubejs/startup_scripts/minecraft/constants.js @@ -136,19 +136,6 @@ global.MINECRAFT_DISABLED_ITEMS = [ 'minecraft:sand', 'minecraft:suspicious_sand', - // Красный песок - 'minecraft:red_sandstone', - 'minecraft:red_sandstone_stairs', - 'minecraft:red_sandstone_slab', - 'minecraft:red_sandstone_wall', - 'minecraft:smooth_red_sandstone', - 'minecraft:smooth_red_sandstone_stairs', - 'minecraft:smooth_red_sandstone_slab', - 'minecraft:cut_red_sandstone', - 'minecraft:cut_red_sandstone_slab', - 'minecraft:chiseled_red_sandstone', - 'minecraft:red_sand', - // Кораллы 'minecraft:horn_coral', 'minecraft:horn_coral_fan', @@ -776,21 +763,6 @@ global.VANILLA_WOOD_TYPES = [ "warped" // TODO: Разблокировать когда появится АД ]; -global.VANILLA_STONE_TYPES = [ - "sand", - "red_sand", - "gravel", - "ore", - "deepslate", - "basalt", - "endstone", - "netherrack", - "andesite", - "diorite", - "granite", - "tuff" -]; - global.MINECRAFT_DYE_NAMES = [ 'white', 'orange', diff --git a/kubejs/startup_scripts/tfc/tag_prefixes.js b/kubejs/startup_scripts/tfc/tag_prefixes.js index b892624ff..5ea826bac 100644 --- a/kubejs/startup_scripts/tfc/tag_prefixes.js +++ b/kubejs/startup_scripts/tfc/tag_prefixes.js @@ -8,7 +8,6 @@ const registerTFCTagPrefixes = (event) => { TagPrefix.ORES.remove(TagPrefix.oreTuff) TagPrefix.ORES.remove(TagPrefix.oreSand) TagPrefix.ORES.remove(TagPrefix.oreRedSand) - TagPrefix.ORES.remove(TagPrefix.oreRedGranite) TagPrefix.ORES.remove(TagPrefix.oreMarble) TagPrefix.ORES.remove(TagPrefix.oreGravel) TagPrefix.ORES.remove(TagPrefix.oreEndstone) diff --git a/kubejs/startup_scripts/tfg/blocks.space.js b/kubejs/startup_scripts/tfg/blocks.space.js index 2cb55f6a0..b1268e9f8 100644 --- a/kubejs/startup_scripts/tfg/blocks.space.js +++ b/kubejs/startup_scripts/tfg/blocks.space.js @@ -124,6 +124,20 @@ function registerTFGSpaceBlocks(event) { .fullBlock(true) .opaque(true) + event.create('tfg:rock/hardened_red_granite') + .stoneSoundType() + .requiresTool(true) + .item(item => { + item.modelJson({ parent: 'gtceu:item/red_granite' }) + }) + .tagBlock('tfc:can_carve') + .tagBoth('forge:stone') + .tagBoth('tfc:rock/hardened') + .tagBlock('minecraft:mineable/pickaxe') + .mapColor('terracotta_red') + .fullBlock(true) + .opaque(true) + // Loose stones event.create('tfg:loose/moon_stone', 'tfc:loose_rock') @@ -182,6 +196,14 @@ function registerTFGSpaceBlocks(event) { .tagItem('tfc:rock_knapping') .tagItem('tfc:metamorphic_rock') + event.create('tfg:loose/red_granite', 'tfc:loose_rock') + .stoneSoundType() + .itemTexture('tfg:item/loose/red_granite') + .tagBlock('tfc:loose_rocks') + .tagItem('tfc:any_knapping') + .tagItem('tfc:rock_knapping') + .tagItem('tfc:igneous_intrusive_rock') + // Spikes event.create('tfg:spike/moon_stone_spike', 'tfc:rock_spike') @@ -212,6 +234,10 @@ function registerTFGSpaceBlocks(event) { .stoneSoundType() .noItem() + event.create('tfg:spike/red_granite_spike', 'tfc:rock_spike') + .stoneSoundType() + .noItem() + // #region Plants /* diff --git a/kubejs/startup_scripts/tfg/blocks.supports.js b/kubejs/startup_scripts/tfg/blocks.supports.js index 06425f725..05b7653d9 100644 --- a/kubejs/startup_scripts/tfg/blocks.supports.js +++ b/kubejs/startup_scripts/tfg/blocks.supports.js @@ -138,4 +138,24 @@ function registerTFGSupportBlocks(event) { .requiresTool(true) }) + global.AD_ASTRA_WOOD.forEach(wood => { + event.create(`tfg:${wood.name}_support`, 'tfc:support') + .textureAll(`tfg:block/support/${wood.name}_support`) + .horizontal(horizontal => { + horizontal.textureAll(`tfg:block/support/${wood.name}_support`) + horizontal.soundType('wood') + horizontal.hardness(2) + horizontal.resistance(2) + horizontal.mapColor('color_orange') + horizontal.tagBlock('minecraft:mineable/axe') + horizontal.requiresTool(false) + }) + .soundType('wood') + .hardness(2) + .resistance(2) + .mapColor('color_orange') + .tagBlock('minecraft:mineable/axe') + .requiresTool(false) + }) + } \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/constants.js b/kubejs/startup_scripts/tfg/constants.js index 3923f7728..782590041 100644 --- a/kubejs/startup_scripts/tfg/constants.js +++ b/kubejs/startup_scripts/tfg/constants.js @@ -25,7 +25,8 @@ global.EXTRATERRESTRIAL_RAW_ROCKS = [ 'ad_astra:mars_stone', 'ad_astra:venus_stone', 'ad_astra:mercury_stone', - 'ad_astra:glacio_stone' + 'ad_astra:glacio_stone', + 'gtceu:red_granite' ] global.EXTRATERRESTRIAL_HARDENED_ROCKS = [ @@ -35,6 +36,7 @@ global.EXTRATERRESTRIAL_HARDENED_ROCKS = [ 'tfg:rock/hardened_venus_stone', 'tfg:rock/hardened_mercury_stone', 'tfg:rock/hardened_glacio_stone', + 'tfg:rock/hardened_red_granite' ] global.MOON_STONE_TYPES = [ diff --git a/kubejs/startup_scripts/tfg/fluids.js b/kubejs/startup_scripts/tfg/fluids.js index c428efe2a..82278529a 100644 --- a/kubejs/startup_scripts/tfg/fluids.js +++ b/kubejs/startup_scripts/tfg/fluids.js @@ -30,6 +30,14 @@ const registerTFGFluids = (event) => { .luminosity(2) .noBlock() + //#region Mars + event.create('tfg:semiheavy_ammoniacal_water') + .thinTexture(0x704f786c) + .color(0x4f786c) + .temperature(213) + .renderType('translucent') + //#endregion + //#region Venus event.create('tfg:sulfur_fumes') .stillTexture('tfg:block/planets/venus/sulfur_fumes_still') @@ -44,8 +52,6 @@ const registerTFGFluids = (event) => { .stillTexture('tfg:block/planets/venus/super_heated_slurry_still') .flowingTexture('tfg:block/planets/venus/super_heated_slurry_flow') .bucketColor(0xc4d984) - .viscosity(0) - .density(0) .renderType('translucent') //#endregion } \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/items.food.js b/kubejs/startup_scripts/tfg/items.food.js index 0fafc8028..67992fe7b 100644 --- a/kubejs/startup_scripts/tfg/items.food.js +++ b/kubejs/startup_scripts/tfg/items.food.js @@ -88,4 +88,12 @@ function registerTFGFoodItems(event) { .effect('minecraft:hunger', 100, 0, 1)) .tag('tfc:foods/meats') .tag('tfc:foods/raw_meats') + + event.create('tfg:food/ice_soup') + .translationKey('item.tfg.food.ice_soup') + .texture('tfg:item/food/ice_soup') + .food(food => food.eaten(ctx => { + ctx.player.give('tfc:ceramic/bowl') + })) + // intentionally not tagged as food } \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/items.js b/kubejs/startup_scripts/tfg/items.js index 9ba920be3..26495bdec 100644 --- a/kubejs/startup_scripts/tfg/items.js +++ b/kubejs/startup_scripts/tfg/items.js @@ -13,12 +13,20 @@ const registerTFGItems = (event) => { event.create('tfg:vitrified_pearl') // #endregion - // #region Orbit dimension markers + // #region Space + + // Orbit dimension markers event.create('tfg:marker/earth_orbit').tag('c:hidden_from_recipe_viewers') event.create('tfg:marker/moon_orbit').tag('c:hidden_from_recipe_viewers') event.create('tfg:marker/mars_orbit').tag('c:hidden_from_recipe_viewers') event.create('tfg:marker/venus_orbit').tag('c:hidden_from_recipe_viewers') event.create('tfg:marker/mercury_orbit').tag('c:hidden_from_recipe_viewers') + + global.AD_ASTRA_WOOD.forEach(wood => { + event.create(`tfg:wood/lumber/${wood.name}`) + .translationKey(`item.tfg.${wood.name}_lumber`) + .tag('tfc:lumber') + }) // #endregion // #region Paper making @@ -157,18 +165,10 @@ const registerTFGItems = (event) => { //#region Misc event.create('tfg:paraffin_wax') - .translationKey('item.tfg.paraffin_wax') - event.create('tfg:conifer_rosin') - .translationKey('item.tfg.conifer_rosin') - event.create('tfg:foil_pack') - .translationKey('item.tfg.foil_pack') - .texture('tfg:item/foil_pack') - event.create('tfg:clean_foil_pack') - .translationKey('item.tfg.clean_foil_pack') - .texture('tfg:item/clean_foil_pack') + event.create('tfg:flint_club_head') //#endregion //#region Cloth & String @@ -198,6 +198,17 @@ const registerTFGItems = (event) => { event.create('tfg:armor_stand_arms') .translationKey('item.tfg.armor_stand_arms') + event.create('tfg:harvest_basket') + .translationKey('item.tfg.harvest_basket') + .parentModel('tfg:item/harvest_basket') + .maxDamage(128) + + event.create('tfg:aluminium_harvest_basket') + .translationKey('item.tfg.aluminium_harvest_basket') + .parentModel('tfg:item/aluminium_harvest_basket') + .unstackable() + + //Fishing Nets event.create('tfg:fishing_net/wood') .translationKey('item.tfg.fishing_net.wood') .parentModel('tfg:item/fishing_nets/wood_fishing_net') @@ -321,4 +332,15 @@ const registerTFGItems = (event) => { event.create('tfg:nitrocellulose') .translationKey('tfg:nitrocellulose') //endregion -} \ No newline at end of file + + //RockWool + event.create('tfg:aes_wool') + .translationKey('tfg:aes_wool') + event.create('tfg:aes_compressed_wool') + .translationKey('tfg:aes_compressed_wool') + event.create('tfg:aes_insulation_sheet') + .translationKey('tfg:aes_insulation_sheet') + event.create('tfg:aes_insulation_roll') + .translationKey('tfg:aes_insulation_roll') + //endregion +} diff --git a/kubejs/startup_scripts/tfg/materials.js b/kubejs/startup_scripts/tfg/materials.js index aae7ece5f..23aca753c 100644 --- a/kubejs/startup_scripts/tfg/materials.js +++ b/kubejs/startup_scripts/tfg/materials.js @@ -136,4 +136,21 @@ const registerTFGMaterials = (event) => { .gas() .components('8x helium_3', '11x oxygen', '11x hydrogen') .color(0xEDFFB3) + //end region + + //Region Rockwool + event.create('tfg:aes_mix') + .dust() + .flags(GTMaterialFlags.DECOMPOSITION_BY_CENTRIFUGING) + .components('5x silicon_dioxide', '4x quicklime', '1x magnesia') + .hazard(HazardProperty.HazardTrigger.SKIN_CONTACT, GTMedicalConditions.CHEMICAL_BURNS) + .color(0xE0E9E4) + //.secondaryColor(0x54483d) + event.create('tfg:molten_aes') + .liquid(2900) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .components('5x silicon_dioxide', '4x quicklime', '1x magnesia') + .color(0xe65609) + .secondaryColor(0xe65609) + //end region } diff --git a/pakku-lock.json b/pakku-lock.json index 4978b8d6a..31b9f652f 100644 --- a/pakku-lock.json +++ b/pakku-lock.json @@ -1,5 +1,5 @@ { - "target": "curseforge", + "target": "multiplatform", "mc_versions": [ "1.20.1" ], @@ -8,16 +8,23 @@ }, "projects": [ { - "pakku_id": "TRLGFfgmWd0ze7GV", + "pakku_id": "v1XVLzfV3EJPc5ke", + "pakku_links": [ + "mYY02F5XR0fB6HXF" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "ae2-import-export-card" + "curseforge": "ae2-import-export-card", + "modrinth": "ae2-import-export-card" }, "name": { - "curseforge": "AE2 Import Export Card" + "curseforge": "AE2 Import Export Card", + "modrinth": "AE2 Import Export Card" }, "id": { - "curseforge": "982512" + "curseforge": "982512", + "modrinth": "qelfSMnn" }, "files": [ { @@ -43,6 +50,29 @@ ], "size": 213744, "date_published": "2024-07-21T15:08:23.603Z" + }, + { + "type": "modrinth", + "file_name": "ae2insertexportcard-1.20.1-1.3.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/qelfSMnn/versions/v8c3El4q/ae2insertexportcard-1.20.1-1.3.0.jar", + "id": "v8c3El4q", + "parent_id": "qelfSMnn", + "hashes": { + "sha512": "5b478677e7f2b717657785ca3315534c5bc113c4a8b3a6497f613d97e9231f614df80b42c71ffcf30ef3f789ea338f930c4a867cee7d216b52c8c5db3a39e668", + "sha1": "df8cbd8e49e001696a3d3e2c8352c3bb310e8c6f" + }, + "required_dependencies": [ + "XxWD5pD3" + ], + "size": 213744, + "date_published": "2024-07-21T15:09:14.293468Z" } ] }, @@ -54,7 +84,9 @@ "hEH6ly65CC6Sw1pf", "FnKweRrkUQZW32bO", "0IQGejKaqyQTLzbL", - "EbImyRnmgUybUFzA" + "EbImyRnmgUybUFzA", + "OX3oijTxjmeoXyM3", + "mYY02F5XR0fB6HXF" ], "type": "MOD", "slug": { @@ -95,16 +127,20 @@ ] }, { - "pakku_id": "5bFLocOstkf9AKyG", + "pakku_id": "f1zNCW1T31PKFnSo", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "ai-improvements" + "curseforge": "ai-improvements", + "modrinth": "ai-improvements" }, "name": { - "curseforge": "AI Improvements" + "curseforge": "AI Improvements", + "modrinth": "AI Improvements" }, "id": { - "curseforge": "233019" + "curseforge": "233019", + "modrinth": "DSVgwcji" }, "files": [ { @@ -128,6 +164,28 @@ "required_dependencies": [], "size": 29553, "date_published": "2023-06-10T14:32:49.250Z" + }, + { + "type": "modrinth", + "file_name": "AI-Improvements-1.20-0.5.2.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/DSVgwcji/versions/eJihmpNQ/AI-Improvements-1.20-0.5.2.jar", + "id": "eJihmpNQ", + "parent_id": "DSVgwcji", + "hashes": { + "sha512": "eb932308aceb30f5157e967f1bd4b57eb1a1b2093886cbfaef6524b780337b8b0e2bd41c5103694c3a275827ceb7d63e7c55637a7a46f8e21f0a6770346b757d", + "sha1": "11ad483d1fd1f7ebd84b4940b1dc0926b3e9daa8" + }, + "required_dependencies": [], + "size": 29553, + "date_published": "2023-06-10T14:33:24.693482Z" } ] }, @@ -136,7 +194,10 @@ "pakku_links": [ "R14GIz0WdkeNLuXD", "18IuoLEIRdaY1Jqy", - "QXBpbwRXpmbaHixl" + "QXBpbwRXpmbaHixl", + "EeaaUThaW8aM9QxU", + "zQAe1eid9EE5PMwK", + "WlWexjDJnb3iikHc" ], "type": "MOD", "side": "BOTH", @@ -206,19 +267,20 @@ ] }, { - "pakku_id": "pcU9nINUf1CWCrgJ", - "pakku_links": [ - "rjOX4EXWlGvG84kO" - ], + "pakku_id": "axmNNDPGdG6D8KXw", "type": "RESOURCE_PACK", + "side": "CLIENT", "slug": { - "curseforge": "ad-astra-3d" + "curseforge": "ad-astra-3d", + "modrinth": "ad-astra-3d" }, "name": { - "curseforge": "Ad Astra 3D" + "curseforge": "Ad Astra 3D", + "modrinth": "Ad Astra 3D" }, "id": { - "curseforge": "1056380" + "curseforge": "1056380", + "modrinth": "fbTZG6SB" }, "files": [ { @@ -241,12 +303,37 @@ ], "size": 66158433, "date_published": "2024-08-07T11:12:07.200Z" + }, + { + "type": "modrinth", + "file_name": "Ad Astra 3D.zip", + "mc_versions": [ + "1.20.1", + "1.20.4" + ], + "loaders": [ + "minecraft" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/fbTZG6SB/versions/tjsrvHBr/Ad Astra 3D.zip", + "id": "tjsrvHBr", + "parent_id": "fbTZG6SB", + "hashes": { + "sha512": "bd91876c90bf7026781e225f9f62010c4578ced596eff158690caa3a51ab6df55cc76cd4f0d910f2b01e528cc1c0a0b6756905040db93116926f33571db72a29", + "sha1": "5e64593611cea49516d32e4831f3ac946c095370" + }, + "required_dependencies": [ + "3ufwT9JF" + ], + "size": 66158433, + "date_published": "2024-08-08T09:34:23.113351Z" } ] }, { "pakku_id": "zpZC9ZXFxQQlQXOb", "type": "MOD", + "side": "CLIENT", "slug": { "curseforge": "ad-astra-auto-lander" }, @@ -281,16 +368,445 @@ ] }, { - "pakku_id": "txamn8WWF6EJ8Jcg", + "pakku_id": "FUkrlSRxJw3vXHSa", + "pakku_links": [ + "tnanmdYAjMuu9igL", + "KXDQAyIcviU2Sjy6", + "6GwMQIiEZI9QEBDy", + "Grz0T2HLTDSCXa81", + "7KKvgCCVN5ojt885" + ], "type": "MOD", + "side": "SERVER", "slug": { - "curseforge": "additional-placements" + "curseforge": "adaptive-performance-tweaks", + "modrinth": "adaptive-performance-tweaks" }, "name": { - "curseforge": "Additional Placements" + "curseforge": "Adaptive Performance Tweaks (Bundle)", + "modrinth": "Adaptive Performance Tweaks (Bundle)" }, "id": { - "curseforge": "674852" + "curseforge": "450269", + "modrinth": "kLawTYXp" + }, + "files": [ + { + "type": "curseforge", + "file_name": "adaptive_performance_tweaks_1.20.1-11.3.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/5815/115/adaptive_performance_tweaks_1.20.1-11.3.0.jar", + "id": "5815115", + "parent_id": "450269", + "hashes": { + "sha1": "94ab2b5d35927a7f49f084d5f6e49536595265f2", + "md5": "aa1fdeef9d4904cdbd829f383ce6d5b1" + }, + "required_dependencies": [ + "563963", + "561439", + "561137", + "573708", + "561087" + ], + "size": 51871, + "date_published": "2024-10-15T20:03:16.933Z" + }, + { + "type": "modrinth", + "file_name": "adaptive_performance_tweaks_1.20.1-11.3.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/kLawTYXp/versions/ePPNLu7Z/adaptive_performance_tweaks_1.20.1-11.3.0.jar", + "id": "ePPNLu7Z", + "parent_id": "kLawTYXp", + "hashes": { + "sha512": "6e785769d0cebda631f94cc7ab3306f8d233850ddf2d62ebe8d6997c2b53267f29576b5090b7126ab585b1f3b60ed544f6a54d039209bb2f53fdb0be9733beb1", + "sha1": "f868ec75ef3266af8cfa3ae6fb0048cef35bc23f" + }, + "required_dependencies": [ + "Rd89yO7d", + "jr5nzfKv", + "217PsbJI", + "L5xaBiBb", + "z3TjJLQ0" + ], + "size": 51871, + "date_published": "2024-10-15T20:02:30.798649Z" + } + ] + }, + { + "pakku_id": "7KKvgCCVN5ojt885", + "type": "MOD", + "side": "SERVER", + "slug": { + "curseforge": "adaptive-performance-tweaks-core", + "modrinth": "adaptive-performance-tweaks-core" + }, + "name": { + "curseforge": "Adaptive Performance Tweaks: Core", + "modrinth": "Adaptive Performance Tweaks: Core" + }, + "id": { + "curseforge": "561087", + "modrinth": "L5xaBiBb" + }, + "files": [ + { + "type": "curseforge", + "file_name": "adaptive_performance_tweaks_core_1.20.1-11.3.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/5815/117/adaptive_performance_tweaks_core_1.20.1-11.3.0.jar", + "id": "5815117", + "parent_id": "561087", + "hashes": { + "sha1": "b707e33365b13eea3d6aac91a61d03a265588362", + "md5": "3c2408998ff6dc76e1e9661919c5ae80" + }, + "required_dependencies": [], + "size": 109763, + "date_published": "2024-10-15T20:03:20.510Z" + }, + { + "type": "modrinth", + "file_name": "adaptive_performance_tweaks_core_1.20.1-11.3.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/L5xaBiBb/versions/lhl5PzXx/adaptive_performance_tweaks_core_1.20.1-11.3.0.jar", + "id": "lhl5PzXx", + "parent_id": "L5xaBiBb", + "hashes": { + "sha512": "c06ea3d4584447debb6d613e7722817c5bdc5d69b6bcc06482d1661ffb01c2d893a1c3bba0c3423a9e7861268e9e0ccec8b283643e1aea6a733d2420aa9fdc70", + "sha1": "297e77d462ab9097be985276fc2bba0169d240fe" + }, + "required_dependencies": [], + "size": 109763, + "date_published": "2024-10-15T20:02:38.559474Z" + } + ] + }, + { + "pakku_id": "6GwMQIiEZI9QEBDy", + "pakku_links": [ + "7KKvgCCVN5ojt885" + ], + "type": "MOD", + "side": "SERVER", + "slug": { + "curseforge": "adaptive-performance-tweaks-gamerules", + "modrinth": "adaptive-performance-tweaks-gamerules" + }, + "name": { + "curseforge": "Adaptive Performance Tweaks: Gamerules", + "modrinth": "Adaptive Performance Tweaks: Gamerules" + }, + "id": { + "curseforge": "561137", + "modrinth": "Rd89yO7d" + }, + "files": [ + { + "type": "curseforge", + "file_name": "adaptive_performance_tweaks_gamerules_1.20.1-11.3.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/5815/118/adaptive_performance_tweaks_gamerules_1.20.1-11.3.0.jar", + "id": "5815118", + "parent_id": "561137", + "hashes": { + "sha1": "7e6ec6c31e27009d693679596c1f23271d9ae905", + "md5": "94ca50f3d0044dfbb3319e8a61da2894" + }, + "required_dependencies": [ + "561087" + ], + "size": 64938, + "date_published": "2024-10-15T20:03:23.600Z" + }, + { + "type": "modrinth", + "file_name": "adaptive_performance_tweaks_gamerules_1.20.1-11.3.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/Rd89yO7d/versions/dmvc4VjR/adaptive_performance_tweaks_gamerules_1.20.1-11.3.0.jar", + "id": "dmvc4VjR", + "parent_id": "Rd89yO7d", + "hashes": { + "sha512": "f5091cb68956b1e1cd3946a4cc4f547a3cb8860b6d64a475871d7ef80a45f91f2878e2553fffd3113839b96955535b780ca229b4ceadfd6a2cb8e828ac22be23", + "sha1": "984a6212f00ab531548bc0f8428e02296b96529a" + }, + "required_dependencies": [ + "L5xaBiBb" + ], + "size": 64938, + "date_published": "2024-10-15T20:02:44.784722Z" + } + ] + }, + { + "pakku_id": "KXDQAyIcviU2Sjy6", + "pakku_links": [ + "7KKvgCCVN5ojt885" + ], + "type": "MOD", + "side": "SERVER", + "slug": { + "curseforge": "adaptive-performance-tweaks-items", + "modrinth": "adaptive-performance-tweaks-items" + }, + "name": { + "curseforge": "Adaptive Performance Tweaks: Items", + "modrinth": "Adaptive Performance Tweaks: Items" + }, + "id": { + "curseforge": "561439", + "modrinth": "z3TjJLQ0" + }, + "files": [ + { + "type": "curseforge", + "file_name": "adaptive_performance_tweaks_items_1.20.1-11.3.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/5815/119/adaptive_performance_tweaks_items_1.20.1-11.3.0.jar", + "id": "5815119", + "parent_id": "561439", + "hashes": { + "sha1": "e26058040dd1fbdb1991c0cdfa7ff93ac5d955ee", + "md5": "55bf4c7b0ab73b629ea6b9a980c0b1cc" + }, + "required_dependencies": [ + "561087" + ], + "size": 71935, + "date_published": "2024-10-15T20:03:26.003Z" + }, + { + "type": "modrinth", + "file_name": "adaptive_performance_tweaks_items_1.20.1-11.3.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/z3TjJLQ0/versions/Owg1cVwE/adaptive_performance_tweaks_items_1.20.1-11.3.0.jar", + "id": "Owg1cVwE", + "parent_id": "z3TjJLQ0", + "hashes": { + "sha512": "e989fa7de9e1647d3f9ca2ff02ea3ca0e222a75940d1559ccd699af39df9b57f8d5903f54304492ba93549f1aed1efd6e44bfd0226bcd9aa7655c23d2ec14a46", + "sha1": "1753a360b3011c9ab098677f4321727420d92a1d" + }, + "required_dependencies": [ + "L5xaBiBb" + ], + "size": 71935, + "date_published": "2024-10-15T20:02:50.684809Z" + } + ] + }, + { + "pakku_id": "tnanmdYAjMuu9igL", + "pakku_links": [ + "7KKvgCCVN5ojt885" + ], + "type": "MOD", + "side": "SERVER", + "slug": { + "curseforge": "adaptive-performance-tweaks-player", + "modrinth": "adaptive-performance-tweaks-player" + }, + "name": { + "curseforge": "Adaptive Performance Tweaks: Player Login Optimization and Protection", + "modrinth": "Adaptive Performance Tweaks: Player" + }, + "id": { + "curseforge": "563963", + "modrinth": "jr5nzfKv" + }, + "files": [ + { + "type": "curseforge", + "file_name": "adaptive_performance_tweaks_player_1.20.1-11.3.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/5815/120/adaptive_performance_tweaks_player_1.20.1-11.3.0.jar", + "id": "5815120", + "parent_id": "563963", + "hashes": { + "sha1": "0c63e09e6caee884c657b4249f64a220c0a0f9c1", + "md5": "1281f4addece14a80bf8e9128740fdbf" + }, + "required_dependencies": [ + "561087" + ], + "size": 66272, + "date_published": "2024-10-15T20:03:28.643Z" + }, + { + "type": "modrinth", + "file_name": "adaptive_performance_tweaks_player_1.20.1-11.3.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/jr5nzfKv/versions/P4zCdvOB/adaptive_performance_tweaks_player_1.20.1-11.3.0.jar", + "id": "P4zCdvOB", + "parent_id": "jr5nzfKv", + "hashes": { + "sha512": "d0fa9d4a53b4aeb3dedab197343c4e5a58611a2911d9e86ae8014b3995368965f500d641b676bcecf99f472c4184634b15d771cce2f204a94d1d27c9a51087f9", + "sha1": "75f447183ec60d33d9c8b87dcc5c687d24424c58" + }, + "required_dependencies": [ + "L5xaBiBb" + ], + "size": 66272, + "date_published": "2024-10-15T20:02:56.584235Z" + } + ] + }, + { + "pakku_id": "Grz0T2HLTDSCXa81", + "pakku_links": [ + "7KKvgCCVN5ojt885" + ], + "type": "MOD", + "side": "SERVER", + "slug": { + "curseforge": "adaptive-performance-tweaks-spawn", + "modrinth": "adaptive-performance-tweaks-spawn" + }, + "name": { + "curseforge": "Adaptive Performance Tweaks: Spawn", + "modrinth": "Adaptive Performance Tweaks: Spawn" + }, + "id": { + "curseforge": "573708", + "modrinth": "217PsbJI" + }, + "files": [ + { + "type": "curseforge", + "file_name": "adaptive_performance_tweaks_spawn_1.20.1-11.3.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/5815/121/adaptive_performance_tweaks_spawn_1.20.1-11.3.0.jar", + "id": "5815121", + "parent_id": "573708", + "hashes": { + "sha1": "a933f6adb6e7b614eeff180acb20a64b5777ef41", + "md5": "aeab7fbc8d6309ff43b197e3c407c104" + }, + "required_dependencies": [ + "561087" + ], + "size": 143593, + "date_published": "2024-10-15T20:03:31.823Z" + }, + { + "type": "modrinth", + "file_name": "adaptive_performance_tweaks_spawn_1.20.1-11.3.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/217PsbJI/versions/suOxhIlo/adaptive_performance_tweaks_spawn_1.20.1-11.3.0.jar", + "id": "suOxhIlo", + "parent_id": "217PsbJI", + "hashes": { + "sha512": "dd9a2e508db6ac0f22636fd974ccf2f2e1e7de4e2740704364bb3a086ae8d933b97b6fb0306f49f89cdd5bdcbfa78202e10ef935c307a869ed8d2561da3a04fb", + "sha1": "d3f2cc11a1d37042d4c94c199f08d2e0edfa18ed" + }, + "required_dependencies": [ + "L5xaBiBb" + ], + "size": 143593, + "date_published": "2024-10-15T20:03:03.303293Z" + } + ] + }, + { + "pakku_id": "O7PVs47VlRBYKE7b", + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "additional-placements", + "modrinth": "additional-placements" + }, + "name": { + "curseforge": "Additional Placements", + "modrinth": "Additional Placements" + }, + "id": { + "curseforge": "674852", + "modrinth": "f5TwOKkb" }, "files": [ { @@ -313,20 +829,48 @@ "required_dependencies": [], "size": 420054, "date_published": "2025-05-29T20:19:26.417Z" + }, + { + "type": "modrinth", + "file_name": "[1.20.1-Forge] Additional Placements-2.3.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/f5TwOKkb/versions/JtOSIiMX/[1.20.1-Forge] Additional Placements-2.3.1.jar", + "id": "JtOSIiMX", + "parent_id": "f5TwOKkb", + "hashes": { + "sha512": "6d6468d5b97d34ddd7857760547b195153e4a36b4a0d47804f12be9fad1d2ddcc75ab6ffef020544b0f2808771cdc5c489f0579e273209cd57ab209d1a237bfb", + "sha1": "536363d54e2902c7e5ba2d2901f4c9b30a96e4c5" + }, + "required_dependencies": [], + "size": 420054, + "date_published": "2025-05-29T20:22:18.591814Z" } ] }, { - "pakku_id": "TRLGFfgmWd0ze7GV", + "pakku_id": "F5HxgTY5cUnKQx1S", + "pakku_links": [ + "SA19Vecc1QTF7Kih" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "advanced-peripherals" + "curseforge": "advanced-peripherals", + "modrinth": "advancedperipherals" }, "name": { - "curseforge": "Advanced Peripherals" + "curseforge": "Advanced Peripherals", + "modrinth": "Advanced Peripherals" }, "id": { - "curseforge": "431725" + "curseforge": "431725", + "modrinth": "SOw6jD6x" }, "files": [ { @@ -352,6 +896,30 @@ ], "size": 885693, "date_published": "2025-06-06T22:01:06.353Z" + }, + { + "type": "modrinth", + "file_name": "AdvancedPeripherals-1.20.1-0.7.44r.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/SOw6jD6x/versions/toqbt6Np/AdvancedPeripherals-1.20.1-0.7.44r.jar", + "id": "toqbt6Np", + "parent_id": "SOw6jD6x", + "hashes": { + "sha512": "79c5ef416fbda79fbf8cda44fc3ae5515e6096c975d5c17c99407ea4e69a4b9523f853d7bb5f3677c697c8b0838ccc790d86afb722af6f0adc01e539d1eb71dc", + "sha1": "35c59c04958f068724ae2b7e6b799556b3fdeb84" + }, + "required_dependencies": [ + "gu7yAYhd" + ], + "size": 885692, + "date_published": "2025-06-06T22:00:33.668272Z" } ] }, @@ -392,16 +960,20 @@ ] }, { - "pakku_id": "Odyk7EVsuYynAJeZ", + "pakku_id": "QDZyqZ3QAXN6Vk9L", "type": "MOD", + "side": "SERVER", "slug": { - "curseforge": "almanac-lib" + "curseforge": "almanac-lib", + "modrinth": "almanac" }, "name": { - "curseforge": "Almanac Lib" + "curseforge": "Almanac Lib", + "modrinth": "Almanac" }, "id": { - "curseforge": "1115285" + "curseforge": "1115285", + "modrinth": "Gi02250Z" }, "files": [ { @@ -427,24 +999,51 @@ "required_dependencies": [], "size": 15906, "date_published": "2024-10-11T18:08:14.653Z" + }, + { + "type": "modrinth", + "file_name": "almanac-1.20.x-forge-1.0.2.jar", + "mc_versions": [ + "1.20.1", + "1.20.2", + "1.20.3", + "1.20.4" + ], + "loaders": [ + "forge" + ], + "release_type": "beta", + "url": "https://cdn.modrinth.com/data/Gi02250Z/versions/DnzrwvfD/almanac-1.20.x-forge-1.0.2.jar", + "id": "DnzrwvfD", + "parent_id": "Gi02250Z", + "hashes": { + "sha512": "58c4dea50fcb17593e2c97a23ce101c62b5b32e2fd71d4bbf323f2778d4474c991caba7234ecf4d06f1e246ccb9ad7f67f2fa73f023cd80ef55333e2ed952f43", + "sha1": "f0b711df59cd589b088e536ca4134c5e6e73fd58" + }, + "required_dependencies": [], + "size": 15906, + "date_published": "2024-10-11T18:13:58.947870Z" } ] }, { - "pakku_id": "wXzHLlUEzCBiVmmf", + "pakku_id": "HIRVzoTe33lqGzym", "pakku_links": [ - "WLBp9cajd3ZyDeek" + "akHy85nANe33zAFR" ], "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "ambientsounds" + "curseforge": "ambientsounds", + "modrinth": "ambientsounds" }, "name": { - "curseforge": "AmbientSounds 6" + "curseforge": "AmbientSounds 6", + "modrinth": "AmbientSounds" }, "id": { - "curseforge": "254284" + "curseforge": "254284", + "modrinth": "fM515JnW" }, "files": [ { @@ -470,23 +1069,51 @@ ], "size": 51722248, "date_published": "2025-05-26T09:57:49.020Z" + }, + { + "type": "modrinth", + "file_name": "AmbientSounds_FORGE_v6.1.11_mc1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/fM515JnW/versions/lDrRWaFm/AmbientSounds_FORGE_v6.1.11_mc1.20.1.jar", + "id": "lDrRWaFm", + "parent_id": "fM515JnW", + "hashes": { + "sha512": "0754b6afd97f0b3d2a991303e9f1d70512dabe5f490a6b86de99602f4d787da17222c3aa6ffff74633e4b40472e1ccaab5b5a1d7a967c788b89334749d475ad9", + "sha1": "af412170c07febfb5c611b7237d806230dc83584" + }, + "required_dependencies": [ + "OsZiaDHq" + ], + "size": 51722248, + "date_published": "2025-05-26T09:58:10.235049Z" } ] }, { - "pakku_id": "0IQGejKaqyQTLzbL", + "pakku_id": "mYY02F5XR0fB6HXF", "pakku_links": [ - "dR8ZIMOQFxDrUtOO" + "E7ASIvLUKD1YJURv" ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "applied-energistics-2" + "curseforge": "applied-energistics-2", + "modrinth": "ae2" }, "name": { - "curseforge": "Applied Energistics 2" + "curseforge": "Applied Energistics 2", + "modrinth": "Applied Energistics 2" }, "id": { - "curseforge": "223794" + "curseforge": "223794", + "modrinth": "XxWD5pD3" }, "files": [ { @@ -511,20 +1138,53 @@ ], "size": 8423678, "date_published": "2025-07-13T11:29:51.753Z" + }, + { + "type": "modrinth", + "file_name": "appliedenergistics2-forge-15.4.6.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/XxWD5pD3/versions/lqOU9Ohx/appliedenergistics2-forge-15.4.6.jar", + "id": "lqOU9Ohx", + "parent_id": "XxWD5pD3", + "hashes": { + "sha512": "5d1a172f28e1fe2deada9a69af4e07242535d72ce3d9eefaebebd863732c7d9a9f671c712cd599570ee613daa461a85bc895932666dc4f6acbed0421b650f881", + "sha1": "773c809c67ef75979476a1c7062a754b497d9260" + }, + "required_dependencies": [ + "Ck4E7v7R" + ], + "size": 8423678, + "date_published": "2025-07-13T11:29:51.019917Z" } ] }, { - "pakku_id": "TRLGFfgmWd0ze7GV", + "pakku_id": "SKNobxecQul3CE8g", + "pakku_links": [ + "x1EwQZ6H2kVKR3U3", + "3QJUyVc5jxbc7OFC", + "0DMPJ1AWW6qfYubI", + "mYY02F5XR0fB6HXF" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "applied-energistics-2-wireless-terminals" + "curseforge": "applied-energistics-2-wireless-terminals", + "modrinth": "applied-energistics-2-wireless-terminals" }, "name": { - "curseforge": "Applied Energistics 2 Wireless Terminals" + "curseforge": "Applied Energistics 2 Wireless Terminals", + "modrinth": "Applied Energistics 2 Wireless Terminals" }, "id": { - "curseforge": "459929" + "curseforge": "459929", + "modrinth": "pNabrMMw" }, "files": [ { @@ -545,26 +1205,59 @@ "sha1": "9a35bc25ba2daade63db76ff4012eb68b0392b08", "md5": "b564aeaa6cff74f6f6402481819c5717" }, - "required_dependencies": [], + "required_dependencies": [ + "419699" + ], "size": 213482, "date_published": "2024-03-28T12:58:33.250Z" + }, + { + "type": "modrinth", + "file_name": "ae2wtlib-15.2.3-forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/pNabrMMw/versions/O1Gg7y6z/ae2wtlib-15.2.3-forge.jar", + "id": "O1Gg7y6z", + "parent_id": "pNabrMMw", + "hashes": { + "sha512": "dc250ee0e998ec3e24cbd2f0f81304ac80a95ed94106dadc553af954feb492953397455e2e39a3ec80dc5bc3c0d5e9197d657a9f48e41d3de6a74cc1a31b75e9", + "sha1": "9a35bc25ba2daade63db76ff4012eb68b0392b08" + }, + "required_dependencies": [ + "vvuO3ImH", + "lhGA9TYQ", + "9s6osm5g", + "XxWD5pD3" + ], + "size": 213482, + "date_published": "2024-03-28T12:58:35.065897Z" } ] }, { - "pakku_id": "DTQY7CRkNhQRsIHc", + "pakku_id": "2bYBgl1QjxhmPNgX", "pakku_links": [ - "fMkiGcRPRv1DdRC1" + "64uacGcEw697jVGs" ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "arborfirmacraft" + "curseforge": "arborfirmacraft", + "modrinth": "arborfirmacraft-(afc)" }, "name": { - "curseforge": "ArborFirmaCraft" + "curseforge": "ArborFirmaCraft", + "modrinth": "ArborFirmaCraft (AFC)" }, "id": { - "curseforge": "877545" + "curseforge": "877545", + "modrinth": "9q4wtMjp" }, "files": [ { @@ -590,20 +1283,48 @@ ], "size": 5117468, "date_published": "2025-06-10T03:09:58.637Z" + }, + { + "type": "modrinth", + "file_name": "afc-1.0.18-1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/9q4wtMjp/versions/2LnBYYOD/afc-1.0.18-1.20.1.jar", + "id": "2LnBYYOD", + "parent_id": "9q4wtMjp", + "hashes": { + "sha512": "1ba3efbc9a697abac6e1fd087190fc15b2ddf6f039f0772ba44afc9629ff5f99377ee134fb8c12586e8594d525b0e805d15c6e3520d401175436f9c1914ea432", + "sha1": "c2cfffcce7ff7c1c978326a674389fcbdfb61fd4" + }, + "required_dependencies": [ + "JaCEZUhg" + ], + "size": 5117468, + "date_published": "2025-06-10T03:08:41.089924Z" } ] }, { - "pakku_id": "0eaY2qNvkpQzolFy", + "pakku_id": "x1EwQZ6H2kVKR3U3", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "architectury-api" + "curseforge": "architectury-api", + "modrinth": "architectury-api" }, "name": { - "curseforge": "Architectury API" + "curseforge": "Architectury API", + "modrinth": "Architectury API" }, "id": { - "curseforge": "419699" + "curseforge": "419699", + "modrinth": "lhGA9TYQ" }, "files": [ { @@ -627,24 +1348,51 @@ "required_dependencies": [], "size": 580602, "date_published": "2024-02-26T13:18:59.227Z" + }, + { + "type": "modrinth", + "file_name": "architectury-9.2.14-forge.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/lhGA9TYQ/versions/1MKTLiiG/architectury-9.2.14-forge.jar", + "id": "1MKTLiiG", + "parent_id": "lhGA9TYQ", + "hashes": { + "sha512": "cf67f2050cafa00f0bee42e6d7bef77fdb808ac4f71742f7b4d6d5c1e6ffb49561a5a252f332d2b78a9767bdb5faa284611790dba303fbdc736ae36d794f61c7", + "sha1": "a52918a500ff421180a1cbd1a0cabee712134ec4" + }, + "required_dependencies": [], + "size": 580602, + "date_published": "2024-02-26T13:19:00.816154Z" } ] }, { - "pakku_id": "Y7Mq6cGsnK4c6ksf", + "pakku_id": "Wg44U8f1K4nbIsj1", "pakku_links": [ + "64uacGcEw697jVGs", "6dYejgNtpJaOppvV", - "fMkiGcRPRv1DdRC1" + "4L03mAuxL9hXBkDI" ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "astikor-carts-tfc" + "curseforge": "astikor-carts-tfc", + "modrinth": "tfc-astikor-carts" }, "name": { - "curseforge": "Astikor Carts TFC" + "curseforge": "Astikor Carts TFC", + "modrinth": "TFC Astikor Carts" }, "id": { - "curseforge": "844019" + "curseforge": "844019", + "modrinth": "Q7dNt3PU" }, "files": [ { @@ -671,20 +1419,49 @@ ], "size": 532048, "date_published": "2024-10-09T14:37:43.363Z" + }, + { + "type": "modrinth", + "file_name": "TFCAstikorCarts-1.20.1-1.1.8.3.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/Q7dNt3PU/versions/UVsPFqtl/TFCAstikorCarts-1.20.1-1.1.8.3.jar", + "id": "UVsPFqtl", + "parent_id": "Q7dNt3PU", + "hashes": { + "sha512": "6f2cfc309ba735f1bb423be39a19b1e726b96238d2ac81e93ea55dc10d9c08652d48c16eacb17c9a8cb466904b0c478702b4a35004665a908d986a3cfdf173be", + "sha1": "1a64a638d83e7b33d1f4c589ac0bc3005ffec34f" + }, + "required_dependencies": [ + "mnLFouB0", + "JaCEZUhg" + ], + "size": 532048, + "date_published": "2024-10-09T14:39:04.045371Z" } ] }, { - "pakku_id": "6dYejgNtpJaOppvV", + "pakku_id": "4L03mAuxL9hXBkDI", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "astikor-carts-redux" + "curseforge": "astikor-carts-redux", + "modrinth": "astikorcarts-redux" }, "name": { - "curseforge": "AstikorCarts Redux" + "curseforge": "AstikorCarts Redux", + "modrinth": "AstikorCarts Redux" }, "id": { - "curseforge": "916493" + "curseforge": "916493", + "modrinth": "mnLFouB0" }, "files": [ { @@ -708,20 +1485,47 @@ "required_dependencies": [], "size": 231706, "date_published": "2024-07-28T15:17:23.797Z" + }, + { + "type": "modrinth", + "file_name": "astikorcarts-1.20.1-1.1.8.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/mnLFouB0/versions/p3r1QBKd/astikorcarts-1.20.1-1.1.8.jar", + "id": "p3r1QBKd", + "parent_id": "mnLFouB0", + "hashes": { + "sha512": "b75bd70ba76b0f82ab4dd546594ff7121849b3c6a574afbfcdb1acc9596559230019628a6197c420e9b96233482780f896574d868f046ef1c61a61c8928d9888", + "sha1": "49a8ac1c23282fe86420f0b4527e522421f2f692" + }, + "required_dependencies": [], + "size": 231706, + "date_published": "2024-07-28T15:20:11.552091Z" } ] }, { - "pakku_id": "kE1Of9J2jBx1Wcvd", + "pakku_id": "6yDlL4nD3srqTbha", "type": "MOD", + "side": "SERVER", "slug": { - "curseforge": "async-locator" + "curseforge": "async-locator", + "modrinth": "async-locator" }, "name": { - "curseforge": "Async Locator" + "curseforge": "Async Locator", + "modrinth": "Async Locator" }, "id": { - "curseforge": "625069" + "curseforge": "625069", + "modrinth": "rkN8aqci" }, "files": [ { @@ -746,20 +1550,47 @@ "required_dependencies": [], "size": 264951, "date_published": "2023-06-22T18:24:14.363Z" + }, + { + "type": "modrinth", + "file_name": "async-locator-forge-1.20-1.3.0.jar", + "mc_versions": [ + "1.20", + "1.20.1", + "1.20.2" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/rkN8aqci/versions/Eip0qUwF/async-locator-forge-1.20-1.3.0.jar", + "id": "Eip0qUwF", + "parent_id": "rkN8aqci", + "hashes": { + "sha512": "84cfbd80bf0a5a53ffa42f1c154e8f5991f27e5924df011849693e00310a2654962f9d9e1aaa237931d8fcc2fe13bd2908f1cd92261b1fed8d5fa2b685d83194", + "sha1": "fa8e3d65644e5bf1ea62f1ba3c94b0982dfb7357" + }, + "required_dependencies": [], + "size": 264951, + "date_published": "2023-06-22T18:23:11.502437Z" } ] }, { - "pakku_id": "LF98eEXPxykgcSrI", + "pakku_id": "xehyEqR6wAypCeED", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "attributefix" + "curseforge": "attributefix", + "modrinth": "attributefix" }, "name": { - "curseforge": "AttributeFix" + "curseforge": "AttributeFix", + "modrinth": "AttributeFix" }, "id": { - "curseforge": "280510" + "curseforge": "280510", + "modrinth": "lOOpEntO" }, "files": [ { @@ -783,21 +1614,45 @@ "required_dependencies": [], "size": 19471, "date_published": "2023-11-29T11:27:43.890Z" + }, + { + "type": "modrinth", + "file_name": "AttributeFix-Forge-1.20.1-21.0.4.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/lOOpEntO/versions/Y42wjyly/AttributeFix-Forge-1.20.1-21.0.4.jar", + "id": "Y42wjyly", + "parent_id": "lOOpEntO", + "hashes": { + "sha512": "a4f1431c3abb23d97ae6d742721fcc2d1d97b6f9e72e492cc13f2471b608614b8cbbde513fa0a6f8d002f27168130850bf358d405cd2120c979927d7e88fe3d3", + "sha1": "6eb69343eb21d38f95d1b1d00e6bc777bdb336fa" + }, + "required_dependencies": [], + "size": 19471, + "date_published": "2023-11-29T11:27:52.410590Z" } ] }, { - "pakku_id": "379BaDcnVDR2UpIE", + "pakku_id": "nSmCtev3e7QZ1r7x", "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "badoptimizations" + "curseforge": "badoptimizations", + "modrinth": "badoptimizations" }, "name": { - "curseforge": "BadOptimizations" + "curseforge": "BadOptimizations", + "modrinth": "BadOptimizations" }, "id": { - "curseforge": "949555" + "curseforge": "949555", + "modrinth": "g96Z4WVZ" }, "files": [ { @@ -821,20 +1676,46 @@ "required_dependencies": [], "size": 452304, "date_published": "2025-07-08T01:49:43.307Z" + }, + { + "type": "modrinth", + "file_name": "BadOptimizations-2.3.0-1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "fabric", + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/g96Z4WVZ/versions/RPOjbIwJ/BadOptimizations-2.3.0-1.20.1.jar", + "id": "RPOjbIwJ", + "parent_id": "g96Z4WVZ", + "hashes": { + "sha512": "288638bd5e4d9163205006ddc06eb6d962abcf9c49b602eeef3389e56184deee7844037a7cd41f770d6088a063756380afe1a6c456668356dd56b238834c3c49", + "sha1": "b86ce6a5ed4f71a13f6d2976ffe6471cef29beb7" + }, + "required_dependencies": [], + "size": 452304, + "date_published": "2025-07-08T01:49:43.608348Z" } ] }, { - "pakku_id": "oKnJXlzNyfYcMTcv", + "pakku_id": "i6VxVERP0ZuJlfnt", "type": "MOD", + "side": "SERVER", "slug": { - "curseforge": "baguettelib" + "curseforge": "baguettelib", + "modrinth": "baguettelib" }, "name": { - "curseforge": "BaguetteLib" + "curseforge": "BaguetteLib", + "modrinth": "BaguetteLib" }, "id": { - "curseforge": "1264423" + "curseforge": "1264423", + "modrinth": "OfKzpbRU" }, "files": [ { @@ -860,22 +1741,70 @@ "required_dependencies": [], "size": 26550, "date_published": "2025-05-12T19:47:40.637Z" + }, + { + "type": "modrinth", + "file_name": "baguettelib-1.20.1-Forge-1.0.0.jar", + "mc_versions": [ + "1.20.1", + "1.20.4" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/OfKzpbRU/versions/OLS1YT3J/baguettelib-1.20.1-Forge-1.0.0.jar", + "id": "OLS1YT3J", + "parent_id": "OfKzpbRU", + "hashes": { + "sha512": "7bbd98f24b5ff9bb8665e4caa93f2862c850a9a692596024547e6fa94f074e0f3ab6f8fd7cb3e3d32bdd53f4cb3841d3752130cfeb05a5297fc7481a88709f6f", + "sha1": "bb17d8ed796efce38eb8fcc72ec477f3373e6c9f" + }, + "required_dependencies": [], + "size": 26550, + "date_published": "2025-06-25T13:03:42.486510Z" } ] }, { - "pakku_id": "eIMAkTQ4QJiCSZSg", + "pakku_id": "vcmbP1ZpBZtFq3zT", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "balm" + "curseforge": "balm", + "modrinth": "balm" }, "name": { - "curseforge": "Balm" + "curseforge": "Balm", + "modrinth": "Balm" }, "id": { - "curseforge": "531761" + "curseforge": "531761", + "modrinth": "MBAkmtvl" }, "files": [ + { + "type": "modrinth", + "file_name": "balm-forge-1.20.1-7.3.33-all.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/MBAkmtvl/versions/Et3eoKPd/balm-forge-1.20.1-7.3.33-all.jar", + "id": "Et3eoKPd", + "parent_id": "MBAkmtvl", + "hashes": { + "sha512": "d2ae5b6da42930735fd7132a67c4bd8a81cc44f686d680f73e7ffb686d0f873d408bff16153a9bff0651d888d0fe5473574c0d0d4f33ce564fbf3561beb4bbb5", + "sha1": "991d476a261027f2c3fef6545b6e24bcfee47de2" + }, + "required_dependencies": [], + "size": 596328, + "date_published": "2025-07-18T16:27:58.574138Z" + }, { "type": "curseforge", "file_name": "balm-forge-1.20.1-7.3.31-all.jar", @@ -901,16 +1830,24 @@ ] }, { - "pakku_id": "r9pIjqoIJQfPnvI9", + "pakku_id": "wlCxYqc4aEHg2Z52", + "pakku_links": [ + "0DMPJ1AWW6qfYubI", + "64uacGcEw697jVGs" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "barrels-2012" + "curseforge": "barrels-2012", + "modrinth": "barrels-2012" }, "name": { - "curseforge": "Barrels 2012" + "curseforge": "Barrels 2012", + "modrinth": "Barrels 2012" }, "id": { - "curseforge": "662156" + "curseforge": "662156", + "modrinth": "hnvFIZaX" }, "files": [ { @@ -937,20 +1874,52 @@ ], "size": 35236, "date_published": "2023-12-10T02:27:26.843Z" + }, + { + "type": "modrinth", + "file_name": "barrels_2012-2.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/hnvFIZaX/versions/moK5fhSI/barrels_2012-2.1.jar", + "id": "moK5fhSI", + "parent_id": "hnvFIZaX", + "hashes": { + "sha512": "b8e7072893dcb62d4382103894f47effd7e80585fee066dcc0e0ee2fae45a458a54d0d3f1893a9367e745f0adcd5602b794b28100976554881022e81d69202e0", + "sha1": "98ef976a9b356dce459fdd249ff19ad14fd375dd" + }, + "required_dependencies": [ + "vvuO3ImH", + "JaCEZUhg" + ], + "size": 35236, + "date_published": "2023-12-10T02:28:32.885026Z" } ] }, { - "pakku_id": "7Sh1pRd6UQEQu3Qc", + "pakku_id": "jfrdEXIw393ydoyH", + "pakku_links": [ + "64uacGcEw697jVGs" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "beneath" + "curseforge": "beneath", + "modrinth": "beneath" }, "name": { - "curseforge": "Beneath" + "curseforge": "Beneath", + "modrinth": "Beneath" }, "id": { - "curseforge": "1113980" + "curseforge": "1113980", + "modrinth": "6VieRZiz" }, "files": [ { @@ -976,20 +1945,52 @@ ], "size": 1500598, "date_published": "2025-02-11T01:11:10.830Z" + }, + { + "type": "modrinth", + "file_name": "beneath-1.20.1-1.0.4.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/6VieRZiz/versions/BPS3Bb2s/beneath-1.20.1-1.0.4.jar", + "id": "BPS3Bb2s", + "parent_id": "6VieRZiz", + "hashes": { + "sha512": "0e2ad7be3e389cb608fbe15c322de849ea05ebe890d8a015ff3e5dc9899cda90b1d1d73da25b57196ac0f0716ad9f6001aae8fe28f6851b1a1133c62267f8e45", + "sha1": "68fb9b544f582c45f7dc3402b2ae2f084d347a8b" + }, + "required_dependencies": [ + "JaCEZUhg" + ], + "size": 1500598, + "date_published": "2025-02-11T01:11:12.901644Z" } ] }, { - "pakku_id": "hn4E1S13hPaLVPSH", + "pakku_id": "vtaYhgPcR8nFk17t", + "pakku_links": [ + "oC0unMVGatUQIsDP", + "mYY02F5XR0fB6HXF" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "betterp2p" + "curseforge": "betterp2p", + "modrinth": "betterp2p" }, "name": { - "curseforge": "Better P2P" + "curseforge": "Better P2P", + "modrinth": "Better P2P" }, "id": { - "curseforge": "538092" + "curseforge": "538092", + "modrinth": "9DDxOvTJ" }, "files": [ { @@ -1016,21 +2017,50 @@ ], "size": 262302, "date_published": "2024-12-23T05:40:21.080Z" + }, + { + "type": "modrinth", + "file_name": "betterp2p-1.5.0-forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/9DDxOvTJ/versions/9fICjMvt/betterp2p-1.5.0-forge.jar", + "id": "9fICjMvt", + "parent_id": "9DDxOvTJ", + "hashes": { + "sha512": "ced1cd946fe0d0e8fef94ee4afad88f7f4e10f94a04b9c08a2fbd709b9d1b0a0b1b2af57d0607c779ef11f66e0ca631bb8dfdd992ed2a5a6cf20701274bbddbc", + "sha1": "ee1a5e156b230474db0a57ce78174fcb1cd351e2" + }, + "required_dependencies": [ + "ordsPcFz", + "lhGA9TYQ", + "XxWD5pD3" + ], + "size": 262299, + "date_published": "2024-12-23T06:40:12.557938Z" } ] }, { - "pakku_id": "s4MrtNacNksvbP3v", + "pakku_id": "zbAORPIH2IIM7Rc0", "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "better-ping-display" + "curseforge": "better-ping-display", + "modrinth": "better-ping-display" }, "name": { - "curseforge": "Better Ping Display" + "curseforge": "Better Ping Display", + "modrinth": "Better Ping Display [Forge/NeoForge]" }, "id": { - "curseforge": "292038" + "curseforge": "292038", + "modrinth": "ZvaHbwoZ" }, "files": [ { @@ -1053,21 +2083,45 @@ "required_dependencies": [], "size": 15889, "date_published": "2023-06-18T02:10:24.983Z" + }, + { + "type": "modrinth", + "file_name": "BetterPingDisplay-1.20.1-1.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/ZvaHbwoZ/versions/jXuIS25Y/BetterPingDisplay-1.20.1-1.1.jar", + "id": "jXuIS25Y", + "parent_id": "ZvaHbwoZ", + "hashes": { + "sha512": "dce676dd2ad95dc0ed1d4d5ebdbdc65880d8654a457c8e9e37c560ee985806b12f7f7503fb332a6873bc69059be6587635d037cb9160838e8f93218e1e7c6e20", + "sha1": "6347a5bff9405c59ec7d428e5e24115f5b17a90b" + }, + "required_dependencies": [], + "size": 15889, + "date_published": "2023-06-18T02:08:33.816718Z" } ] }, { - "pakku_id": "FfcQrNTIk6KM8Pau", + "pakku_id": "DveZsZzrJgpoTvck", "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "better-third-person" + "curseforge": "better-third-person", + "modrinth": "better-third-person" }, "name": { - "curseforge": "Better Third Person" + "curseforge": "Better Third Person", + "modrinth": "Better Third Person" }, "id": { - "curseforge": "435044" + "curseforge": "435044", + "modrinth": "G1s2WpNo" }, "files": [ { @@ -1095,21 +2149,48 @@ "required_dependencies": [], "size": 61525, "date_published": "2023-06-19T13:23:09.423Z" + }, + { + "type": "modrinth", + "file_name": "BetterThirdPerson-Forge-1.20-1.9.0.jar", + "mc_versions": [ + "1.20", + "1.20.1", + "1.20.2" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/G1s2WpNo/versions/XkYduFuv/BetterThirdPerson-Forge-1.20-1.9.0.jar", + "id": "XkYduFuv", + "parent_id": "G1s2WpNo", + "hashes": { + "sha512": "ae854893f17c3e42825e88119f4bd6be8948612494780194cb1c1cd5d65d571c91e7222c286cb734b3af363f927a6be8ad05347cd2c3fec6e1874b4aaac14c7b", + "sha1": "0b0a3ff3b244fa191b3f9580547071dee46f7276" + }, + "required_dependencies": [], + "size": 61525, + "date_published": "2023-09-25T17:49:19.507911Z" } ] }, { - "pakku_id": "YF0e81kWfKVfKx5m", + "pakku_id": "Yr24iolwXV9aFEWV", "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "blur-forge" + "curseforge": "blur-forge", + "modrinth": "blur-forge" }, "name": { - "curseforge": "Blur (Forge)" + "curseforge": "Blur (Forge)", + "modrinth": "Blur Forge (Unofficial)" }, "id": { - "curseforge": "823106" + "curseforge": "823106", + "modrinth": "o4Wx4DUB" }, "files": [ { @@ -1133,16 +2214,38 @@ "required_dependencies": [], "size": 177259, "date_published": "2023-11-27T16:15:39.520Z" + }, + { + "type": "modrinth", + "file_name": "blur-forge-3.1.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/o4Wx4DUB/versions/NOiJG3oF/blur-forge-3.1.1.jar", + "id": "NOiJG3oF", + "parent_id": "o4Wx4DUB", + "hashes": { + "sha512": "9d35f532c40ca55eb054188e6293b6f57eecdb748da9bdbf68a0c2567101c09d62ac66f652602f0567247fe0fc6f5fc4d95fdc6c034ee22544d4ff2d3ae723c3", + "sha1": "562f34155f3849463449aeb1ab54cc7064e4bc86" + }, + "required_dependencies": [], + "size": 177259, + "date_published": "2023-11-27T16:15:44.263909Z" } ] }, { - "pakku_id": "brUUIjlzdX34dgFd", + "pakku_id": "bDQUB8zljVVWf9mE", "type": "MOD", - "side": "SERVER", + "side": "BOTH", "slug": { "curseforge": "bookshelf", - "modrinth": "bookshelf" + "modrinth": "bookshelf-lib" }, "name": { "curseforge": "Bookshelf", @@ -1150,7 +2253,7 @@ }, "id": { "curseforge": "228525", - "modrinth": "VUkUwfUG" + "modrinth": "uy4Cnpcm" }, "files": [ { @@ -1174,20 +2277,45 @@ "required_dependencies": [], "size": 343962, "date_published": "2024-06-13T15:17:32.300Z" + }, + { + "type": "modrinth", + "file_name": "Bookshelf-Forge-1.20.1-20.2.13.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/uy4Cnpcm/versions/tNwsir0K/Bookshelf-Forge-1.20.1-20.2.13.jar", + "id": "tNwsir0K", + "parent_id": "uy4Cnpcm", + "hashes": { + "sha512": "1143753a001bccb3fc84c699cc93343f1941da9b7a63d3a3b8078808262b42962f8b10a2c16ed97a49c058865a6dbaa7e85a1e8842b95039d222f06ab4ee9509", + "sha1": "c53d9eb5ce9e8ef0f2ea9b11e478d84ce958c3e5" + }, + "required_dependencies": [], + "size": 343962, + "date_published": "2024-06-13T15:17:37.621721Z" } ] }, { - "pakku_id": "R14GIz0WdkeNLuXD", + "pakku_id": "EeaaUThaW8aM9QxU", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "botarium" + "curseforge": "botarium", + "modrinth": "botarium" }, "name": { - "curseforge": "Botarium" + "curseforge": "Botarium", + "modrinth": "Botarium" }, "id": { - "curseforge": "704113" + "curseforge": "704113", + "modrinth": "2u6LRnMa" }, "files": [ { @@ -1211,6 +2339,28 @@ "required_dependencies": [], "size": 157633, "date_published": "2024-06-29T17:38:58.730Z" + }, + { + "type": "modrinth", + "file_name": "botarium-forge-1.20.1-2.3.4.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/2u6LRnMa/versions/O7D6FTfW/botarium-forge-1.20.1-2.3.4.jar", + "id": "O7D6FTfW", + "parent_id": "2u6LRnMa", + "hashes": { + "sha512": "aa3530dde50966e47958690b02a343c4de3782d32ae3b2cb75b2155eebb76e172a292768d846b8d14a97bc9ebe18f1f655eaa3469fce13b2b4b15b16af0aba01", + "sha1": "a6928cb03b7c5f81900d3d3c8e8c8f6a89a51a5b" + }, + "required_dependencies": [], + "size": 157633, + "date_published": "2024-06-29T17:39:00.425265Z" } ] }, @@ -1289,16 +2439,23 @@ ] }, { - "pakku_id": "Y2789EQtsu4Lnvgv", + "pakku_id": "A31UAepqnKniFZnm", + "pakku_links": [ + "fR2my61zK1ySP67C" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "carpeted-stairs" + "curseforge": "carpeted-stairs", + "modrinth": "carpeted-stairs" }, "name": { - "curseforge": "Carpeted Stairs & Slabs" + "curseforge": "Carpeted Stairs & Slabs", + "modrinth": "Carpeted Stairs & Slabs" }, "id": { - "curseforge": "720848" + "curseforge": "720848", + "modrinth": "Ogzlp7me" }, "files": [ { @@ -1324,20 +2481,47 @@ ], "size": 81717, "date_published": "2023-06-25T13:50:29.323Z" + }, + { + "type": "modrinth", + "file_name": "carpeted-1.20-1.4.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/Ogzlp7me/versions/5v8AkQ8d/carpeted-1.20-1.4.jar", + "id": "5v8AkQ8d", + "parent_id": "Ogzlp7me", + "hashes": { + "sha512": "4c9932e314ed8b9db1947e5a1174d84261e2b1258224ec1583fe84c4b8451fa34e750a660113abd19a4866b06f48bc80dd266167a247a0b743afddc4e3a80d5c", + "sha1": "5f177a96a08454572723cf31fee9187c6bc1140e" + }, + "required_dependencies": [ + "twkfQtEc" + ], + "size": 81717, + "date_published": "2023-07-20T22:42:01.926447Z" } ] }, { - "pakku_id": "Ed3AhjFhJGqf6Dvx", + "pakku_id": "CwU4oSqS3kuq46sM", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "carry-on" + "curseforge": "carry-on", + "modrinth": "carry-on" }, "name": { - "curseforge": "Carry On" + "curseforge": "Carry On", + "modrinth": "Carry On" }, "id": { - "curseforge": "274259" + "curseforge": "274259", + "modrinth": "joEfVgkn" }, "files": [ { @@ -1362,66 +2546,46 @@ "required_dependencies": [], "size": 439457, "date_published": "2023-11-19T22:32:08.460Z" - } - ] - }, - { - "pakku_id": "xA6GfdWh9gq3ssA0", - "pakku_links": [ - "k6zIGpPrxPxbod8z" - ], - "type": "MOD", - "slug": { - "curseforge": "cerulean" - }, - "name": { - "curseforge": "Cerulean" - }, - "id": { - "curseforge": "1204890" - }, - "files": [ + }, { - "type": "curseforge", - "file_name": "cerulean-forge-1.0.0-1.20.1.jar", + "type": "modrinth", + "file_name": "carryon-forge-1.20.1-2.1.2.7.jar", "mc_versions": [ - "1.20.1", - "1.20" + "1.20", + "1.20.1" ], "loaders": [ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6489/710/cerulean-forge-1.0.0-1.20.1.jar", - "id": "6489710", - "parent_id": "1204890", + "url": "https://cdn.modrinth.com/data/joEfVgkn/versions/edGQD16r/carryon-forge-1.20.1-2.1.2.7.jar", + "id": "edGQD16r", + "parent_id": "joEfVgkn", "hashes": { - "sha1": "57697d040d21348173b4c06cb8fcb8536746525b", - "md5": "6e75d09000fa3a6a81b12b8450c61cb2" + "sha512": "4f75afb703dd71c322d4e2e27d28d7ab4afeb0c242bcee6d1eb5fef59ee4347352f1ca55f1826743957d2e95a951ed13884356485b0a979b14010915079e2c29", + "sha1": "9999714ca3dd2f2401f0396ca44f3b27c3784c4f" }, - "required_dependencies": [ - "1104882" - ], - "size": 524370, - "date_published": "2025-05-03T02:24:36.207Z" + "required_dependencies": [], + "size": 439457, + "date_published": "2023-11-19T22:29:28.090790Z" } ] }, { - "pakku_id": "wA5vGyxrH9IEtbiT", + "pakku_id": "jZhf9WEWkObAHuVp", "type": "MOD", "side": "BOTH", "slug": { "curseforge": "chalk", - "modrinth": "chalk" + "modrinth": "chalk-mod" }, "name": { "curseforge": "Chalk", - "modrinth": "Chalk (Fabric)" + "modrinth": "Chalk" }, "id": { "curseforge": "533748", - "modrinth": "OrtjXTCH" + "modrinth": "YWGP4Y1d" }, "files": [ { @@ -1444,21 +2608,45 @@ "required_dependencies": [], "size": 320854, "date_published": "2025-06-17T15:51:12.797Z" + }, + { + "type": "modrinth", + "file_name": "chalk-1.20.1-1.6.6.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/YWGP4Y1d/versions/tRKPNWEg/chalk-1.20.1-1.6.6.jar", + "id": "tRKPNWEg", + "parent_id": "YWGP4Y1d", + "hashes": { + "sha512": "c2c485321015847087c4724c768f5be7dffd24b1cb10be1e8e44f4dfcd42490dd6be82770c83ecba3344f93b4d66651c7bbc811f95ee300d889d11edf51b22f6", + "sha1": "4476abc4a3f707c2e82d91038972644d92752df5" + }, + "required_dependencies": [], + "size": 320854, + "date_published": "2025-06-17T15:50:40.420367Z" } ] }, { - "pakku_id": "en3mxv9RQRg48Ifc", + "pakku_id": "cKyAmxArdpeymIZZ", "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "chat-heads" + "curseforge": "chat-heads", + "modrinth": "chat-heads" }, "name": { - "curseforge": "Chat Heads" + "curseforge": "Chat Heads", + "modrinth": "Chat Heads" }, "id": { - "curseforge": "407206" + "curseforge": "407206", + "modrinth": "Wb5oqrBJ" }, "files": [ { @@ -1482,21 +2670,46 @@ "required_dependencies": [], "size": 269811, "date_published": "2025-05-01T09:28:33.300Z" + }, + { + "type": "modrinth", + "file_name": "chat_heads-0.13.18-forge-1.20.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/Wb5oqrBJ/versions/45EJNtBe/chat_heads-0.13.18-forge-1.20.jar", + "id": "45EJNtBe", + "parent_id": "Wb5oqrBJ", + "hashes": { + "sha512": "626e418bfab8262970533f790b76257d366b4f6ca595255dd6f6b09ba874bfcdcfad90d1a4136144efc5406c7313a7defef5e8787284ead276f7a52b4d9e5db1", + "sha1": "f775daaaa9ec1b6ec4ad0c217382f9d9a3565e18" + }, + "required_dependencies": [], + "size": 269811, + "date_published": "2025-05-01T09:28:29.620280Z" } ] }, { - "pakku_id": "nS7c6wbhkev84a9X", + "pakku_id": "aU4Y0IMA8QTVWjQi", "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "cherished-worlds" + "curseforge": "cherished-worlds", + "modrinth": "cherished-worlds" }, "name": { - "curseforge": "Cherished Worlds" + "curseforge": "Cherished Worlds", + "modrinth": "Cherished Worlds" }, "id": { - "curseforge": "308240" + "curseforge": "308240", + "modrinth": "3azQ6p0W" }, "files": [ { @@ -1520,20 +2733,46 @@ "required_dependencies": [], "size": 60956, "date_published": "2024-12-02T08:22:35.773Z" + }, + { + "type": "modrinth", + "file_name": "cherishedworlds-forge-6.1.7+1.20.1.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/3azQ6p0W/versions/Uwaq5LPL/cherishedworlds-forge-6.1.7+1.20.1.jar", + "id": "Uwaq5LPL", + "parent_id": "3azQ6p0W", + "hashes": { + "sha512": "473b066a5765b9205c453669e43437ac5d440d7de8a42dd4b50d97a917575740a725f825cada865ecfc02914012e78295e2e67e3161dffb8254a0e22061d65e1", + "sha1": "d3eb588c64691c9da83460e3b2e783401d337a34" + }, + "required_dependencies": [], + "size": 60956, + "date_published": "2024-12-02T08:22:34.314734Z" } ] }, { - "pakku_id": "f0QdBRi99S2vr8t6", + "pakku_id": "souzHQQB9HhNTn5r", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "chunky-pregenerator-forge" + "curseforge": "chunky-pregenerator-forge", + "modrinth": "chunky" }, "name": { - "curseforge": "Chunky (Forge/NeoForge)" + "curseforge": "Chunky (Forge/NeoForge)", + "modrinth": "Chunky" }, "id": { - "curseforge": "485681" + "curseforge": "485681", + "modrinth": "fALzjamp" }, "files": [ { @@ -1562,6 +2801,31 @@ "required_dependencies": [], "size": 341451, "date_published": "2024-05-06T07:10:57.567Z" + }, + { + "type": "modrinth", + "file_name": "Chunky-1.3.146.jar", + "mc_versions": [ + "1.20", + "1.20.1", + "1.20.2", + "1.20.3", + "1.20.4" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/fALzjamp/versions/4FTDk9wv/Chunky-1.3.146.jar", + "id": "4FTDk9wv", + "parent_id": "fALzjamp", + "hashes": { + "sha512": "13ef9d5bfea1895118eec45aa3071e2d79408241f29990624f67e157d4c525391753b0a1539ff3359dad79a6e5ab5e0b84fffbe528bdefcaaefd579ec794d9c9", + "sha1": "0b782d12b4ac3b03a94c28f32e9b2d5587d1dd50" + }, + "required_dependencies": [], + "size": 341451, + "date_published": "2024-05-06T07:28:42.102951Z" } ] }, @@ -1604,19 +2868,46 @@ ] }, { - "pakku_id": "PDE7RB7hlFnTfgkq", + "pakku_id": "09bmfAq7PxUxWfZP", "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "client-tweaks" + "curseforge": "client-tweaks", + "modrinth": "client-tweaks" }, "name": { - "curseforge": "Client Tweaks" + "curseforge": "Client Tweaks", + "modrinth": "Client Tweaks" }, "id": { - "curseforge": "251407" + "curseforge": "251407", + "modrinth": "vPNqo58Q" }, "files": [ + { + "type": "modrinth", + "file_name": "clienttweaks-forge-1.20.1-11.1.4.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/vPNqo58Q/versions/CgYDErri/clienttweaks-forge-1.20.1-11.1.4.jar", + "id": "CgYDErri", + "parent_id": "vPNqo58Q", + "hashes": { + "sha512": "5ebce9bc1517f588bf5627c236fd45a7d1e852f05791574d2f5dab4e53549247f401e0c0d39dc904c110392f9c320d4685c5a864fb73f1719c7febe5c159de24", + "sha1": "35a27c237edc88ce5a48b271a83ad3cf577fe8e4" + }, + "required_dependencies": [ + "MBAkmtvl" + ], + "size": 137803, + "date_published": "2025-07-17T13:16:41.315425Z" + }, { "type": "curseforge", "file_name": "clienttweaks-forge-1.20.1-11.1.3.jar", @@ -1644,16 +2935,20 @@ ] }, { - "pakku_id": "chnSa7MrxlvxvEWU", + "pakku_id": "3QJUyVc5jxbc7OFC", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "cloth-config" + "curseforge": "cloth-config", + "modrinth": "cloth-config" }, "name": { - "curseforge": "Cloth Config API (Fabric/Forge/NeoForge)" + "curseforge": "Cloth Config API (Fabric/Forge/NeoForge)", + "modrinth": "Cloth Config API" }, "id": { - "curseforge": "348521" + "curseforge": "348521", + "modrinth": "9s6osm5g" }, "files": [ { @@ -1678,20 +2973,46 @@ "required_dependencies": [], "size": 1181413, "date_published": "2024-09-16T17:13:48.940Z" + }, + { + "type": "modrinth", + "file_name": "cloth-config-11.1.136-forge.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/9s6osm5g/versions/t8TXrZvZ/cloth-config-11.1.136-forge.jar", + "id": "t8TXrZvZ", + "parent_id": "9s6osm5g", + "hashes": { + "sha512": "137c4af99c53d77317cbfb1cc8c49fc2761708b49d1992f51fd846960df41dde3a83519c987e081508d4ed90c603566f3d5a6cb620ad9d85b8f4de59aa9115ef", + "sha1": "c65d07748acc57ceb45d53b3964368b84f34d54f" + }, + "required_dependencies": [], + "size": 1181413, + "date_published": "2024-09-16T17:13:50.725690Z" } ] }, { - "pakku_id": "wgzcH5f2Nef4Ch9P", + "pakku_id": "WkkNIvKgtw8SFkOc", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "clumps" + "curseforge": "clumps", + "modrinth": "clumps" }, "name": { - "curseforge": "Clumps" + "curseforge": "Clumps", + "modrinth": "Clumps" }, "id": { - "curseforge": "256717" + "curseforge": "256717", + "modrinth": "Wnxd13zP" }, "files": [ { @@ -1714,20 +3035,45 @@ "required_dependencies": [], "size": 20299, "date_published": "2024-04-21T05:04:02.807Z" + }, + { + "type": "modrinth", + "file_name": "Clumps-forge-1.20.1-12.0.0.4.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/Wnxd13zP/versions/nAHGB5ls/Clumps-forge-1.20.1-12.0.0.4.jar", + "id": "nAHGB5ls", + "parent_id": "Wnxd13zP", + "hashes": { + "sha512": "ffd8ff2438e9f9d260d3926ccdd0cccc4772c6f99f29715690aed4f6e97a76035f3aeaa78168e2a458bc4cccf521e97ebdb6e0b61c819facb04af9ebb3638383", + "sha1": "8809c7aa6c71389e9c59abfe5def52c1cb8d4f1c" + }, + "required_dependencies": [], + "size": 20300, + "date_published": "2024-04-21T05:04:09.708311Z" } ] }, { - "pakku_id": "B07NtSrb9rBpr3A6", + "pakku_id": "fYzrRo2M24y3MX3e", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "coastal-waves" + "curseforge": "coastal-waves", + "modrinth": "coastal-waves" }, "name": { - "curseforge": "Coastal Waves" + "curseforge": "Coastal Waves", + "modrinth": "Coastal Waves" }, "id": { - "curseforge": "1155936" + "curseforge": "1155936", + "modrinth": "2ygdYUcf" }, "files": [ { @@ -1751,20 +3097,46 @@ "required_dependencies": [], "size": 1278005, "date_published": "2025-03-27T02:35:35.863Z" + }, + { + "type": "modrinth", + "file_name": "Waves-1.20.1-1.5.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/2ygdYUcf/versions/X5VAOq7P/Waves-1.20.1-1.5.1.jar", + "id": "X5VAOq7P", + "parent_id": "2ygdYUcf", + "hashes": { + "sha512": "6eac3cee76b7543ff0d565752ab2272db36d8f4af6646b3c4434955e8527aec5b509aac79dd218227c2b739e390b3c9432fa0690eb2ccb88202fe0ae0d25fd56", + "sha1": "dbbc8dfa855b3af469a48eb55687eb7363246263" + }, + "required_dependencies": [], + "size": 1278005, + "date_published": "2025-03-27T02:37:13.337751Z" } ] }, { - "pakku_id": "JazUDTf3CXItzjiC", + "pakku_id": "5keVSCWAjv565k8f", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "comforts" + "curseforge": "comforts", + "modrinth": "comforts" }, "name": { - "curseforge": "Comforts (Fabric/Forge/Quilt)" + "curseforge": "Comforts (Fabric/Forge/Quilt)", + "modrinth": "Comforts" }, "id": { - "curseforge": "276951" + "curseforge": "276951", + "modrinth": "SaCpeal4" }, "files": [ { @@ -1789,20 +3161,47 @@ "required_dependencies": [], "size": 382083, "date_published": "2024-07-05T03:34:48.973Z" + }, + { + "type": "modrinth", + "file_name": "comforts-forge-6.4.0+1.20.1.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/SaCpeal4/versions/gBDsc134/comforts-forge-6.4.0+1.20.1.jar", + "id": "gBDsc134", + "parent_id": "SaCpeal4", + "hashes": { + "sha512": "5f8bc01de36814bbea454ad306efd6b7ae9de933117fe8c1197a13454804e4b71ddd0685a24ace45b81527a8489d4081f7e75b6c5d3f7d7c8f791520407fac09", + "sha1": "e7b9fe89566bb1ee013e33745f22f309f679536e" + }, + "required_dependencies": [], + "size": 382083, + "date_published": "2024-07-05T03:34:46.901956Z" } ] }, { - "pakku_id": "On44S9fQbI0vVJTW", + "pakku_id": "FSZCR19k6ZVXOZLa", "type": "RESOURCE_PACK", + "side": "CLIENT", "slug": { - "curseforge": "computercraft-greg-flavored" + "curseforge": "computercraft-greg-flavored", + "modrinth": "computercraft-greg-flavored" }, "name": { - "curseforge": "ComputerCraft: Greg Flavored" + "curseforge": "ComputerCraft: Greg Flavored", + "modrinth": "ComputerCraft Greg Flavored" }, "id": { - "curseforge": "1061743" + "curseforge": "1061743", + "modrinth": "X4yzdg2X" }, "files": [ { @@ -1828,20 +3227,53 @@ "required_dependencies": [], "size": 957439, "date_published": "2024-07-24T09:35:57.853Z" + }, + { + "type": "modrinth", + "file_name": "ComputerCraft Greg Refreshed 1.1 - 1.20.1.zip", + "mc_versions": [ + "1.19.4", + "1.20", + "1.20.1", + "1.20.2", + "1.20.3", + "1.20.4", + "1.20.5", + "1.20.6", + "1.21" + ], + "loaders": [ + "minecraft" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/X4yzdg2X/versions/TTkZyh1f/ComputerCraft Greg Refreshed 1.1 - 1.20.1.zip", + "id": "TTkZyh1f", + "parent_id": "X4yzdg2X", + "hashes": { + "sha512": "747ea2044ea90b7292528822cb75d0b850464c99227987ba792ddd559cab3b525e59c612918e5da658943955f180a2b7de03364ed24b210d16d4e9cae177f038", + "sha1": "6d1d3642537c40ea813507379941773a49c62f28" + }, + "required_dependencies": [], + "size": 957439, + "date_published": "2024-07-24T09:41:49.400091Z" } ] }, { - "pakku_id": "MaU4DxZPJWpFlsaT", + "pakku_id": "oB3af5YYb5fCmYxM", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "construction-wand" + "curseforge": "construction-wand", + "modrinth": "construction-wand" }, "name": { - "curseforge": "Construction Wand" + "curseforge": "Construction Wand", + "modrinth": "Construction Wand" }, "id": { - "curseforge": "399558" + "curseforge": "399558", + "modrinth": "bV2crgLh" }, "files": [ { @@ -1865,24 +3297,49 @@ "required_dependencies": [], "size": 210312, "date_published": "2023-08-05T20:02:14.447Z" + }, + { + "type": "modrinth", + "file_name": "constructionwand-1.20.1-2.11.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/bV2crgLh/versions/XCgKj8gL/constructionwand-1.20.1-2.11.jar", + "id": "XCgKj8gL", + "parent_id": "bV2crgLh", + "hashes": { + "sha512": "a029f801dbcfacd230650fd018f7424535454fb2062d796cbe9cd622a9fe4ae80cb0d7883faa2775c27ed73a21dffbadb44ddc32ce1293ec098654393e7b1c95", + "sha1": "80bd5223cd8984dc1038cb9f2d1cb6b97f31998a" + }, + "required_dependencies": [], + "size": 210312, + "date_published": "2023-08-05T20:03:02.535254Z" } ] }, { - "pakku_id": "e9njF4x9hPJPijF4", + "pakku_id": "KVjmpu4kzqvk0WeB", "pakku_links": [ - "QdAjCgrfEUQQjMWE" + "kn8PVkGiPXUjY3L7" ], "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "controlling" + "curseforge": "controlling", + "modrinth": "controlling" }, "name": { - "curseforge": "Controlling" + "curseforge": "Controlling", + "modrinth": "Controlling" }, "id": { - "curseforge": "250398" + "curseforge": "250398", + "modrinth": "xv94TkTM" }, "files": [ { @@ -1907,20 +3364,47 @@ ], "size": 115280, "date_published": "2023-07-16T04:39:22.697Z" + }, + { + "type": "modrinth", + "file_name": "Controlling-forge-1.20.1-12.0.2.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/xv94TkTM/versions/LH6Bi6Am/Controlling-forge-1.20.1-12.0.2.jar", + "id": "LH6Bi6Am", + "parent_id": "xv94TkTM", + "hashes": { + "sha512": "3945bf3f6d843957f13584dfc70bede253d1e48f0dcb96f647fbcc6fcd3d1748a0dd9c6ca5c882e07a41f98eb84057934f51e43ab6023ed0a19695de2e6fe9f5", + "sha1": "6195a3d1464f8fb641d7e165163aea1a857ce08e" + }, + "required_dependencies": [ + "fuuu3xnx" + ], + "size": 115280, + "date_published": "2023-07-16T04:39:30.644589Z" } ] }, { - "pakku_id": "dDXUSBarDdCDG7Y5", + "pakku_id": "CyISC0hDehFhsqVb", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "corpse" + "curseforge": "corpse", + "modrinth": "corpse" }, "name": { - "curseforge": "Corpse" + "curseforge": "Corpse", + "modrinth": "Corpse" }, "id": { - "curseforge": "316582" + "curseforge": "316582", + "modrinth": "WrpuIfhw" }, "files": [ { @@ -1943,23 +3427,48 @@ "required_dependencies": [], "size": 245618, "date_published": "2025-06-07T07:02:24.647Z" + }, + { + "type": "modrinth", + "file_name": "corpse-forge-1.20.1-1.0.21.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/WrpuIfhw/versions/AQNfDafD/corpse-forge-1.20.1-1.0.21.jar", + "id": "AQNfDafD", + "parent_id": "WrpuIfhw", + "hashes": { + "sha512": "efa706eef95c18d163ca6c96fd424215ddec663f0a7ea201298c48dfb95739a18d5eb778088460e2b8abc9ad6c5f88ec9cf9f6a0e8acf5fd8344a638c5638622", + "sha1": "28a8acf26ea41661b1a2d395f673433c495743be" + }, + "required_dependencies": [], + "size": 245618, + "date_published": "2025-06-07T07:02:35.673314Z" } ] }, { - "pakku_id": "v5lo2gHNUaKnn445", + "pakku_id": "tIc0aOMFiuJNztfY", "pakku_links": [ - "oKnJXlzNyfYcMTcv" + "0DMPJ1AWW6qfYubI" ], "type": "MOD", + "side": "SERVER", "slug": { - "curseforge": "corpse-x-curios-api-compat" + "curseforge": "corpse-x-curios-api-compat", + "modrinth": "corpse-x-curios-api-compat" }, "name": { - "curseforge": "Corpse x Curios API Compat" + "curseforge": "Corpse x Curios API Compat", + "modrinth": "Corpse x Curios API Compat" }, "id": { - "curseforge": "1138130" + "curseforge": "1138130", + "modrinth": "pJGcKPh1" }, "files": [ { @@ -1989,6 +3498,32 @@ ], "size": 12495, "date_published": "2025-06-05T08:45:11.493Z" + }, + { + "type": "modrinth", + "file_name": "corpsecurioscompat-1.20.x-Forge-3.0.2.jar", + "mc_versions": [ + "1.20.1", + "1.20.2", + "1.20.3", + "1.20.4" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/pJGcKPh1/versions/WlXDIt4w/corpsecurioscompat-1.20.x-Forge-3.0.2.jar", + "id": "WlXDIt4w", + "parent_id": "pJGcKPh1", + "hashes": { + "sha512": "fd41651ff891977acfb2b74ea1738c3259435fdc38f887c8ec7073979faebda27adcd3d65cbb9b3fc98a17edd8df05800b5277ff3687ca0c72e2e4bb71f3be6e", + "sha1": "946d6cc5055eac39900ff252cd2eb72caf95e4ac" + }, + "required_dependencies": [ + "OfKzpbRU" + ], + "size": 12495, + "date_published": "2025-07-11T09:30:13.847826Z" } ] }, @@ -2029,20 +3564,23 @@ ] }, { - "pakku_id": "NM1zMKHrKSwih7rW", + "pakku_id": "FWUslNlfrCLR1dXa", "pakku_links": [ - "dvvP2ZxrASA5e2dq" + "Osj3mktzthdVRa2j" ], "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "craftpresence" + "curseforge": "craftpresence", + "modrinth": "craftpresence" }, "name": { - "curseforge": "CraftPresence" + "curseforge": "CraftPresence", + "modrinth": "CraftPresence" }, "id": { - "curseforge": "297038" + "curseforge": "297038", + "modrinth": "DFqQfIBR" }, "files": [ { @@ -2069,22 +3607,75 @@ ], "size": 2056964, "date_published": "2025-05-09T04:04:01.557Z" + }, + { + "type": "modrinth", + "file_name": "CraftPresence-2.6.1+1.20.1-forge.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/DFqQfIBR/versions/8ivWOeJm/CraftPresence-2.6.1+1.20.1-forge.jar", + "id": "8ivWOeJm", + "parent_id": "DFqQfIBR", + "hashes": { + "sha512": "bd3a6d3751144789c09714db47228f8cf92e097850338f67ef52a36bc3b6b7297b60192a4a303d199583a54e523b8b653093c07da97d1dc292064d16a1fc0779", + "sha1": "ec17e954eb020279e12dfcd08ce57470301912a4" + }, + "required_dependencies": [ + "nT86WUER" + ], + "size": 2056964, + "date_published": "2025-05-09T04:04:24.292558Z" } ] }, { - "pakku_id": "xxKulnuM7t8PVAn8", + "pakku_id": "iVxwBkSQPuiTe33a", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "crafting-tweaks" + "curseforge": "crafting-tweaks", + "modrinth": "crafting-tweaks" }, "name": { - "curseforge": "Crafting Tweaks" + "curseforge": "Crafting Tweaks", + "modrinth": "Crafting Tweaks" }, "id": { - "curseforge": "233071" + "curseforge": "233071", + "modrinth": "DMu0oBKf" }, "files": [ + { + "type": "modrinth", + "file_name": "craftingtweaks-forge-1.20.1-18.2.6.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/DMu0oBKf/versions/umzsWJQd/craftingtweaks-forge-1.20.1-18.2.6.jar", + "id": "umzsWJQd", + "parent_id": "DMu0oBKf", + "hashes": { + "sha512": "38da2aa5175e0257f93b5f3a0edb6fd54530e30c8c6d2dfaec50c03cb774a0abbc5d4b666cf4cee4bc64f977287a801a8a3e7ce97167dd0306401c1a148536e7", + "sha1": "f2091c7b171f1104bb22434d5b4a01ad678cdaf9" + }, + "required_dependencies": [ + "MBAkmtvl" + ], + "size": 230973, + "date_published": "2025-07-18T18:10:04.531033Z" + }, { "type": "curseforge", "file_name": "craftingtweaks-forge-1.20.1-18.2.5.jar", @@ -2112,16 +3703,20 @@ ] }, { - "pakku_id": "uVbUdFV45MyAZK2W", + "pakku_id": "UK4MA17BjQa9613t", "type": "MOD", + "side": "SERVER", "slug": { - "curseforge": "crashexploitfixer" + "curseforge": "crashexploitfixer", + "modrinth": "crashexploitfixer" }, "name": { - "curseforge": "CrashExploitFixer" + "curseforge": "CrashExploitFixer", + "modrinth": "CrashExploitFixer" }, "id": { - "curseforge": "1079896" + "curseforge": "1079896", + "modrinth": "Z5GdSH3X" }, "files": [ { @@ -2145,20 +3740,66 @@ "required_dependencies": [], "size": 688719, "date_published": "2024-08-08T17:46:25.420Z" + }, + { + "type": "modrinth", + "file_name": "crashexploitfixer-forge-1.1.0+1.20.1.jar", + "mc_versions": [ + "1.14.4", + "1.15", + "1.15.1", + "1.15.2", + "1.16", + "1.16.1", + "1.16.2", + "1.16.3", + "1.16.4", + "1.16.5", + "1.17", + "1.17.1", + "1.18", + "1.18.1", + "1.18.2", + "1.19", + "1.19.1", + "1.19.2", + "1.19.3", + "1.19.4", + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/Z5GdSH3X/versions/rUAY9w44/crashexploitfixer-forge-1.1.0+1.20.1.jar", + "id": "rUAY9w44", + "parent_id": "Z5GdSH3X", + "hashes": { + "sha512": "766f82907da30581adebfee93c75814e72251b0d89c2590cc48518c02ea3ec72f59e602aaae0d168b8b54053cd30c976c6d8384a03a594090f105deb43268767", + "sha1": "5dec3209e6dbb6c4fa06fb544e797608a1d58014" + }, + "required_dependencies": [], + "size": 688719, + "date_published": "2024-08-08T17:46:27.034093Z" } ] }, { - "pakku_id": "0r9Ghrm3IbrHUVzA", + "pakku_id": "Nw8xTCQngHA15ilh", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "create" + "curseforge": "create", + "modrinth": "create" }, "name": { - "curseforge": "Create" + "curseforge": "Create", + "modrinth": "Create" }, "id": { - "curseforge": "328085" + "curseforge": "328085", + "modrinth": "LNytGWDc" }, "files": [ { @@ -2182,20 +3823,46 @@ "required_dependencies": [], "size": 18764522, "date_published": "2025-06-11T21:37:11.767Z" + }, + { + "type": "modrinth", + "file_name": "create-1.20.1-6.0.6.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/LNytGWDc/versions/JjPQsQVw/create-1.20.1-6.0.6.jar", + "id": "JjPQsQVw", + "parent_id": "LNytGWDc", + "hashes": { + "sha512": "efc7097430ff2e7fe5e54478efbefc52d0017762b59372878a03f79f4eb0446572290bf377e8aba8374f3a9932fdf1cefd4a4650a9a5f3cf6ab0ad9fd05cc30b", + "sha1": "c5eb5efad7a4776d558b44b28891f2e33eef03e4" + }, + "required_dependencies": [], + "size": 18764522, + "date_published": "2025-06-11T21:37:13.316377Z" } ] }, { - "pakku_id": "FWT87eqo7GVCcP0b", + "pakku_id": "Nj1lqdnKNze1Ugd1", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "createaddition" + "curseforge": "createaddition", + "modrinth": "createaddition" }, "name": { - "curseforge": "Create Crafts & Additions" + "curseforge": "Create Crafts & Additions", + "modrinth": "Create Crafts & Additions" }, "id": { - "curseforge": "439890" + "curseforge": "439890", + "modrinth": "kU1G12Nn" }, "files": [ { @@ -2218,20 +3885,47 @@ "required_dependencies": [], "size": 1547196, "date_published": "2025-03-15T13:17:38.737Z" + }, + { + "type": "modrinth", + "file_name": "createaddition-1.20.1-1.3.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/kU1G12Nn/versions/SecVSw22/createaddition-1.20.1-1.3.1.jar", + "id": "SecVSw22", + "parent_id": "kU1G12Nn", + "hashes": { + "sha512": "d9fd62d5041670e3194848624672674b2ef23a88348f30968574803786da0a56b3d34a1ab7e542d6666cd3983d88fbedce08b2c56165a464fee7e3c383c07ad5", + "sha1": "0c408317b7c3bc3c7f7d5f6dbbb3ee106fa5f4fc" + }, + "required_dependencies": [ + "LNytGWDc" + ], + "size": 1547196, + "date_published": "2025-03-22T16:14:26.357192Z" } ] }, { - "pakku_id": "R3tiFEY1J6AhkGe6", + "pakku_id": "X7MkJHSkYW92O4HM", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "create-deco" + "curseforge": "create-deco", + "modrinth": "create-deco" }, "name": { - "curseforge": "Create Deco" + "curseforge": "Create Deco", + "modrinth": "Create Deco" }, "id": { - "curseforge": "509285" + "curseforge": "509285", + "modrinth": "sMvUb4Rb" }, "files": [ { @@ -2254,20 +3948,47 @@ "required_dependencies": [], "size": 3509013, "date_published": "2025-04-01T04:12:15.583Z" + }, + { + "type": "modrinth", + "file_name": "createdeco-2.0.3-1.20.1-forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/sMvUb4Rb/versions/e9gaSRMd/createdeco-2.0.3-1.20.1-forge.jar", + "id": "e9gaSRMd", + "parent_id": "sMvUb4Rb", + "hashes": { + "sha512": "50b7e9bb7b09d720160b2491528f2ab751ad2299541be75cc6941e6b6c3d2d40faff5c5fa07a1bea9e3f43b73146ef6e0fdf6a106e65246b9767dd81053766bf", + "sha1": "54c8ad5686b846310bca9e69982a455e668dede3" + }, + "required_dependencies": [ + "LNytGWDc" + ], + "size": 3509013, + "date_published": "2025-04-01T04:19:20.227934Z" } ] }, { - "pakku_id": "AkHN0rdiPZGbRyXS", + "pakku_id": "H0vX4ZdFaJZ5H3ju", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "create-factory-logistics" + "curseforge": "create-factory-logistics", + "modrinth": "create_factory_logistics" }, "name": { - "curseforge": "Create Factory Logistics" + "curseforge": "Create Factory Logistics", + "modrinth": "Create Factory Logistics" }, "id": { - "curseforge": "1218807" + "curseforge": "1218807", + "modrinth": "QMGO17gm" }, "files": [ { @@ -2290,20 +4011,45 @@ "required_dependencies": [], "size": 1082428, "date_published": "2025-07-13T08:41:15.490Z" + }, + { + "type": "modrinth", + "file_name": "create_factory_logistics-1.20.1-1.4.5.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "beta", + "url": "https://cdn.modrinth.com/data/QMGO17gm/versions/sh99tkPX/create_factory_logistics-1.20.1-1.4.5.jar", + "id": "sh99tkPX", + "parent_id": "QMGO17gm", + "hashes": { + "sha512": "6e3c43e506ac2166eea0d070641dd4f9180543e1fb5765138296dcbdb5f59f4aea01ead8c8a1c049d70ab8cb7d093535ddc196cee1a48c01ee3572f639e772af", + "sha1": "5c2c2a416000273b8503a7ec666bc9325cb5707b" + }, + "required_dependencies": [], + "size": 1082428, + "date_published": "2025-07-13T08:41:15.583247Z" } ] }, { - "pakku_id": "TZkCVkZyDgRfflgE", + "pakku_id": "rLyHGqTvGY2zL0KW", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "create-horse-power" + "curseforge": "create-horse-power", + "modrinth": "create-horse-power" }, "name": { - "curseforge": "Create Horse Power" + "curseforge": "Create Horse Power", + "modrinth": "Create Horse Power" }, "id": { - "curseforge": "1121632" + "curseforge": "1121632", + "modrinth": "9Qm19XSM" }, "redistributable": false, "files": [ @@ -2327,20 +4073,47 @@ "required_dependencies": [], "size": 258705, "date_published": "2025-05-10T04:44:32.127Z" + }, + { + "type": "modrinth", + "file_name": "createhorsepower-1.0.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/9Qm19XSM/versions/U0KKv9fU/createhorsepower-1.0.1.jar", + "id": "U0KKv9fU", + "parent_id": "9Qm19XSM", + "hashes": { + "sha512": "4a8a30e5601783d214e96310cd71447054f0d2ac7545e7996b15161184ae4cace8fa556e84728aee3d37b639de029ca6c5d6cca3d12f637eb26c6aa77a9c819c", + "sha1": "8ff20e3a91d86f5b188ff11a0aca979c62f21a53" + }, + "required_dependencies": [ + "LNytGWDc" + ], + "size": 258705, + "date_published": "2025-05-10T04:41:21.145727Z" } ] }, { - "pakku_id": "XuTDbBfOfSSK19FI", + "pakku_id": "Fu7EpxmtyqTkOiMR", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "create-connected" + "curseforge": "create-connected", + "modrinth": "create-connected" }, "name": { - "curseforge": "Create: Connected" + "curseforge": "Create: Connected", + "modrinth": "Create: Connected" }, "id": { - "curseforge": "947914" + "curseforge": "947914", + "modrinth": "Vg5TIO6d" }, "files": [ { @@ -2366,25 +4139,82 @@ ], "size": 6564769, "date_published": "2025-06-23T05:25:01.437Z" + }, + { + "type": "modrinth", + "file_name": "create_connected-1.1.7-mc1.20.1-all.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/Vg5TIO6d/versions/HMzC945H/create_connected-1.1.7-mc1.20.1-all.jar", + "id": "HMzC945H", + "parent_id": "Vg5TIO6d", + "hashes": { + "sha512": "647418a320bf722c280b452df54e78dc5deb351ac586ffb2fb8a89ae4784771c4bd4ee17c16efc15d8d705e299521aaa6150bb9e3ab6962fe1c23312c87d2328", + "sha1": "19a6e467dc5e2345c698bfdbe43a7823ff9f7d3f" + }, + "required_dependencies": [ + "LNytGWDc" + ], + "size": 6564769, + "date_published": "2025-06-23T05:25:01.309738Z" } ] }, { - "pakku_id": "pCeI0LXh7ieTrU8V", + "pakku_id": "NnX7LmflX7AOHEeC", "pakku_links": [ - "0r9Ghrm3IbrHUVzA" + "Nw8xTCQngHA15ilh" ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "hypertubes" + "curseforge": "hypertubes", + "modrinth": "hypertube" }, "name": { - "curseforge": "Create: Hypertubes" + "curseforge": "Create: Hypertubes", + "modrinth": "Create: Hypertubes" }, "id": { - "curseforge": "1281336" + "curseforge": "1281336", + "modrinth": "ATDdrG1y" }, "files": [ + { + "type": "modrinth", + "file_name": "create_hypertube-0.2.3-FORGE.jar", + "mc_versions": [ + "1.20.1", + "1.20.2", + "1.20.3", + "1.20.4", + "1.20.5", + "1.20.6" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "beta", + "url": "https://cdn.modrinth.com/data/ATDdrG1y/versions/29xx8WYd/create_hypertube-0.2.3-FORGE.jar", + "id": "29xx8WYd", + "parent_id": "ATDdrG1y", + "hashes": { + "sha512": "a68a604423b609e699b0bd1b0588e04b0e0b946af40ca654e203cb89f4fddcac2c980f233240fe1507bb172f35e5ebac0c2f9bdbe3a0312abbc47c9ecdfabf18", + "sha1": "15fecf45a7da064af350847c259903af18b6007b" + }, + "required_dependencies": [ + "LNytGWDc" + ], + "size": 310156, + "date_published": "2025-07-19T00:59:05.441048Z" + }, { "type": "curseforge", "file_name": "create_hypertube-0.2.2-FORGE.jar", @@ -2412,49 +4242,20 @@ ] }, { - "pakku_id": "PlkjJZdydA94ByHb", - "type": "RESOURCE_PACK", - "slug": { - "curseforge": "create-old-copper-stuffs" - }, - "name": { - "curseforge": "Create: Old Copper Stuffs" - }, - "id": { - "curseforge": "1210517" - }, - "files": [ - { - "type": "curseforge", - "file_name": "Old Copper Stuffs v1.8.zip", - "mc_versions": [ - "1.20.1" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6375/378/Old Copper Stuffs v1.8.zip", - "id": "6375378", - "parent_id": "1210517", - "hashes": { - "sha1": "9c547abd2c3858d634863c9e9349bc2f82e0f502", - "md5": "bbc3136cb5f6e6f1c0ada7286af18a7d" - }, - "required_dependencies": [], - "size": 315827, - "date_published": "2025-04-01T18:57:31.590Z" - } - ] - }, - { - "pakku_id": "FGfjSFTKVV6OyiEW", + "pakku_id": "44GxMgEFkWpmSaA7", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "create-steam-n-rails" + "curseforge": "create-steam-n-rails", + "modrinth": "create-steam-n-rails" }, "name": { - "curseforge": "Create: Steam 'n' Rails" + "curseforge": "Create: Steam 'n' Rails", + "modrinth": "Create: Steam 'n' Rails" }, "id": { - "curseforge": "688231" + "curseforge": "688231", + "modrinth": "ZzjhlDgM" }, "files": [ { @@ -2480,20 +4281,48 @@ ], "size": 10111314, "date_published": "2025-06-23T21:54:57.917Z" + }, + { + "type": "modrinth", + "file_name": "Steam_Rails-1.6.11-alpha+forge-mc1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "alpha", + "url": "https://cdn.modrinth.com/data/ZzjhlDgM/versions/miLFDQNQ/Steam_Rails-1.6.11-alpha+forge-mc1.20.1.jar", + "id": "miLFDQNQ", + "parent_id": "ZzjhlDgM", + "hashes": { + "sha512": "5352b3be7dc800be4727f84bbc75050d4a81b1f220637188b0e9f411ad9ecd01ea3d9392165ec55574700d8c9fb8cfc930e9e3e6f87cc3d65022734a776da239", + "sha1": "22744c2e0c9b7f6b238de7b8cbd90fe1ed6be559" + }, + "required_dependencies": [ + "LNytGWDc" + ], + "size": 10111314, + "date_published": "2025-06-23T21:55:01.203935Z" } ] }, { - "pakku_id": "WLBp9cajd3ZyDeek", + "pakku_id": "akHy85nANe33zAFR", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "creativecore" + "curseforge": "creativecore", + "modrinth": "creativecore" }, "name": { - "curseforge": "CreativeCore" + "curseforge": "CreativeCore", + "modrinth": "CreativeCore" }, "id": { - "curseforge": "257814" + "curseforge": "257814", + "modrinth": "OsZiaDHq" }, "files": [ { @@ -2517,20 +4346,46 @@ "required_dependencies": [], "size": 1158417, "date_published": "2025-04-04T12:49:16.510Z" + }, + { + "type": "modrinth", + "file_name": "CreativeCore_FORGE_v2.12.32_mc1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/OsZiaDHq/versions/IbFWHI5h/CreativeCore_FORGE_v2.12.32_mc1.20.1.jar", + "id": "IbFWHI5h", + "parent_id": "OsZiaDHq", + "hashes": { + "sha512": "7f7c684a35020a0327e31f5521a363d1c29312a22839c69c5dbdf51d77428298dbd0ca685166c06d8426010448e777e087e141fef6b5093fd67cb73c4bd51f8a", + "sha1": "d49e8c29748677d0a530432f1c1bda4e9865da00" + }, + "required_dependencies": [], + "size": 1158417, + "date_published": "2025-04-04T12:49:13.885436Z" } ] }, { - "pakku_id": "vz9GyQXv94EBEo76", + "pakku_id": "k8THiEMwITgKpWIE", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "cucumber" + "curseforge": "cucumber", + "modrinth": "cucumber" }, "name": { - "curseforge": "Cucumber Library" + "curseforge": "Cucumber Library", + "modrinth": "Cucumber Library" }, "id": { - "curseforge": "272335" + "curseforge": "272335", + "modrinth": "Rw1NrDzF" }, "files": [ { @@ -2553,57 +4408,45 @@ "required_dependencies": [], "size": 269589, "date_published": "2025-06-21T21:06:53.023Z" - } - ] - }, - { - "pakku_id": "GOh1ocuoLHhYMq2J", - "type": "MOD", - "slug": { - "curseforge": "cupboard" - }, - "name": { - "curseforge": "Cupboard" - }, - "id": { - "curseforge": "326652" - }, - "files": [ + }, { - "type": "curseforge", - "file_name": "cupboard-1.20.1-2.7.jar", + "type": "modrinth", + "file_name": "Cucumber-1.20.1-7.0.14.jar", "mc_versions": [ "1.20.1" ], "loaders": [ - "neoforge", "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/5470/32/cupboard-1.20.1-2.7.jar", - "id": "5470032", - "parent_id": "326652", + "url": "https://cdn.modrinth.com/data/Rw1NrDzF/versions/HlbDwsPk/Cucumber-1.20.1-7.0.14.jar", + "id": "HlbDwsPk", + "parent_id": "Rw1NrDzF", "hashes": { - "sha1": "204bc8aa83e8a685f64311b72d55505ab2eca867", - "md5": "3620912474f47bf58d1fe5bfe133763a" + "sha512": "8b86f68b07eed47b989eefcf38f2ac8f0589b976c8ddc7b8ef00e25738e0fe1754f9d2cb0f2f287049e5da548380b95fab6f9631a55b323bcc419719d0e716ad", + "sha1": "1d1f273c170dc4a2b5ff74216391838f453e536f" }, "required_dependencies": [], - "size": 25983, - "date_published": "2024-06-24T20:50:03.140Z" + "size": 269589, + "date_published": "2025-06-21T21:06:55.448902Z" } ] }, { - "pakku_id": "7DmmfNqbvTNOselB", + "pakku_id": "0DMPJ1AWW6qfYubI", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "curios" + "curseforge": "curios", + "modrinth": "curios" }, "name": { - "curseforge": "Curios API (Forge/NeoForge)" + "curseforge": "Curios API (Forge/NeoForge)", + "modrinth": "Curios API" }, "id": { - "curseforge": "309927" + "curseforge": "309927", + "modrinth": "vvuO3ImH" }, "files": [ { @@ -2628,6 +4471,29 @@ "required_dependencies": [], "size": 398066, "date_published": "2025-04-13T13:09:30.850Z" + }, + { + "type": "modrinth", + "file_name": "curios-forge-5.14.1+1.20.1.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/vvuO3ImH/versions/IPQlZkz1/curios-forge-5.14.1+1.20.1.jar", + "id": "IPQlZkz1", + "parent_id": "vvuO3ImH", + "hashes": { + "sha512": "1373f95fd111c977db2f6adcef8e4eb486a2d926a3e17374692dee4ac3d65857de6446c16922b531aa5ace2c23c666a7fcc28c720b2917c1e04808d15648ba87", + "sha1": "452175b95ad3db6ff58bb8968f6bf7a9d1e0f480" + }, + "required_dependencies": [], + "size": 398066, + "date_published": "2025-04-13T13:09:28.168539Z" } ] }, @@ -2669,16 +4535,20 @@ ] }, { - "pakku_id": "hvewsUZjiBhgvL3w", + "pakku_id": "EZsypKHb95KeyzBH", "type": "MOD", + "side": "CLIENT", "slug": { - "curseforge": "default-options" + "curseforge": "default-options", + "modrinth": "default-options" }, "name": { - "curseforge": "Default Options" + "curseforge": "Default Options", + "modrinth": "Default Options" }, "id": { - "curseforge": "232131" + "curseforge": "232131", + "modrinth": "WEg59z5b" }, "files": [ { @@ -2704,63 +4574,48 @@ ], "size": 87943, "date_published": "2023-07-10T20:42:52.003Z" - } - ] - }, - { - "pakku_id": "1aI12OSr5TFwL3Wo", - "pakku_links": [ - "k6zIGpPrxPxbod8z" - ], - "type": "MOD", - "slug": { - "curseforge": "despawn-tweaks" - }, - "name": { - "curseforge": "Despawn Tweaks" - }, - "id": { - "curseforge": "1191080" - }, - "files": [ + }, { - "type": "curseforge", - "file_name": "despawntweaks-forge-1.0.0-1.20.1.jar", + "type": "modrinth", + "file_name": "defaultoptions-forge-1.20-18.0.1.jar", "mc_versions": [ - "1.20.1", - "1.20" + "1.20", + "1.20.1" ], "loaders": [ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6145/371/despawntweaks-forge-1.0.0-1.20.1.jar", - "id": "6145371", - "parent_id": "1191080", + "url": "https://cdn.modrinth.com/data/WEg59z5b/versions/CKNINccT/defaultoptions-forge-1.20-18.0.1.jar", + "id": "CKNINccT", + "parent_id": "WEg59z5b", "hashes": { - "sha1": "2a46154c5b58aa803aca4eb0a0e9682557e4422f", - "md5": "b59223abe43c841fab3c53102b5f677d" + "sha512": "41ab37f580a1cbcb063958b7ec6034c9bea729aecb5452e5982a21d068617a818e78d31f03e76fc4e06dbf73f066f576d9dd6566f70d4912f29b595ba5c54079", + "sha1": "73af2309627a68a7bff3e53e02ea22fb5c4651e5" }, "required_dependencies": [ - "1104882" + "MBAkmtvl" ], - "size": 640699, - "date_published": "2025-02-01T09:40:55.137Z" + "size": 87942, + "date_published": "2023-07-10T20:42:17.439457Z" } ] }, { - "pakku_id": "SG15bUHPcW2KqNGd", + "pakku_id": "qTkHGASztASuivVS", "type": "MOD", "side": "BOTH", "slug": { - "curseforge": "detected-setblock-be-gone" + "curseforge": "detected-setblock-be-gone", + "modrinth": "dsbg" }, "name": { - "curseforge": "Detected setBlock Be Gone" + "curseforge": "Detected setBlock Be Gone", + "modrinth": "Detected setBlock Be Gone" }, "id": { - "curseforge": "942945" + "curseforge": "942945", + "modrinth": "zv7fYVyQ" }, "redistributable": false, "files": [ @@ -2784,24 +4639,51 @@ "required_dependencies": [], "size": 273328, "date_published": "2023-11-27T22:50:51.187Z" + }, + { + "type": "modrinth", + "file_name": "dsbg-1.0-1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/zv7fYVyQ/versions/JJU0kqnK/dsbg-1.0-1.20.1.jar", + "id": "JJU0kqnK", + "parent_id": "zv7fYVyQ", + "hashes": { + "sha512": "9590a9652e85220d7195ac18df17d99d1b292aa5e5126656eeeeaead65018d50e8d35f7f2eccd403ad6651ca328d7fccb57f55fac0d14e4324e27b0d864c216c", + "sha1": "349a91654be8df6af5a19b02c7bb47758c09bac4" + }, + "required_dependencies": [], + "size": 273328, + "date_published": "2024-01-25T00:03:33.444363Z" } ] }, { - "pakku_id": "Uzv18E8r45u55KlP", + "pakku_id": "B3OeIZiBndi7C4Wp", "pakku_links": [ - "FOswt0O8bKv2R2Nv", - "fMkiGcRPRv1DdRC1" + "edRQnIZPGMFeSrB6", + "64uacGcEw697jVGs", + "V83DMpywbmyrQqvg", + "pB7ARGecP03UXpd6" ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "digger-helmet" + "curseforge": "digger-helmet", + "modrinth": "digger-helmet" }, "name": { - "curseforge": "Digger Helmet" + "curseforge": "Digger Helmet", + "modrinth": "Digger Helmet" }, "id": { - "curseforge": "1243596" + "curseforge": "1243596", + "modrinth": "8Aatj9Zy" }, "files": [ { @@ -2829,20 +4711,50 @@ ], "size": 166469, "date_published": "2025-06-04T11:33:42.337Z" + }, + { + "type": "modrinth", + "file_name": "diggerhelmet-1.20.1-1.0.0.18.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "alpha", + "url": "https://cdn.modrinth.com/data/8Aatj9Zy/versions/F1OxL4u7/diggerhelmet-1.20.1-1.0.0.18.jar", + "id": "F1OxL4u7", + "parent_id": "8Aatj9Zy", + "hashes": { + "sha512": "6fccff7666420fef07997f56d2951465f7c58b1ec4c6de144f643ba0c9365ed47bc2c0636d92d97c457d2a1a7df4a25adf1492ab91954f92ee3aec15e5b441e1", + "sha1": "2020d274cfb18c26c1ee079bf45673e781a6bae5" + }, + "required_dependencies": [ + "8BmcQJ2H", + "vvuO3ImH", + "JaCEZUhg" + ], + "size": 163250, + "date_published": "2025-04-16T13:26:55.189626Z" } ] }, { - "pakku_id": "pMGRBbE4zkZR9Uzf", + "pakku_id": "lv9zy1yqw8z5AIQb", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "do-a-barrel-roll" + "curseforge": "do-a-barrel-roll", + "modrinth": "do-a-barrel-roll" }, "name": { - "curseforge": "Do a Barrel Roll" + "curseforge": "Do a Barrel Roll", + "modrinth": "Do a Barrel Roll" }, "id": { - "curseforge": "663658" + "curseforge": "663658", + "modrinth": "6FtRfnLg" }, "files": [ { @@ -2867,6 +4779,29 @@ "required_dependencies": [], "size": 625488, "date_published": "2024-05-08T08:34:02.753Z" + }, + { + "type": "modrinth", + "file_name": "do_a_barrel_roll-forge-3.5.6+1.20.1.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/6FtRfnLg/versions/VH8QpKA5/do_a_barrel_roll-forge-3.5.6+1.20.1.jar", + "id": "VH8QpKA5", + "parent_id": "6FtRfnLg", + "hashes": { + "sha512": "f07294a0e43826c400d10fe52b6d3a5f58ba9c51eecd464f30957faae875d397a8fbfdd8b6e58989fc7ebfbb59f84b283eb7a83bebc906777d1a2b65336deec4", + "sha1": "08b58bfbdf20660bdc5a0c4a0b088f7d89f40a38" + }, + "required_dependencies": [], + "size": 625488, + "date_published": "2024-05-08T08:34:03.529001Z" } ] }, @@ -2907,17 +4842,24 @@ ] }, { - "pakku_id": "wAebQFoMqZhw8qad", + "pakku_id": "384ZE6NIQ7rDiOLl", + "pakku_links": [ + "xrbAP259oPkXeNRV", + "NZy1xTZhTOBxDiDt" + ], "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "drippy-loading-screen" + "curseforge": "drippy-loading-screen", + "modrinth": "drippy-loading-screen" }, "name": { - "curseforge": "Drippy Loading Screen" + "curseforge": "Drippy Loading Screen", + "modrinth": "Drippy Loading Screen" }, "id": { - "curseforge": "511770" + "curseforge": "511770", + "modrinth": "v3CYg2V9" }, "files": [ { @@ -2943,62 +4885,48 @@ ], "size": 239365, "date_published": "2025-04-11T20:29:43.010Z" - } - ] - }, - { - "pakku_id": "AzVGsOteKm8d4n0m", - "pakku_links": [ - "GOh1ocuoLHhYMq2J" - ], - "type": "MOD", - "slug": { - "curseforge": "dynamic-view" - }, - "name": { - "curseforge": "Dynamic View[Forge]" - }, - "id": { - "curseforge": "366140" - }, - "files": [ + }, { - "type": "curseforge", - "file_name": "dynview-1.20.1-4.0.jar", + "type": "modrinth", + "file_name": "drippyloadingscreen_forge_3.0.12_MC_1.20.1.jar", "mc_versions": [ "1.20.1" ], "loaders": [ - "neoforge", "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/5345/889/dynview-1.20.1-4.0.jar", - "id": "5345889", - "parent_id": "366140", + "url": "https://cdn.modrinth.com/data/v3CYg2V9/versions/SCbkqLQR/drippyloadingscreen_forge_3.0.12_MC_1.20.1.jar", + "id": "SCbkqLQR", + "parent_id": "v3CYg2V9", "hashes": { - "sha1": "626d970796531ae63a4029176ef0db07b2109c4f", - "md5": "7efca5128021afe6101defb13e5ae486" + "sha512": "b253926f9faab8ae069bb6cf4a5380ff3cc04071d44216ebc8cd032f68a4ae760320a03059fe5fa2daf6563f6fa39e90fc659b6e64bae94079ae8e74ae8342d5", + "sha1": "ea21436917b84780835b041cd27b7f86679dc6a1" }, "required_dependencies": [ - "326652" + "J81TRJWm", + "Wq5SjeWM" ], - "size": 22525, - "date_published": "2024-05-15T14:58:36.057Z" + "size": 239365, + "date_published": "2025-04-11T20:29:48.819686Z" } ] }, { - "pakku_id": "6rI6AyhyQU3lnCpg", + "pakku_id": "UYwzsHbcjulcx9ZL", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "emi" + "curseforge": "emi", + "modrinth": "emi" }, "name": { - "curseforge": "EMI" + "curseforge": "EMI", + "modrinth": "EMI" }, "id": { - "curseforge": "580555" + "curseforge": "580555", + "modrinth": "fRiHVvU7" }, "files": [ { @@ -3021,21 +4949,45 @@ "required_dependencies": [], "size": 1048567, "date_published": "2025-04-14T03:37:30.690Z" + }, + { + "type": "modrinth", + "file_name": "emi-1.1.22+1.20.1+forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/fRiHVvU7/versions/WtJS5tVw/emi-1.1.22+1.20.1+forge.jar", + "id": "WtJS5tVw", + "parent_id": "fRiHVvU7", + "hashes": { + "sha512": "fcc80ee419a96682d157e8fd0993e0f13031dafc6399dabb17b9696636e791a903e7d3d15131edd3b533544454f072c4b19e92b146c80d4be6980bb20a0dbb7b", + "sha1": "d8049d6ec86befcd100a0ff0fc8ebc289f735997" + }, + "required_dependencies": [], + "size": 1048567, + "date_published": "2025-04-14T03:37:26.013177Z" } ] }, { - "pakku_id": "6I5K2vwIvkFSfEuv", + "pakku_id": "gYHPAspVHiwlSSXI", "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "embeddium" + "curseforge": "embeddium", + "modrinth": "embeddium" }, "name": { - "curseforge": "Embeddium" + "curseforge": "Embeddium", + "modrinth": "Embeddium" }, "id": { - "curseforge": "908741" + "curseforge": "908741", + "modrinth": "sk9rgfiA" }, "files": [ { @@ -3059,26 +5011,53 @@ "required_dependencies": [], "size": 1320675, "date_published": "2024-08-31T23:11:49.240Z" + }, + { + "type": "modrinth", + "file_name": "embeddium-0.3.31+mc1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/sk9rgfiA/versions/UTbfe5d1/embeddium-0.3.31+mc1.20.1.jar", + "id": "UTbfe5d1", + "parent_id": "sk9rgfiA", + "hashes": { + "sha512": "ffbf2da4685260a4d5c14c621708bd20722563f084f042d3dfb0a7b87f048e39299648c854a93939129da0d23a15a91ec628560d601e76074b08e275f6e132e9", + "sha1": "bb2fa8f3e493af16af9160d049f96c614a1faf2f" + }, + "required_dependencies": [], + "size": 1320675, + "date_published": "2024-08-31T23:11:49.184634Z" } ] }, { - "pakku_id": "YO4slgGVi0xZyL25", + "pakku_id": "mEP7yMd938gKqjfz", "pakku_links": [ - "FOswt0O8bKv2R2Nv", - "QXBpbwRXpmbaHixl", - "18IuoLEIRdaY1Jqy" + "edRQnIZPGMFeSrB6", + "zQAe1eid9EE5PMwK", + "WlWexjDJnb3iikHc", + "V83DMpywbmyrQqvg", + "pB7ARGecP03UXpd6" ], "type": "MOD", "side": "BOTH", "slug": { - "curseforge": "enderman-overhaul" + "curseforge": "enderman-overhaul", + "modrinth": "enderman-overhaul" }, "name": { - "curseforge": "Enderman Overhaul" + "curseforge": "Enderman Overhaul", + "modrinth": "Enderman Overhaul" }, "id": { - "curseforge": "574409" + "curseforge": "574409", + "modrinth": "Lq6ojcWv" }, "files": [ { @@ -3105,23 +5084,49 @@ ], "size": 1208062, "date_published": "2024-01-09T10:35:03.367Z" + }, + { + "type": "modrinth", + "file_name": "endermanoverhaul-forge-1.20.1-1.0.4.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/Lq6ojcWv/versions/yjxych8u/endermanoverhaul-forge-1.20.1-1.0.4.jar", + "id": "yjxych8u", + "parent_id": "Lq6ojcWv", + "hashes": { + "sha512": "febe0456384ecc71d1366535ac49c4852820bba19704f4f23e453f9855e1494dfe1c7d9ac617e353baf18a805bfb6fbd9728c5f0641120cd8e5d93ead0c29bd0", + "sha1": "636a2b20a5973fcb80016370865cb4251e029b6a" + }, + "required_dependencies": [ + "8BmcQJ2H", + "G1hIVOrD", + "M1953qlQ" + ], + "size": 1208062, + "date_published": "2024-01-09T10:35:05.817065Z" } ] }, { - "pakku_id": "59uffi3GLfrI8tHi", - "pakku_links": [ - "WLBp9cajd3ZyDeek" - ], + "pakku_id": "CZHb3fxmqrUQ6IM7", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "enhancedvisuals" + "curseforge": "enhancedvisuals", + "modrinth": "enhancedvisuals" }, "name": { - "curseforge": "EnhancedVisuals" + "curseforge": "EnhancedVisuals", + "modrinth": "EnhancedVisuals" }, "id": { - "curseforge": "255389" + "curseforge": "255389", + "modrinth": "KjL0jE2w" }, "files": [ { @@ -3147,24 +5152,72 @@ ], "size": 4726286, "date_published": "2025-02-14T13:11:44.420Z" + }, + { + "type": "modrinth", + "file_name": "EnhancedVisuals_FORGE_v1.8.2_mc1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/KjL0jE2w/versions/m3cjYtkA/EnhancedVisuals_FORGE_v1.8.2_mc1.20.1.jar", + "id": "m3cjYtkA", + "parent_id": "KjL0jE2w", + "hashes": { + "sha512": "d3e6fca63651f262b07a75053453beb8ccf963f096a8aaffef13cc16a27666e3b31bb4eab36282c27b3c7586b030cb53f74b7534f756c26d5f2b9b745cc39941", + "sha1": "780caf39421ccfc495d14cb287856ced97c32985" + }, + "required_dependencies": [ + "OsZiaDHq" + ], + "size": 4726286, + "date_published": "2025-02-14T13:11:40.681177Z" } ] }, { - "pakku_id": "RS4X7y4ROQpYQt4g", + "pakku_id": "ntYJm1SivkVRplyt", "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "entityculling" + "curseforge": "entityculling", + "modrinth": "entityculling" }, "name": { - "curseforge": "Entity Culling Fabric/Forge" + "curseforge": "Entity Culling Fabric/Forge", + "modrinth": "Entity Culling" }, "id": { - "curseforge": "448233" + "curseforge": "448233", + "modrinth": "NNAgCjsB" }, "redistributable": false, "files": [ + { + "type": "modrinth", + "file_name": "entityculling-forge-1.8.2-mc1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/NNAgCjsB/versions/zinofwiX/entityculling-forge-1.8.2-mc1.20.1.jar", + "id": "zinofwiX", + "parent_id": "NNAgCjsB", + "hashes": { + "sha512": "45c54f5f69cc75d0c9c79a716c182d3d9ee59d9883d2333030f191176ee70922ad281ea1b60d2f10bbaf8be96a3454c6d14ef484d1db49c153c97859dbc4ffb5", + "sha1": "0a465a4dbbc4b21b3465bb15796635b5c1024cf4" + }, + "required_dependencies": [], + "size": 478568, + "date_published": "2025-07-17T19:31:26.885140Z" + }, { "type": "curseforge", "file_name": "entityculling-forge-1.8.1-mc1.20.1.jar", @@ -3189,16 +5242,20 @@ ] }, { - "pakku_id": "S9mFVhld9RtTDbh2", + "pakku_id": "6RNzeC2wkWRc6YSM", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "etched" + "curseforge": "etched", + "modrinth": "etched" }, "name": { - "curseforge": "Etched" + "curseforge": "Etched", + "modrinth": "Etched" }, "id": { - "curseforge": "491890" + "curseforge": "491890", + "modrinth": "zi3Fnfmc" }, "files": [ { @@ -3222,25 +5279,55 @@ "required_dependencies": [], "size": 611496, "date_published": "2024-12-17T19:34:14.223Z" + }, + { + "type": "modrinth", + "file_name": "etched-3.0.2.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/zi3Fnfmc/versions/M178L4Do/etched-3.0.2.jar", + "id": "M178L4Do", + "parent_id": "zi3Fnfmc", + "hashes": { + "sha512": "d932c4fb13b62e92f33dbad0d826e3f08f338d05e166421bf997101176b468f23792931b2c6f154e3b2d1c6fde5012a3ae5a98aa7711da5eb41184523d834046", + "sha1": "792f055e76eb7a13efe26552cbccad66c2585860" + }, + "required_dependencies": [], + "size": 610871, + "date_published": "2024-05-14T23:44:35.498485Z" } ] }, { - "pakku_id": "Vbk55mgQ8A9I69qE", + "pakku_id": "RkPlX1Bfhnne4042", + "pakku_links": [ + "aHeU7fAIYgE8bqks", + "fR2my61zK1ySP67C" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "every-compat" + "curseforge": "every-compat", + "modrinth": "every-compat" }, "name": { - "curseforge": "Every Compat (Wood Good)" + "curseforge": "Every Compat (Wood Good)", + "modrinth": "Every Compat (Wood Good)" }, "id": { - "curseforge": "628539" + "curseforge": "628539", + "modrinth": "eiktJyw1" }, "files": [ { - "type": "curseforge", - "file_name": "everycomp-1.20-2.8.12-forge.jar", + "type": "modrinth", + "file_name": "everycomp-1.20-2.8.13-forge.jar", "mc_versions": [ "1.20.1" ], @@ -3248,32 +5335,59 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6740/51/everycomp-1.20-2.8.12-forge.jar", - "id": "6740051", + "url": "https://cdn.modrinth.com/data/eiktJyw1/versions/OApRuFlY/everycomp-1.20-2.8.13-forge.jar", + "id": "OApRuFlY", + "parent_id": "eiktJyw1", + "hashes": { + "sha512": "5b962ea433301fe6b293f492f46037331477cfbaba6663e9b3b127975fa38b2bd4ac4eecd646038caeb837985e297e9e05fcd3102052180730224d8bf839538f", + "sha1": "10fd16961204edb982c9b807393720ba47c7f5a6" + }, + "required_dependencies": [ + "twkfQtEc" + ], + "size": 2770655, + "date_published": "2025-07-15T06:10:49.582994Z" + }, + { + "type": "curseforge", + "file_name": "everycomp-1.20-2.8.13-forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6770/680/everycomp-1.20-2.8.13-forge.jar", + "id": "6770680", "parent_id": "628539", "hashes": { - "sha1": "018be48ad689e61fc14ad0bf54692a5b33f8f8ec", - "md5": "b527208c0b890e7b3ac048b753420e39" + "sha1": "10fd16961204edb982c9b807393720ba47c7f5a6", + "md5": "f751269938565e1372f0d874bb06d228" }, "required_dependencies": [ "499980" ], - "size": 2750134, - "date_published": "2025-07-07T07:20:06.753Z" + "size": 2770655, + "date_published": "2025-07-15T06:10:37.127Z" } ] }, { - "pakku_id": "6z0NU2iMgfy4qtHA", + "pakku_id": "W6JmaRHaofCd4vYa", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "exposure" + "curseforge": "exposure", + "modrinth": "exposure" }, "name": { - "curseforge": "Exposure" + "curseforge": "Exposure", + "modrinth": "Exposure" }, "id": { - "curseforge": "871755" + "curseforge": "871755", + "modrinth": "hB899VmG" }, "files": [ { @@ -3296,6 +5410,27 @@ "required_dependencies": [], "size": 1360685, "date_published": "2025-06-15T21:13:11.687Z" + }, + { + "type": "modrinth", + "file_name": "exposure-1.20.1-1.7.16-forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/hB899VmG/versions/Wk43p4gt/exposure-1.20.1-1.7.16-forge.jar", + "id": "Wk43p4gt", + "parent_id": "hB899VmG", + "hashes": { + "sha512": "94e1c0ddbcb12d2b95e964d9081e41c4c6ad960100ab31fa7faee5ff8d0a3b5e7b29288117dad4d4aa17ae7fc01d19f2a269f327f27151d47248c9d6ff68ace2", + "sha1": "b1ec92eeafdc97e88e0baacd5d89f4c1f89a4bbc" + }, + "required_dependencies": [], + "size": 1360685, + "date_published": "2025-06-15T21:13:11.560500Z" } ] }, @@ -3307,7 +5442,10 @@ "hEH6ly65CC6Sw1pf", "FnKweRrkUQZW32bO", "0IQGejKaqyQTLzbL", - "EbImyRnmgUybUFzA" + "EbImyRnmgUybUFzA", + "OX3oijTxjmeoXyM3", + "E7ASIvLUKD1YJURv", + "mYY02F5XR0fB6HXF" ], "type": "MOD", "slug": { @@ -3349,17 +5487,20 @@ ] }, { - "pakku_id": "8AxOn5gXmUukYhnn", + "pakku_id": "ONty7AYqVFmQInZr", "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "fps-reducer" + "curseforge": "fps-reducer", + "modrinth": "fps-reducer" }, "name": { - "curseforge": "FPS Reducer" + "curseforge": "FPS Reducer", + "modrinth": "FPS Reducer" }, "id": { - "curseforge": "280294" + "curseforge": "280294", + "modrinth": "iZ10HXDj" }, "files": [ { @@ -3384,6 +5525,29 @@ "required_dependencies": [], "size": 125347, "date_published": "2023-06-14T16:09:02.177Z" + }, + { + "type": "modrinth", + "file_name": "FpsReducer2-forge-1.20-2.5.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/iZ10HXDj/versions/XP4qT1Vo/FpsReducer2-forge-1.20-2.5.jar", + "id": "XP4qT1Vo", + "parent_id": "iZ10HXDj", + "hashes": { + "sha512": "b4cc36c9510248757f3725beb4009fb66ff9daffef5695560b0fd46b9f4ec25ab54713ebae90a220a9a9bcae539c3dbeb3ead6203752e90164adccca29122cf0", + "sha1": "d7d5af20faa2bd7012aa2d34b5804324aa273092" + }, + "required_dependencies": [], + "size": 125347, + "date_published": "2023-09-06T13:47:35.481130Z" } ] }, @@ -3392,7 +5556,9 @@ "pakku_links": [ "wAKaeujhSawlrQQk", "0eaY2qNvkpQzolFy", - "SwXDcwFoiFW6R103" + "SwXDcwFoiFW6R103", + "x1EwQZ6H2kVKR3U3", + "e7thBe1Z6fvyxUtU" ], "type": "MOD", "side": "CLIENT", @@ -3439,7 +5605,8 @@ "pakku_links": [ "ieNTt8vgrcfO2nk9", "0eaY2qNvkpQzolFy", - "hcwrEZKe0UXf0qM5" + "hcwrEZKe0UXf0qM5", + "x1EwQZ6H2kVKR3U3" ], "type": "MOD", "slug": { @@ -3520,7 +5687,8 @@ { "pakku_id": "Fyd0VjTgyq5PnBHb", "pakku_links": [ - "0eaY2qNvkpQzolFy" + "0eaY2qNvkpQzolFy", + "x1EwQZ6H2kVKR3U3" ], "type": "MOD", "slug": { @@ -3562,7 +5730,8 @@ { "pakku_id": "ieNTt8vgrcfO2nk9", "pakku_links": [ - "0eaY2qNvkpQzolFy" + "0eaY2qNvkpQzolFy", + "x1EwQZ6H2kVKR3U3" ], "type": "MOD", "slug": { @@ -3604,7 +5773,8 @@ "pakku_id": "zY1db8K0EbhK1POB", "pakku_links": [ "hcwrEZKe0UXf0qM5", - "0eaY2qNvkpQzolFy" + "0eaY2qNvkpQzolFy", + "x1EwQZ6H2kVKR3U3" ], "type": "MOD", "slug": { @@ -3647,7 +5817,8 @@ { "pakku_id": "f6XvOldUCm8jt51o", "pakku_links": [ - "0eaY2qNvkpQzolFy" + "0eaY2qNvkpQzolFy", + "x1EwQZ6H2kVKR3U3" ], "type": "MOD", "slug": { @@ -3689,7 +5860,8 @@ { "pakku_id": "hcwrEZKe0UXf0qM5", "pakku_links": [ - "0eaY2qNvkpQzolFy" + "0eaY2qNvkpQzolFy", + "x1EwQZ6H2kVKR3U3" ], "type": "MOD", "slug": { @@ -3733,7 +5905,8 @@ "pakku_links": [ "YrMPVh28ndtUkLsq", "ieNTt8vgrcfO2nk9", - "0eaY2qNvkpQzolFy" + "0eaY2qNvkpQzolFy", + "x1EwQZ6H2kVKR3U3" ], "type": "MOD", "slug": { @@ -3773,22 +5946,50 @@ ] }, { - "pakku_id": "uLjsQ7C1hDVfy0Zn", + "pakku_id": "xrbAP259oPkXeNRV", "pakku_links": [ - "Sd1WBrIs9dOQhqCN" + "NZy1xTZhTOBxDiDt", + "NCIijaHzWSL3jBFa" ], "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "fancymenu" + "curseforge": "fancymenu", + "modrinth": "fancymenu" }, "name": { - "curseforge": "FancyMenu" + "curseforge": "FancyMenu", + "modrinth": "FancyMenu" }, "id": { - "curseforge": "367706" + "curseforge": "367706", + "modrinth": "Wq5SjeWM" }, "files": [ + { + "type": "modrinth", + "file_name": "fancymenu_forge_3.6.4_MC_1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/Wq5SjeWM/versions/uWOORZzp/fancymenu_forge_3.6.4_MC_1.20.1.jar", + "id": "uWOORZzp", + "parent_id": "Wq5SjeWM", + "hashes": { + "sha512": "a63c8caeb1b39d2161c6836e1fb7b4ec0d4faa37230039fcb6bef6c6a3b4ccdf736d2f8140c867e7f70b64012aabb7817fabfa0c6222a2547b512a5a58ef18f9", + "sha1": "da528b28187269d2c44c8192e89c701187953d1e" + }, + "required_dependencies": [ + "J81TRJWm", + "CVT4pFB2" + ], + "size": 3573433, + "date_published": "2025-07-18T21:12:19.752104Z" + }, { "type": "curseforge", "file_name": "fancymenu_forge_3.6.2_MC_1.20.1.jar", @@ -3816,17 +6017,20 @@ ] }, { - "pakku_id": "hggeEmhEPzF5fKKr", + "pakku_id": "y66pZ9sU3U8ixNIa", "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "fast-ip-ping" + "curseforge": "fast-ip-ping", + "modrinth": "fast-ip-ping" }, "name": { - "curseforge": "Fast IP Ping" + "curseforge": "Fast IP Ping", + "modrinth": "Fast IP Ping" }, "id": { - "curseforge": "904356" + "curseforge": "904356", + "modrinth": "9mtu0sUO" }, "files": [ { @@ -3853,21 +6057,49 @@ "required_dependencies": [], "size": 10557, "date_published": "2025-06-18T15:25:05.557Z" + }, + { + "type": "modrinth", + "file_name": "fast-ip-ping-v1.0.7-mc1.20.4-forge.jar", + "mc_versions": [ + "1.20", + "1.20.1", + "1.20.2", + "1.20.3", + "1.20.4" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/9mtu0sUO/versions/W1Wnmkqh/fast-ip-ping-v1.0.7-mc1.20.4-forge.jar", + "id": "W1Wnmkqh", + "parent_id": "9mtu0sUO", + "hashes": { + "sha512": "5223cd922b4f32faf8e6263976d39ead51e12dc332a16eacfddd11196872609b1d905673ab707f38d62f5d3f9c243dc51bb62bf3f8179d15a006c616feb48be8", + "sha1": "253d21fd87657e6dc1e451c9758f5daaa71b86c8" + }, + "required_dependencies": [], + "size": 10557, + "date_published": "2025-06-18T15:27:06.998981Z" } ] }, { - "pakku_id": "SHxjXPyZkrcfsnIi", + "pakku_id": "G5vYABMCGRJRuTU9", "type": "MOD", "side": "BOTH", "slug": { - "curseforge": "fastboot" + "curseforge": "fastboot", + "modrinth": "fastboot" }, "name": { - "curseforge": "FastBoot" + "curseforge": "FastBoot", + "modrinth": "FastBoot" }, "id": { - "curseforge": "1030285" + "curseforge": "1030285", + "modrinth": "nRL5uFe0" }, "redistributable": false, "files": [ @@ -3897,6 +6129,33 @@ "required_dependencies": [], "size": 24477, "date_published": "2024-09-06T08:48:44.887Z" + }, + { + "type": "modrinth", + "file_name": "fastboot-1.20.x-1.2.jar", + "mc_versions": [ + "1.20", + "1.20.1", + "1.20.2", + "1.20.3", + "1.20.4", + "1.20.5", + "1.20.6" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/nRL5uFe0/versions/L7hAkvRy/fastboot-1.20.x-1.2.jar", + "id": "L7hAkvRy", + "parent_id": "nRL5uFe0", + "hashes": { + "sha512": "7c888221c58ba85199feeae6aba539bde4a02c4c996457b49d91cb9274f5a08b19cfecfe6d6c3387343ef15dbfde812f8e2672e4fd7979615045d6a9d16e6aa8", + "sha1": "0820d6611bdf664cc84bf351089e75998a9f1962" + }, + "required_dependencies": [], + "size": 24477, + "date_published": "2024-10-23T13:40:38.723694Z" } ] }, @@ -4021,16 +6280,20 @@ ] }, { - "pakku_id": "ko9yxHxa0VLNPBl3", + "pakku_id": "SkqidsUYUnL5aScG", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "ferritecore" + "curseforge": "ferritecore", + "modrinth": "ferrite-core" }, "name": { - "curseforge": "FerriteCore ((Neo)Forge)" + "curseforge": "FerriteCore ((Neo)Forge)", + "modrinth": "FerriteCore" }, "id": { - "curseforge": "429235" + "curseforge": "429235", + "modrinth": "uXXizFIs" }, "files": [ { @@ -4055,23 +6318,51 @@ "required_dependencies": [], "size": 123034, "date_published": "2023-10-22T13:35:16.597Z" + }, + { + "type": "modrinth", + "file_name": "ferritecore-6.0.1-forge.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/uXXizFIs/versions/DG5Fn9Sz/ferritecore-6.0.1-forge.jar", + "id": "DG5Fn9Sz", + "parent_id": "uXXizFIs", + "hashes": { + "sha512": "a1960a7c03dc32d4ccaccaf28afdd9b078758bbd62d15a91d4039a83fa9397a098e89b69591f6bd5190254d9ee97e502504154b9aec764adb8c65f000b75ba2c", + "sha1": "417fb6ce8f52abf40bd9d0390371790f9576f8ba" + }, + "required_dependencies": [], + "size": 123034, + "date_published": "2023-10-22T13:40:26.306516Z" } ] }, { - "pakku_id": "voVOR1FExyuHjrQq", + "pakku_id": "wB80dFAavvcZ8n4R", "pakku_links": [ - "MTt6FL1ZK2Omzj4I" + "64uacGcEw697jVGs", + "dGK4XTJPQF2dqXh1" ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "firmaciv" + "curseforge": "firmaciv", + "modrinth": "firmaciv" }, "name": { - "curseforge": "Firma: Civilization (TFC)" + "curseforge": "Firma: Civilization (TFC)", + "modrinth": "Firma: Civilization" }, "id": { - "curseforge": "714158" + "curseforge": "714158", + "modrinth": "6o49a8Vz" }, "files": [ { @@ -4098,20 +6389,49 @@ ], "size": 16593596, "date_published": "2024-09-19T18:16:40.767Z" + }, + { + "type": "modrinth", + "file_name": "FirmaCivilization-1.20.1-1.0.9.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/6o49a8Vz/versions/NCjI8fvd/FirmaCivilization-1.20.1-1.0.9.jar", + "id": "NCjI8fvd", + "parent_id": "6o49a8Vz", + "hashes": { + "sha512": "01257e1247489a2d67db4338c2470afd63a19a502f0ce24a5fb041d5e0598cd3fc723c38eaae2daff9c306a959641252b5ec2f255065f52e337c5da918be3dca", + "sha1": "41e134f5dd02cc5030229c972b474a2e69793233" + }, + "required_dependencies": [ + "vuNeeDyl", + "JaCEZUhg" + ], + "size": 16593596, + "date_published": "2024-09-19T18:15:41.714888Z" } ] }, { - "pakku_id": "PKdR7ibItXDtsk7Y", + "pakku_id": "Oxqyjy7hjOjTsqcY", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "firmacivplus" + "curseforge": "firmacivplus", + "modrinth": "firmacivplus" }, "name": { - "curseforge": "FirmaCivPlus" + "curseforge": "FirmaCivPlus", + "modrinth": "FirmaCivPlus" }, "id": { - "curseforge": "1243743" + "curseforge": "1243743", + "modrinth": "h1WsEaNH" }, "files": [ { @@ -4136,20 +6456,50 @@ ], "size": 7028524, "date_published": "2025-05-03T17:04:21.067Z" + }, + { + "type": "modrinth", + "file_name": "firmacivplus-1.0.1-1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/h1WsEaNH/versions/tamQr4CM/firmacivplus-1.0.1-1.20.1.jar", + "id": "tamQr4CM", + "parent_id": "h1WsEaNH", + "hashes": { + "sha512": "4785f2dedcd5f34b8b3f9f07869d1928af324a7b6bf5807a83837aa6e78b7ec80a2661073b4e91e6061d8ef30f0eb4776208e28cdc51a5b92495b30e31ad1707", + "sha1": "5d21f85a95332dc002cd26ce085934a0d3605e08" + }, + "required_dependencies": [ + "6o49a8Vz" + ], + "size": 7028524, + "date_published": "2025-05-03T17:00:39.650381Z" } ] }, { - "pakku_id": "KyYmDyOjjrs7g5nL", + "pakku_id": "AqNG8HNM9pfy1ges", + "pakku_links": [ + "64uacGcEw697jVGs" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "firmalife" + "curseforge": "firmalife", + "modrinth": "firmalife" }, "name": { - "curseforge": "FirmaLife" + "curseforge": "FirmaLife", + "modrinth": "Firmalife" }, "id": { - "curseforge": "453394" + "curseforge": "453394", + "modrinth": "5bKeBHw2" }, "files": [ { @@ -4175,24 +6525,51 @@ ], "size": 4628505, "date_published": "2025-07-08T01:40:49.807Z" + }, + { + "type": "modrinth", + "file_name": "Firmalife-1.20.1-2.1.21.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/5bKeBHw2/versions/UwgG4DYC/Firmalife-1.20.1-2.1.21.jar", + "id": "UwgG4DYC", + "parent_id": "5bKeBHw2", + "hashes": { + "sha512": "e514abd47658b725c644c440c456909b22aaef2fd2c5a880430991399603ced4ca56612666dc3d31e1226188d67de04febcddd1ed7e0f117c1fe7178de206a71", + "sha1": "eb8493c32134d58bb63d85fb7664fe10556628f0" + }, + "required_dependencies": [ + "JaCEZUhg" + ], + "size": 4628505, + "date_published": "2025-07-08T01:40:53.393391Z" } ] }, { - "pakku_id": "3yb0w1wwZMW2O9qY", + "pakku_id": "c6bD4qYaWC0uDzgX", "pakku_links": [ - "v44vAp7vREOZVvOk" + "rZMUz1QjgqD53x3s" ], "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "first-person-model" + "curseforge": "first-person-model", + "modrinth": "first-person-model" }, "name": { - "curseforge": "First-person Model (Forge/Fabric)" + "curseforge": "First-person Model (Forge/Fabric)", + "modrinth": "First-person Model" }, "id": { - "curseforge": "333287" + "curseforge": "333287", + "modrinth": "H5XMjpHi" }, "redistributable": false, "files": [ @@ -4218,20 +6595,47 @@ ], "size": 519546, "date_published": "2025-07-05T14:28:10.673Z" + }, + { + "type": "modrinth", + "file_name": "firstperson-forge-2.5.0-mc1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/H5XMjpHi/versions/ub6wk879/firstperson-forge-2.5.0-mc1.20.1.jar", + "id": "ub6wk879", + "parent_id": "H5XMjpHi", + "hashes": { + "sha512": "57f421f4d9ec969218372029798bc0e83aa661fce95744f5608dd03718e5a88a217fc36b7a71a7ab79b21a531a28a1c549e364241d103857afd932eaa0ce1002", + "sha1": "58280ce1c376420ee138d99c5a7c8c5f5de315c3" + }, + "required_dependencies": [ + "MPCX6s5C" + ], + "size": 519546, + "date_published": "2025-07-05T14:28:11.556615Z" } ] }, { - "pakku_id": "PSKPzf0LpQB8h5nt", + "pakku_id": "BHSq7VGlM9Gejcqi", "type": "MOD", + "side": "CLIENT", "slug": { - "curseforge": "flickerfix" + "curseforge": "flickerfix", + "modrinth": "flickerfix" }, "name": { - "curseforge": "FlickerFix" + "curseforge": "FlickerFix", + "modrinth": "FlickerFix" }, "id": { - "curseforge": "431430" + "curseforge": "431430", + "modrinth": "KSyWOxT5" }, "files": [ { @@ -4255,20 +6659,47 @@ "required_dependencies": [], "size": 5630, "date_published": "2023-08-31T22:12:50.967Z" + }, + { + "type": "modrinth", + "file_name": "flickerfix-1.20.1-4.0.1.jar", + "mc_versions": [ + "1.20", + "1.20.1", + "1.20.2" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/KSyWOxT5/versions/tgbHZ6aV/flickerfix-1.20.1-4.0.1.jar", + "id": "tgbHZ6aV", + "parent_id": "KSyWOxT5", + "hashes": { + "sha512": "067e66d2ab3f8b538b03964cc98dbe25141a858b0cd38eec1dc15192e312fe2da9a0c1b17bb7c27341e54ebdfe59c2f538d254fdea0834062292505448203bf6", + "sha1": "ffcf6207d71ba069a8baf18f6ac4ee8668376490" + }, + "required_dependencies": [], + "size": 5630, + "date_published": "2023-10-08T21:35:01.440637Z" } ] }, { - "pakku_id": "lZTiNvrbcvfKWch2", + "pakku_id": "5SQ0czDAOB19jrY9", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "framedblocks" + "curseforge": "framedblocks", + "modrinth": "framedblocks" }, "name": { - "curseforge": "FramedBlocks" + "curseforge": "FramedBlocks", + "modrinth": "FramedBlocks" }, "id": { - "curseforge": "441647" + "curseforge": "441647", + "modrinth": "wbgfS34j" }, "files": [ { @@ -4292,20 +6723,46 @@ "required_dependencies": [], "size": 4251277, "date_published": "2025-06-23T01:59:51.940Z" + }, + { + "type": "modrinth", + "file_name": "FramedBlocks-9.4.2.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/wbgfS34j/versions/7rttes4D/FramedBlocks-9.4.2.jar", + "id": "7rttes4D", + "parent_id": "wbgfS34j", + "hashes": { + "sha512": "51229b5b63a2b631682a0702a8525bdf54e53a1ecb6410331086073aa058040cde9724304cf29bce08583bebdd0c2eb6f103cd192fc10b2f246d19af05701fc5", + "sha1": "68b8301c8124dd00ea70c216066b1fe207e25345" + }, + "required_dependencies": [], + "size": 4251277, + "date_published": "2025-06-23T02:00:24.225175Z" } ] }, { - "pakku_id": "cZDchVvr7YweLPXR", + "pakku_id": "p8kyG4QWwjHOps4L", "type": "MOD", + "side": "SERVER", "slug": { - "curseforge": "fullstack-watchdog" + "curseforge": "fullstack-watchdog", + "modrinth": "fullstack-watchdog" }, "name": { - "curseforge": "FullStack Watchdog" + "curseforge": "FullStack Watchdog", + "modrinth": "FullStack Watchdog" }, "id": { - "curseforge": "849817" + "curseforge": "849817", + "modrinth": "oZiSDGCi" }, "files": [ { @@ -4330,25 +6787,88 @@ "required_dependencies": [], "size": 14539, "date_published": "2023-04-13T14:20:50.590Z" + }, + { + "type": "modrinth", + "file_name": "fullstackwatchdog-1.0.1+1.19.2-forge.jar", + "mc_versions": [ + "1.17.1", + "1.18", + "1.18.1", + "1.18.2", + "1.19", + "1.19.1", + "1.19.2", + "1.19.3", + "1.19.4", + "1.20", + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/oZiSDGCi/versions/BOc4o0CZ/fullstackwatchdog-1.0.1+1.19.2-forge.jar", + "id": "BOc4o0CZ", + "parent_id": "oZiSDGCi", + "hashes": { + "sha512": "623167bc2d164800cac8384a325aa97d8605eb5a119b7fc70d3c5ce42f0d36bb16820aaf82df7377bd9e4682a44b9870fbc08dad1670aa726a337b7f9383bd81", + "sha1": "6f1e3a25c4a0258c2592fefb837f95a24eb3bfa0" + }, + "required_dependencies": [], + "size": 14539, + "date_published": "2023-04-13T14:20:54.257382Z" } ] }, { - "pakku_id": "lzhyE6qnNX8vJ50C", + "pakku_id": "dMqgPWrNNzHy6ZBt", + "pakku_links": [ + "oC0unMVGatUQIsDP" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "fzzy-config" + "curseforge": "fzzy-config", + "modrinth": "fzzy-config" }, "name": { - "curseforge": "Fzzy Config" + "curseforge": "Fzzy Config", + "modrinth": "Fzzy Config" }, "id": { - "curseforge": "1005914" + "curseforge": "1005914", + "modrinth": "hYykXjDp" }, "files": [ + { + "type": "modrinth", + "file_name": "fzzy_config-0.7.1+1.20.1+forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/hYykXjDp/versions/OOPrShvY/fzzy_config-0.7.1+1.20.1+forge.jar", + "id": "OOPrShvY", + "parent_id": "hYykXjDp", + "hashes": { + "sha512": "071a286f739e2860cc8b7079fb7247b20b38450137beef1b55ab0478c010dc19a690d96aa89274dfdff09bc027b0c2ce052fea8ffbba3c1fef5ff2c8aafed2e2", + "sha1": "55e77e8ac5bf34ee595c5321eadcaa7dd6b1fe33" + }, + "required_dependencies": [ + "ordsPcFz" + ], + "size": 2220131, + "date_published": "2025-07-14T20:01:15.583Z" + }, { "type": "curseforge", - "file_name": "fzzy_config-0.7.0+1.20.1+forge.jar", + "file_name": "fzzy_config-0.7.1+1.20.1+forge.jar", "mc_versions": [ "1.20.1" ], @@ -4357,33 +6877,36 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6582/106/fzzy_config-0.7.0+1.20.1+forge.jar", - "id": "6582106", + "url": "https://edge.forgecdn.net/files/6769/263/fzzy_config-0.7.1+1.20.1+forge.jar", + "id": "6769263", "parent_id": "1005914", "hashes": { - "sha1": "7d8a48fbf677cd96fdd25f4dfb35557b6e37ab37", - "md5": "818704bec61b268d32d30058ec8672ea" + "sha1": "55e77e8ac5bf34ee595c5321eadcaa7dd6b1fe33", + "md5": "81f0820157d0817180b492f538e77b3c" }, "required_dependencies": [ "351264" ], - "size": 2216572, - "date_published": "2025-05-26T23:50:01.740Z" + "size": 2220131, + "date_published": "2025-07-14T20:01:07.723Z" } ] }, { - "pakku_id": "FOswt0O8bKv2R2Nv", + "pakku_id": "pB7ARGecP03UXpd6", "type": "MOD", "side": "BOTH", "slug": { - "curseforge": "geckolib" + "curseforge": "geckolib", + "modrinth": "geckolib" }, "name": { - "curseforge": "GeckoLib" + "curseforge": "GeckoLib", + "modrinth": "Geckolib" }, "id": { - "curseforge": "388172" + "curseforge": "388172", + "modrinth": "8BmcQJ2H" }, "files": [ { @@ -4407,20 +6930,45 @@ "required_dependencies": [], "size": 1004042, "date_published": "2024-12-27T16:27:17.200Z" + }, + { + "type": "modrinth", + "file_name": "geckolib-forge-1.20.1-4.7.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/8BmcQJ2H/versions/LwI6czff/geckolib-forge-1.20.1-4.7.jar", + "id": "LwI6czff", + "parent_id": "8BmcQJ2H", + "hashes": { + "sha512": "4efd2d70533d73fc70012b0969bac9fb6035a4ebcc8b6ccb692321456bcc044da93a12b44392fca3c607889c134acd41db9e0fed376151a46d5391c56881a149", + "sha1": "451226923e02ac708b8fe59d75a2f9a28cc7e467" + }, + "required_dependencies": [], + "size": 1004043, + "date_published": "2024-12-27T16:27:02.907556Z" } ] }, { - "pakku_id": "2GZxtrNRL29dRjVC", + "pakku_id": "tQgKccUPjTVsdsDX", "type": "MOD", + "side": "SERVER", "slug": { - "curseforge": "get-it-together-drops" + "curseforge": "get-it-together-drops", + "modrinth": "get-it-together-drops" }, "name": { - "curseforge": "Get It Together, Drops!" + "curseforge": "Get It Together, Drops!", + "modrinth": "Get It Together, Drops!" }, "id": { - "curseforge": "411045" + "curseforge": "411045", + "modrinth": "T0OUgf8P" }, "files": [ { @@ -4444,20 +6992,46 @@ "required_dependencies": [], "size": 7863, "date_published": "2023-06-10T18:01:36.853Z" + }, + { + "type": "modrinth", + "file_name": "getittogetherdrops-forge-1.20-1.3.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/T0OUgf8P/versions/csPzTtJp/getittogetherdrops-forge-1.20-1.3.jar", + "id": "csPzTtJp", + "parent_id": "T0OUgf8P", + "hashes": { + "sha512": "65ccbff7c6726392e3767305cbab643dab9a8a7cbb4b11e5a8f19de32e7c4e7ac63ff707ca0ae39ed6e6c699832910362b74dbbacb403ef78b524156f29f2b14", + "sha1": "70a4d8acaedc4dfb066974726d21916b78edd7af" + }, + "required_dependencies": [], + "size": 7863, + "date_published": "2023-06-10T18:01:17.003071Z" } ] }, { - "pakku_id": "EbImyRnmgUybUFzA", + "pakku_id": "OX3oijTxjmeoXyM3", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "glodium" + "curseforge": "glodium", + "modrinth": "glodium" }, "name": { - "curseforge": "Glodium" + "curseforge": "Glodium", + "modrinth": "Glodium" }, "id": { - "curseforge": "957920" + "curseforge": "957920", + "modrinth": "UhW5uCKw" }, "files": [ { @@ -4481,6 +7055,28 @@ "required_dependencies": [], "size": 60550, "date_published": "2024-04-01T10:39:19.537Z" + }, + { + "type": "modrinth", + "file_name": "Glodium-1.20-1.5-forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/UhW5uCKw/versions/eoUaDkZf/Glodium-1.20-1.5-forge.jar", + "id": "eoUaDkZf", + "parent_id": "UhW5uCKw", + "hashes": { + "sha512": "57ba996845f588191b12f5e4c578b6f33a2b431facd54176dc61abba0f08f86cbc03c39cf795c7d5dea4926a923ec88e646a25d1a9a3a5bb9508fcb79a661a5e", + "sha1": "c7534db3248adfcf39a6158b423dfc9bfc99a378" + }, + "required_dependencies": [], + "size": 60550, + "date_published": "2025-02-04T13:08:25.693981Z" } ] }, @@ -4521,10 +7117,10 @@ ] }, { - "pakku_id": "ByQ927ZgDddtDJUH", + "pakku_id": "fGbENE8OFcqNQw7Z", "pakku_links": [ - "2wSbyvuI5uFxrZW6", - "0r9Ghrm3IbrHUVzA" + "rbYKnXWzT4megBI6", + "Nw8xTCQngHA15ilh" ], "type": "MOD", "side": "BOTH", @@ -4560,8 +7156,8 @@ "sha1": "65ae0462ffc07fc66ad13db7ca682c8b0cf34dfb" }, "required_dependencies": [ - "LNytGWDc", - "7tG215v7" + "7tG215v7", + "LNytGWDc" ], "size": 1531791, "date_published": "2025-07-05T02:56:36.684356Z" @@ -4594,49 +7190,20 @@ ] }, { - "pakku_id": "ath4OaDmkCtFku7l", - "type": "RESOURCE_PACK", - "slug": { - "curseforge": "gregtech-revival-32x" - }, - "name": { - "curseforge": "GregTech Revival 32x" - }, - "id": { - "curseforge": "964322" - }, - "files": [ - { - "type": "curseforge", - "file_name": "GregTech Revival 32x 1.19.2-1.20.1-1.21 ver 0.19.zip", - "mc_versions": [ - "1.20.1" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6546/954/GregTech Revival 32x 1.19.2-1.20.1-1.21 ver 0.19.zip", - "id": "6546954", - "parent_id": "964322", - "hashes": { - "sha1": "b0e072c301f713e7e1c2cc21a75646e7d64051f6", - "md5": "d2a57f619ac14ffd8705596b56a6e599" - }, - "required_dependencies": [], - "size": 8116393, - "date_published": "2025-05-19T12:40:51.413Z" - } - ] - }, - { - "pakku_id": "2wSbyvuI5uFxrZW6", + "pakku_id": "rbYKnXWzT4megBI6", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "gregtechceu-modern" + "curseforge": "gregtechceu-modern", + "modrinth": "gregtechceu-modern" }, "name": { - "curseforge": "GregTechCEu Modern" + "curseforge": "GregTech CEu Modern", + "modrinth": "GregTech CEu Modern" }, "id": { - "curseforge": "890405" + "curseforge": "890405", + "modrinth": "7tG215v7" }, "files": [ { @@ -4659,20 +7226,104 @@ "required_dependencies": [], "size": 11787892, "date_published": "2025-03-02T06:22:56.823Z" + }, + { + "type": "modrinth", + "file_name": "gtceu-1.20.1-1.6.4.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "beta", + "url": "https://cdn.modrinth.com/data/7tG215v7/versions/agSy623h/gtceu-1.20.1-1.6.4.jar", + "id": "agSy623h", + "parent_id": "7tG215v7", + "hashes": { + "sha512": "3915ddb104b7cd6b6a9c3213749c8d4c0a3c1eb07745fdbe97d881ab6661853ce0d9411aad0fde5c933648bafb03417455184abcc641e6af7f4c5fab92daa418", + "sha1": "8f9705cb309bc862f1abf684717bc6c87165604a" + }, + "required_dependencies": [], + "size": 11787892, + "date_published": "2025-03-02T06:23:05.388636Z" } ] }, { - "pakku_id": "dR8ZIMOQFxDrUtOO", - "type": "MOD", + "pakku_id": "M7ZZyOcbd5Zi4KR6", + "type": "RESOURCE_PACK", + "side": "CLIENT", "slug": { - "curseforge": "guideme" + "curseforge": "gregtech-revival-32x", + "modrinth": "gregtech-revival-32x" }, "name": { - "curseforge": "GuideME" + "curseforge": "GregTech Revival 32x", + "modrinth": "GregTech Revival 32x" }, "id": { - "curseforge": "1173950" + "curseforge": "964322", + "modrinth": "fUawEtti" + }, + "files": [ + { + "type": "curseforge", + "file_name": "GregTech Revival 32x 1.19.2-1.20.1-1.21 ver 0.19.zip", + "mc_versions": [ + "1.20.1" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6546/954/GregTech Revival 32x 1.19.2-1.20.1-1.21 ver 0.19.zip", + "id": "6546954", + "parent_id": "964322", + "hashes": { + "sha1": "b0e072c301f713e7e1c2cc21a75646e7d64051f6", + "md5": "d2a57f619ac14ffd8705596b56a6e599" + }, + "required_dependencies": [], + "size": 8116393, + "date_published": "2025-05-19T12:40:51.413Z" + }, + { + "type": "modrinth", + "file_name": "GregTech Revival 32x 1.19.2-1.20.1-1.21 ver 0.19.zip", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "minecraft" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/fUawEtti/versions/UuwQOAHO/GregTech Revival 32x 1.19.2-1.20.1-1.21 ver 0.19.zip", + "id": "UuwQOAHO", + "parent_id": "fUawEtti", + "hashes": { + "sha512": "0cede40c825cee8fd314abd9825b9e35f943aa5379fa6f81adc8643473c66cbef6a6ae846a546b8584514d857c21831d1bf81d6c6393fe7306dedd725c2570f1", + "sha1": "b0e072c301f713e7e1c2cc21a75646e7d64051f6" + }, + "required_dependencies": [], + "size": 8116393, + "date_published": "2025-05-19T12:41:42.204377Z" + } + ] + }, + { + "pakku_id": "E7ASIvLUKD1YJURv", + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "guideme", + "modrinth": "guideme" + }, + "name": { + "curseforge": "GuideME", + "modrinth": "GuideME" + }, + "id": { + "curseforge": "1173950", + "modrinth": "Ck4E7v7R" }, "files": [ { @@ -4695,20 +7346,48 @@ "required_dependencies": [], "size": 9412982, "date_published": "2025-06-21T15:02:39.537Z" + }, + { + "type": "modrinth", + "file_name": "guideme-20.1.11.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/Ck4E7v7R/versions/mfDRKud3/guideme-20.1.11.jar", + "id": "mfDRKud3", + "parent_id": "Ck4E7v7R", + "hashes": { + "sha512": "614c00ebaa8ce6430f3bcd91ad3256cd9443af9c7ca7dc9784a901ab110b71c7e31375e51836f3551445dd42d1494160b0c57b03170cd9f964bf10255c8307b5", + "sha1": "174f15f296fe4d1f74d618ca83b64fd9d9a215f7" + }, + "required_dependencies": [], + "size": 9412982, + "date_published": "2025-06-21T15:02:42.041968Z" } ] }, { - "pakku_id": "NlGPSspTORvnD5PG", + "pakku_id": "PNfvyU0p5Za4lSla", + "pakku_links": [ + "3Hn4sTVbBvKyQJJS" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "hang-glider" + "curseforge": "hang-glider", + "modrinth": "hang-glider" }, "name": { - "curseforge": "Hang Glider [Forge & Fabric]" + "curseforge": "Hang Glider [Forge & Fabric]", + "modrinth": "Hang Glider" }, "id": { - "curseforge": "852668" + "curseforge": "852668", + "modrinth": "uHWrqYcS" }, "files": [ { @@ -4733,20 +7412,47 @@ ], "size": 136076, "date_published": "2023-08-18T06:55:12.100Z" + }, + { + "type": "modrinth", + "file_name": "HangGlider-v8.0.1-1.20.1-Forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/uHWrqYcS/versions/kVfMYM11/HangGlider-v8.0.1-1.20.1-Forge.jar", + "id": "kVfMYM11", + "parent_id": "uHWrqYcS", + "hashes": { + "sha512": "8b55e4d6b7c5b7d1cde4bf1e8344111b74e9b2e2ce3019623c745e317559037a27e8be00a15ce52444493e6ca5a792d4fa878f980b2f467fd42c7de6fd2b7c36", + "sha1": "e4a5deeb545db6853ae4d668d0751228e641fc61" + }, + "required_dependencies": [ + "QAGBst4M" + ], + "size": 136076, + "date_published": "2023-08-18T06:55:17.015671Z" } ] }, { - "pakku_id": "uGCMoRHxFuJmKFoL", + "pakku_id": "ZhW43OKdjEIc58t0", "type": "RESOURCE_PACK", + "side": "CLIENT", "slug": { - "curseforge": "ilaores-tfc-32x" + "curseforge": "ilaores-tfc-32x", + "modrinth": "ilaores-tfc-32x" }, "name": { - "curseforge": "ILAORE's TFC 32x (terrafirmacraft, terra firma craft)" + "curseforge": "ILAORE's TFC 32x (terrafirmacraft, terra firma craft)", + "modrinth": "ILAORE's TFC 32x" }, "id": { - "curseforge": "952112" + "curseforge": "952112", + "modrinth": "vqrI97xw" }, "files": [ { @@ -4766,21 +7472,45 @@ "required_dependencies": [], "size": 41182882, "date_published": "2025-05-19T12:45:18.673Z" + }, + { + "type": "modrinth", + "file_name": "ILAORE's_TFC_32x_ver_0.16_1.20.1.zip", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "minecraft" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/vqrI97xw/versions/9lzEQKch/ILAORE's_TFC_32x_ver_0.16_1.20.1.zip", + "id": "9lzEQKch", + "parent_id": "vqrI97xw", + "hashes": { + "sha512": "481200b1caa77b05ec00c43043bd891a6c849b4ebcf19f7eb23cfafda7b90d2396460ca0651b44bbb869020c2ae91616bd080680b5abd893fe16e7d106b7c670", + "sha1": "52b2078da9933aead7b2ed180defa873998c07d1" + }, + "required_dependencies": [], + "size": 41182882, + "date_published": "2025-05-19T12:47:04.535170Z" } ] }, { - "pakku_id": "NVUIYx999yATkZmQ", + "pakku_id": "5DpBpI216q8EuQjk", "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "immediatelyfast" + "curseforge": "immediatelyfast", + "modrinth": "immediatelyfast" }, "name": { - "curseforge": "ImmediatelyFast" + "curseforge": "ImmediatelyFast", + "modrinth": "ImmediatelyFast" }, "id": { - "curseforge": "686911" + "curseforge": "686911", + "modrinth": "5ZwdcRci" }, "files": [ { @@ -4807,20 +7537,49 @@ "required_dependencies": [], "size": 425068, "date_published": "2025-07-08T20:02:54.510Z" + }, + { + "type": "modrinth", + "file_name": "ImmediatelyFast-Forge-1.5.1+1.20.4.jar", + "mc_versions": [ + "1.20", + "1.20.1", + "1.20.2", + "1.20.3", + "1.20.4" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/5ZwdcRci/versions/ShWk0wN3/ImmediatelyFast-Forge-1.5.1+1.20.4.jar", + "id": "ShWk0wN3", + "parent_id": "5ZwdcRci", + "hashes": { + "sha512": "723cb9e87efebbe5b3e7608ed0517df7e6ff31a168aaca33c85377053da50dd00af4263657a94751304ba4b12247d9687fe95882b0318af54b900041a0ad0fa1", + "sha1": "f1687e57a835e44a9ecf2f343cba5817936f8ae0" + }, + "required_dependencies": [], + "size": 425068, + "date_published": "2025-07-08T20:02:54.542116Z" } ] }, { - "pakku_id": "8uHbQw2UzFWkxSKA", + "pakku_id": "YgugggcSP5RL63VO", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "immersive-aircraft" + "curseforge": "immersive-aircraft", + "modrinth": "immersive-aircraft" }, "name": { - "curseforge": "Immersive Aircraft [Fabric/Forge]" + "curseforge": "Immersive Aircraft [Fabric/Forge]", + "modrinth": "Immersive Aircraft" }, "id": { - "curseforge": "666014" + "curseforge": "666014", + "modrinth": "x3HZvrj6" }, "files": [ { @@ -4843,20 +7602,45 @@ "required_dependencies": [], "size": 2391382, "date_published": "2025-07-07T20:39:55.963Z" + }, + { + "type": "modrinth", + "file_name": "immersive_aircraft-1.3.3+1.20.1-forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/x3HZvrj6/versions/GsVmbbkj/immersive_aircraft-1.3.3+1.20.1-forge.jar", + "id": "GsVmbbkj", + "parent_id": "x3HZvrj6", + "hashes": { + "sha512": "7b74442e161bb74538e0d8da34a81616daeea56a0da62db86113a78b3bf3c2b3a6b0e12f12454fd7c96092762f6b212ba57cb87eb1af2b242a4d5df4eca03055", + "sha1": "0749b5c005eafdcf5c8a19760c5c64b3cb021633" + }, + "required_dependencies": [], + "size": 2391382, + "date_published": "2025-07-07T20:40:00.415348Z" } ] }, { - "pakku_id": "bf1bmcGv2DvmfjYs", + "pakku_id": "uXH7zvdxA7RVMQTG", "type": "MOD", + "side": "SERVER", "slug": { - "curseforge": "immersive-optimization" + "curseforge": "immersive-optimization", + "modrinth": "immersive-optimization" }, "name": { - "curseforge": "Immersive Optimization" + "curseforge": "Immersive Optimization", + "modrinth": "Immersive Optimization" }, "id": { - "curseforge": "1163206" + "curseforge": "1163206", + "modrinth": "vNZgQmjg" }, "files": [ { @@ -4879,20 +7663,45 @@ "required_dependencies": [], "size": 43276, "date_published": "2025-05-03T11:05:27.870Z" + }, + { + "type": "modrinth", + "file_name": "immersive_optimization-forge-1.20.1-0.0.4.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/vNZgQmjg/versions/VkNy6izU/immersive_optimization-forge-1.20.1-0.0.4.jar", + "id": "VkNy6izU", + "parent_id": "vNZgQmjg", + "hashes": { + "sha512": "bbfd4c79e77f277d2707a5807445e4fbc72ecad321728b77e27b84ef7c6a73cc513564066f1e16d301dd7c534d1dd54034da9b2bdf1569ff8ac87c8aa18fc82d", + "sha1": "3de7b2a3b58741e0790f4ba94fbd941c3608a06f" + }, + "required_dependencies": [], + "size": 43276, + "date_published": "2025-05-03T11:05:28.966501Z" } ] }, { - "pakku_id": "koOe6mK4eoXZNeOE", + "pakku_id": "14Lq4eydOtkfdzrZ", "type": "RESOURCE_PACK", + "side": "CLIENT", "slug": { - "curseforge": "improved-applied-energistics-2" + "curseforge": "improved-applied-energistics-2", + "modrinth": "improved-applied-energistics-2" }, "name": { - "curseforge": "Improved Applied Energistics 2 (ae2, ae 2)" + "curseforge": "Improved Applied Energistics 2 (ae2, ae 2)", + "modrinth": "Improved Applied Energistics 2" }, "id": { - "curseforge": "891816" + "curseforge": "891816", + "modrinth": "dOV2wnYX" }, "files": [ { @@ -4914,20 +7723,45 @@ "required_dependencies": [], "size": 1987955, "date_published": "2024-01-28T10:09:14.360Z" + }, + { + "type": "modrinth", + "file_name": "Improved+AE+2+ver+0.02+-+32x32.zip", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "minecraft" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/dOV2wnYX/versions/dx2qVbMr/Improved+AE+2+ver+0.02+-+32x32.zip", + "id": "dx2qVbMr", + "parent_id": "dOV2wnYX", + "hashes": { + "sha512": "4e325591554e7033e5cb0910efa8fd1dbb1c0798d0e01c8e7f935b43b7d4a8ae850143c2866c8c5514e2d70a1a39d852a701759f4b0b13cdcec5acec67a4d3ee", + "sha1": "d3e66e4dbe2507f946fb3814dd497a0e479310d1" + }, + "required_dependencies": [], + "size": 1736883, + "date_published": "2023-12-20T22:17:54.786513Z" } ] }, { - "pakku_id": "Zc4qMhc9dM76cC0W", + "pakku_id": "kPsJ7kAbZgiJic9u", "type": "RESOURCE_PACK", + "side": "CLIENT", "slug": { - "curseforge": "improved-create-32x" + "curseforge": "improved-create-32x", + "modrinth": "improved-create-32x" }, "name": { - "curseforge": "Improved Create 32x" + "curseforge": "Improved Create 32x", + "modrinth": "Improved Create 32x" }, "id": { - "curseforge": "973588" + "curseforge": "973588", + "modrinth": "ZyLGK5YD" }, "files": [ { @@ -4947,6 +7781,29 @@ "required_dependencies": [], "size": 7597953, "date_published": "2024-09-02T11:57:37.443Z" + }, + { + "type": "modrinth", + "file_name": "Improved Create 32x ver 0.01 1.18.2-1.20.1.zip", + "mc_versions": [ + "1.18.2", + "1.19.2", + "1.20.1" + ], + "loaders": [ + "minecraft" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/ZyLGK5YD/versions/X9NZl4dn/Improved Create 32x ver 0.01 1.18.2-1.20.1.zip", + "id": "X9NZl4dn", + "parent_id": "ZyLGK5YD", + "hashes": { + "sha512": "2f4fbf03fa35eb8ce3fdeb2bdad70336081e7febae5f1bf1c4c40fe4b8f0966b3ea7d1748b161ef982a906aa65e54abe83c3dd6ac07542d1cf8baec1359a1911", + "sha1": "4638f46950c971caa8cb9710d509da19bf63fd58" + }, + "required_dependencies": [], + "size": 6958706, + "date_published": "2024-02-11T22:13:21.009179Z" } ] }, @@ -4990,17 +7847,20 @@ ] }, { - "pakku_id": "fmEwFJByF5n2FrkH", + "pakku_id": "UK9X3qEbItx0f3n1", "type": "MOD", "side": "BOTH", "slug": { - "curseforge": "inventory-tweaks-refoxed" + "curseforge": "inventory-tweaks-refoxed", + "modrinth": "inventory-tweaks-refoxed" }, "name": { - "curseforge": "Inventory Tweaks - ReFoxed" + "curseforge": "Inventory Tweaks - ReFoxed", + "modrinth": "Inventory Tweaks: ReFoxed" }, "id": { - "curseforge": "976858" + "curseforge": "976858", + "modrinth": "uqnMI1kq" }, "files": [ { @@ -5024,21 +7884,114 @@ "required_dependencies": [], "size": 74491, "date_published": "2024-05-04T18:03:07.010Z" + }, + { + "type": "modrinth", + "file_name": "invtweaks-1.20.1-1.1.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/uqnMI1kq/versions/noMmNlEf/invtweaks-1.20.1-1.1.0.jar", + "id": "noMmNlEf", + "parent_id": "uqnMI1kq", + "hashes": { + "sha512": "3303d72462d4f863625914100cbbc050e3c88a23203b1010d194524518145ad859a9a30e714326a1866ad129860bc4e28a658a77069e595aa40f1507051f4dd5", + "sha1": "1550d40fd570ae88839382ea888dba9b5c3bd29c" + }, + "required_dependencies": [], + "size": 74491, + "date_published": "2024-05-04T18:03:08.340558Z" } ] }, { - "pakku_id": "I25wHE92iKmdYAz9", + "pakku_id": "8w2abFuWz4D6JMqT", + "pakku_links": [ + "y0UC3kpLVhVgLz9b" + ], "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "itemphysic-lite" + "curseforge": "iris-flywheel-compat", + "modrinth": "iris-flw-compat" }, "name": { - "curseforge": "ItemPhysic Lite" + "curseforge": "Iris & Oculus Flywheel Compat", + "modrinth": "Iris & Oculus Flywheel Compat" }, "id": { - "curseforge": "270441" + "curseforge": "659897", + "modrinth": "ndHYMY2K" + }, + "files": [ + { + "type": "curseforge", + "file_name": "oculus-flywheel-compat-Forge-2.0.3.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "beta", + "url": "https://edge.forgecdn.net/files/6694/861/oculus-flywheel-compat-Forge-2.0.3.jar", + "id": "6694861", + "parent_id": "659897", + "hashes": { + "sha1": "a11227479ddcddcb0eed3f9c3717c53fd5a47222", + "md5": "dd9bfddf81ea63bd5b4267ab7d363f26" + }, + "required_dependencies": [ + "581495" + ], + "size": 117226, + "date_published": "2025-06-25T15:25:29.200Z" + }, + { + "type": "modrinth", + "file_name": "oculus-flywheel-compat-Forge-2.0.3.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "beta", + "url": "https://cdn.modrinth.com/data/ndHYMY2K/versions/dE1A45cG/oculus-flywheel-compat-Forge-2.0.3.jar", + "id": "dE1A45cG", + "parent_id": "ndHYMY2K", + "hashes": { + "sha512": "efa8b7fbc5b37b4ec3542d1594d69970adc48fc18e6d84c956265e2a0f63428c566f0864199404863d20edcc41ac4042a40225388de959ff93f35820c6f5b878", + "sha1": "a11227479ddcddcb0eed3f9c3717c53fd5a47222" + }, + "required_dependencies": [ + "GchcoXML" + ], + "size": 117226, + "date_published": "2025-06-25T15:25:31.659533Z" + } + ] + }, + { + "pakku_id": "IiVfXdShLIwbXMtg", + "type": "MOD", + "side": "CLIENT", + "slug": { + "curseforge": "itemphysic-lite", + "modrinth": "itemphysic-lite" + }, + "name": { + "curseforge": "ItemPhysic Lite", + "modrinth": "ItemPhysic Lite" + }, + "id": { + "curseforge": "270441", + "modrinth": "OuyCgP8t" }, "files": [ { @@ -5064,23 +8017,51 @@ ], "size": 19487, "date_published": "2025-01-02T15:19:28.153Z" + }, + { + "type": "modrinth", + "file_name": "ItemPhysicLite_FORGE_v1.6.6_mc1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/OuyCgP8t/versions/pblKjZQf/ItemPhysicLite_FORGE_v1.6.6_mc1.20.1.jar", + "id": "pblKjZQf", + "parent_id": "OuyCgP8t", + "hashes": { + "sha512": "7458b25e6243c196ecac5363ce6b30713eb93c043226906d6ad6b9774985831f67a250a3057183e6f9721cbdf56c6ebdd3db3769c1da66c7d07ba4d0d5878d1b", + "sha1": "4fc87af53afb8610e77710b30340783fc6bd0ccf" + }, + "required_dependencies": [ + "OsZiaDHq" + ], + "size": 19487, + "date_published": "2025-01-02T15:19:25.955410Z" } ] }, { - "pakku_id": "d2JtcMNOYhuPhetG", + "pakku_id": "f6XxFE6O8qGnlY7T", "pakku_links": [ - "4Lh5rlmEmqZFUmGt" + "3VXkRfGFKQ4l6TlN" ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "jade-addons" + "curseforge": "jade-addons", + "modrinth": "jade-addons-forge" }, "name": { - "curseforge": "Jade Addons (Neo/Forge)" + "curseforge": "Jade Addons (Neo/Forge)", + "modrinth": "Jade Addons (Neo/Forge)" }, "id": { - "curseforge": "583345" + "curseforge": "583345", + "modrinth": "xuDOzCLy" }, "files": [ { @@ -5107,20 +8088,49 @@ ], "size": 91771, "date_published": "2025-03-07T12:14:18.823Z" + }, + { + "type": "modrinth", + "file_name": "JadeAddons-1.20.1-Forge-5.5.0.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/xuDOzCLy/versions/AvIT9ADi/JadeAddons-1.20.1-Forge-5.5.0.jar", + "id": "AvIT9ADi", + "parent_id": "xuDOzCLy", + "hashes": { + "sha512": "a11d4604453f7aa7cbeafcd2b399c7e39e66a5b38cccdbc7ad7dbce3f79f0a632568d28665ffb22a29676c78ad2089d9bf13793518fc453270a0bbbbbcfd91fd", + "sha1": "5e74e87f61cf05c18457f09dfa1cb70332b6b777" + }, + "required_dependencies": [ + "nvQzSEkH" + ], + "size": 91771, + "date_published": "2025-03-07T12:14:24.262047Z" } ] }, { - "pakku_id": "4Lh5rlmEmqZFUmGt", + "pakku_id": "3VXkRfGFKQ4l6TlN", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "jade" + "curseforge": "jade", + "modrinth": "jade" }, "name": { - "curseforge": "Jade 🔍" + "curseforge": "Jade 🔍", + "modrinth": "Jade 🔍" }, "id": { - "curseforge": "324717" + "curseforge": "324717", + "modrinth": "nvQzSEkH" }, "files": [ { @@ -5145,20 +8155,47 @@ "required_dependencies": [], "size": 550551, "date_published": "2025-03-06T16:47:24.837Z" + }, + { + "type": "modrinth", + "file_name": "Jade-1.20.1-Forge-11.13.1.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "beta", + "url": "https://cdn.modrinth.com/data/nvQzSEkH/versions/9gf6jOO0/Jade-1.20.1-Forge-11.13.1.jar", + "id": "9gf6jOO0", + "parent_id": "nvQzSEkH", + "hashes": { + "sha512": "3b8c4e273b70c30781accb27b3c307e9a8f676c2f3e6987fb9864588c4c0b93cbfd20bbcbe697dada6474b4d652ce686f98d3f72346d4946e573c0435674d8cf", + "sha1": "0e5af2bdca3a600d3f0cf28cc9f735542d19e7fc" + }, + "required_dependencies": [], + "size": 550551, + "date_published": "2025-03-06T16:47:31.546464Z" } ] }, { - "pakku_id": "goJJwU9WNFEvXVqN", + "pakku_id": "IaNjixC9jfe0gewf", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "jei" + "curseforge": "jei", + "modrinth": "jei" }, "name": { - "curseforge": "Just Enough Items (JEI)" + "curseforge": "Just Enough Items (JEI)", + "modrinth": "Just Enough Items" }, "id": { - "curseforge": "238222" + "curseforge": "238222", + "modrinth": "u6dRKJwZ" }, "files": [ { @@ -5170,7 +8207,7 @@ "loaders": [ "forge" ], - "release_type": "beta", + "release_type": "release", "url": "https://edge.forgecdn.net/files/6600/311/jei-1.20.1-forge-15.20.0.112.jar", "id": "6600311", "parent_id": "238222", @@ -5181,21 +8218,45 @@ "required_dependencies": [], "size": 1385600, "date_published": "2025-05-31T05:20:27.750Z" + }, + { + "type": "modrinth", + "file_name": "jei-1.20.1-forge-15.20.0.112.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "beta", + "url": "https://cdn.modrinth.com/data/u6dRKJwZ/versions/4r3Kp7U7/jei-1.20.1-forge-15.20.0.112.jar", + "id": "4r3Kp7U7", + "parent_id": "u6dRKJwZ", + "hashes": { + "sha512": "12e3d1ff7cc7db7bb8fef6fe1fbc5136ccd80b5094f47d6cd08119368aec72a967d372caa8d786a4f6782c8ee70a109628f0942bb62736352cf4121d21e1b36b", + "sha1": "f12b3781af6337794ae6e010420a97585360ea2f" + }, + "required_dependencies": [], + "size": 1385600, + "date_published": "2025-05-31T05:20:38.779012Z" } ] }, { - "pakku_id": "n2o9XeuYgg4dKWzC", + "pakku_id": "NZy1xTZhTOBxDiDt", "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "konkrete" + "curseforge": "konkrete", + "modrinth": "konkrete" }, "name": { - "curseforge": "Konkrete [Forge/NeoForge]" + "curseforge": "Konkrete [Forge/NeoForge]", + "modrinth": "Konkrete" }, "id": { - "curseforge": "410295" + "curseforge": "410295", + "modrinth": "J81TRJWm" }, "files": [ { @@ -5219,20 +8280,46 @@ "required_dependencies": [], "size": 625185, "date_published": "2024-01-13T03:30:23.267Z" + }, + { + "type": "modrinth", + "file_name": "konkrete_forge_1.8.0_MC_1.20-1.20.1.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/J81TRJWm/versions/skYziQQL/konkrete_forge_1.8.0_MC_1.20-1.20.1.jar", + "id": "skYziQQL", + "parent_id": "J81TRJWm", + "hashes": { + "sha512": "df79a0c64da14ca2b27dc04a72d85ce5c8e7c498e7b72da4d7bfddd592bb4bac165e70afe33fac97446e4996fffd8003350df07ede2a77233dddec77b8ff0ee7", + "sha1": "2019d821bed9071daabed43979433a5473ceee49" + }, + "required_dependencies": [], + "size": 625185, + "date_published": "2024-01-13T03:30:28.707265Z" } ] }, { - "pakku_id": "VOxF6hJfYbQv9uFg", + "pakku_id": "oC0unMVGatUQIsDP", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "kotlin-for-forge" + "curseforge": "kotlin-for-forge", + "modrinth": "kotlin-for-forge" }, "name": { - "curseforge": "Kotlin for Forge" + "curseforge": "Kotlin for Forge", + "modrinth": "Kotlin for Forge" }, "id": { - "curseforge": "351264" + "curseforge": "351264", + "modrinth": "ordsPcFz" }, "files": [ { @@ -5260,6 +8347,34 @@ "required_dependencies": [], "size": 7193768, "date_published": "2024-06-05T23:45:43.380Z" + }, + { + "type": "modrinth", + "file_name": "kotlinforforge-4.11.0-all.jar", + "mc_versions": [ + "1.19.3", + "1.19.4", + "1.20", + "1.20.1", + "1.20.2", + "1.20.3", + "1.20.4" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/ordsPcFz/versions/hmeyC41q/kotlinforforge-4.11.0-all.jar", + "id": "hmeyC41q", + "parent_id": "ordsPcFz", + "hashes": { + "sha512": "d72707078f0c4fde78981c638ca976722f22a64ce74bdb489258790fe9886d763a7b1e0dfbc5429ddd3105d8a65d177f06242dfb1457e219e56c70dd3e8cbf2c", + "sha1": "1fd8acfd75a2be2dc3cdcc7e816482b2e427d6e5" + }, + "required_dependencies": [], + "size": 7193768, + "date_published": "2024-06-06T01:10:20.253226Z" } ] }, @@ -5301,19 +8416,23 @@ ] }, { - "pakku_id": "9BKEvabQWNVcGwsX", + "pakku_id": "bf2svog06ajj5JHE", "pakku_links": [ - "TEm6QwNhjQ1RU8Po" + "4PlLE7zCqQsPdMTc" ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "kubejs" + "curseforge": "kubejs", + "modrinth": "kubejs" }, "name": { - "curseforge": "KubeJS" + "curseforge": "KubeJS", + "modrinth": "KubeJS" }, "id": { - "curseforge": "238086" + "curseforge": "238086", + "modrinth": "umyGl7zF" }, "files": [ { @@ -5339,20 +8458,48 @@ ], "size": 1654660, "date_published": "2024-10-28T09:20:33.537Z" + }, + { + "type": "modrinth", + "file_name": "kubejs-forge-2001.6.5-build.16.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/umyGl7zF/versions/g5igndAv/kubejs-forge-2001.6.5-build.16.jar", + "id": "g5igndAv", + "parent_id": "umyGl7zF", + "hashes": { + "sha512": "819f730d2a9d980bb246d30d67793f06f6a1608381c7ce3577cf25e70dd3d595271f8fcfbf3ae037168842f660e79e49846756bd18c79793b310ff18ab826cbd", + "sha1": "93fcf0eacc5dc08a4f719eaaed1dc93f0dc80f66" + }, + "required_dependencies": [ + "sk9knFPE", + "lhGA9TYQ" + ], + "size": 1654660, + "date_published": "2024-10-28T09:20:35.912552Z" } ] }, { - "pakku_id": "aE6o1fmpUeVucM7o", + "pakku_id": "Y6Da87s1FKPYq0UK", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "kubejs-create" + "curseforge": "kubejs-create", + "modrinth": "kubejs-create" }, "name": { - "curseforge": "KubeJS Create" + "curseforge": "KubeJS Create", + "modrinth": "KubeJS Create" }, "id": { - "curseforge": "429371" + "curseforge": "429371", + "modrinth": "T38eAZQC" }, "files": [ { @@ -5378,20 +8525,51 @@ ], "size": 30960, "date_published": "2025-03-05T00:02:55.447Z" + }, + { + "type": "modrinth", + "file_name": "kubejs-create-forge-2001.3.0-build.8.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/T38eAZQC/versions/5vppyenb/kubejs-create-forge-2001.3.0-build.8.jar", + "id": "5vppyenb", + "parent_id": "T38eAZQC", + "hashes": { + "sha512": "1c6fa2b3dc52683bdf124ebfc507ad5adb5f1ceb147181466be4e495bc6eab1411976911477df538369ff2529607cb73bf3b4a05a8ed2f24804f4891d7635981", + "sha1": "cbeb6643d1cea979a7e01c87cfb08b9210a1c393" + }, + "required_dependencies": [ + "LNytGWDc", + "umyGl7zF" + ], + "size": 30960, + "date_published": "2025-03-05T00:02:57.116010Z" } ] }, { - "pakku_id": "aOLoEIenRoUQ4zsC", + "pakku_id": "vhVFMlaJp9nsn7Q5", + "pakku_links": [ + "64uacGcEw697jVGs" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "kubejs-tfc" + "curseforge": "kubejs-tfc", + "modrinth": "kubejs-tfc" }, "name": { - "curseforge": "KubeJS TFC" + "curseforge": "KubeJS TFC", + "modrinth": "KubeJS TFC" }, "id": { - "curseforge": "841001" + "curseforge": "841001", + "modrinth": "mhtClB2S" }, "files": [ { @@ -5418,23 +8596,52 @@ ], "size": 829256, "date_published": "2025-06-28T21:03:46.970Z" + }, + { + "type": "modrinth", + "file_name": "kubejs_tfc-1.20.1-1.3.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/mhtClB2S/versions/rwVy5i7b/kubejs_tfc-1.20.1-1.3.1.jar", + "id": "rwVy5i7b", + "parent_id": "mhtClB2S", + "hashes": { + "sha512": "405efa4da88bfe1c15a747994964436630f0b94c7405a9eb3e2e7b94b4298bb27bded2146213c74ddb5b38e36f107ed5f1d741a919d4c55b1f8410d9f6b50df1", + "sha1": "1011fb99d8fd740aaccb538ac742866d2a3f44ee" + }, + "required_dependencies": [ + "umyGl7zF", + "JaCEZUhg" + ], + "size": 829256, + "date_published": "2025-06-28T21:02:05.947068Z" } ] }, { - "pakku_id": "ZsCm3zPdnqqiRP9E", + "pakku_id": "R7Em6znehT4B2pHu", "pakku_links": [ - "Odyk7EVsuYynAJeZ" + "QDZyqZ3QAXN6Vk9L" ], "type": "MOD", + "side": "SERVER", "slug": { - "curseforge": "let-me-despawn" + "curseforge": "let-me-despawn", + "modrinth": "lmd" }, "name": { - "curseforge": "Let Me Despawn" + "curseforge": "Let Me Despawn", + "modrinth": "Let Me Despawn" }, "id": { - "curseforge": "663477" + "curseforge": "663477", + "modrinth": "vE2FN5qn" }, "files": [ { @@ -5464,20 +8671,50 @@ ], "size": 14789, "date_published": "2025-03-16T11:34:03.527Z" + }, + { + "type": "modrinth", + "file_name": "letmedespawn-1.20.x-forge-1.5.0.jar", + "mc_versions": [ + "1.20.1", + "1.20.2", + "1.20.3", + "1.20.4" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/vE2FN5qn/versions/1VmupN41/letmedespawn-1.20.x-forge-1.5.0.jar", + "id": "1VmupN41", + "parent_id": "vE2FN5qn", + "hashes": { + "sha512": "22e5e7a3e4eb1e238ff420108f6fb138e2fc47335a8fbe4cef093cef32d7aaf710de00ba0450bfee570aa2857989b0e9d7abb8600720386e185ffac5670505c1", + "sha1": "878dd35df02e1e17b7eb16113147f964eda8847f" + }, + "required_dependencies": [ + "Gi02250Z" + ], + "size": 14789, + "date_published": "2025-03-16T11:37:47.063456Z" } ] }, { - "pakku_id": "KSu6mAoMaDyDywk9", + "pakku_id": "OcjL6nfubOOv2SoV", "type": "MOD", + "side": "SERVER", "slug": { - "curseforge": "lmft" + "curseforge": "lmft", + "modrinth": "lmft" }, "name": { - "curseforge": "Load My F***ing Tags" + "curseforge": "Load My F***ing Tags", + "modrinth": "Load My F***ing Tags" }, "id": { - "curseforge": "656346" + "curseforge": "656346", + "modrinth": "67kVxsaO" }, "files": [ { @@ -5503,20 +8740,46 @@ "required_dependencies": [], "size": 178625, "date_published": "2023-11-23T00:33:22.407Z" + }, + { + "type": "modrinth", + "file_name": "lmft-1.0.4+1.20.1-forge.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/67kVxsaO/versions/XJdD8eB6/lmft-1.0.4+1.20.1-forge.jar", + "id": "XJdD8eB6", + "parent_id": "67kVxsaO", + "hashes": { + "sha512": "41c4fb7874692b457cee5205911fccce305adb43c0dd237486926e856d15500996be551cfee1ad9aefaaed0a72422e7677c26980ac08313b4198438264c2a4bd", + "sha1": "3c0dc40afb617ca2b5b2bbb4f7e831bd75009753" + }, + "required_dependencies": [], + "size": 178327, + "date_published": "2024-01-20T03:00:07.592511Z" } ] }, { - "pakku_id": "dMwM2F5tW7zNE4BZ", + "pakku_id": "9RZJfprxqWyxsrEF", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "lootjs" + "curseforge": "lootjs", + "modrinth": "lootjs" }, "name": { - "curseforge": "LootJS: KubeJS Addon" + "curseforge": "LootJS: KubeJS Addon", + "modrinth": "LootJS: KubeJS Addon" }, "id": { - "curseforge": "570630" + "curseforge": "570630", + "modrinth": "fJFETWDN" }, "files": [ { @@ -5540,20 +8803,46 @@ "required_dependencies": [], "size": 242227, "date_published": "2025-05-08T14:06:39.737Z" + }, + { + "type": "modrinth", + "file_name": "lootjs-forge-1.20.1-2.13.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/fJFETWDN/versions/RjTRvo4g/lootjs-forge-1.20.1-2.13.0.jar", + "id": "RjTRvo4g", + "parent_id": "fJFETWDN", + "hashes": { + "sha512": "c8652b1ccffccd66885dc9dc89490afe46f055c9d9ede2fef24e06978db5957815e6125974670263ab15c1d60d7106954f4d10aff48cd7f1e04277e351d1aa2c", + "sha1": "fdf90acf177c19bcbfaa08527f6568bd3e6e622e" + }, + "required_dependencies": [], + "size": 242227, + "date_published": "2025-05-08T14:06:39.621822Z" } ] }, { - "pakku_id": "lQaXiiqpM9VoHX3V", + "pakku_id": "IEazflC8zJVMtW5t", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "lootr" + "curseforge": "lootr", + "modrinth": "lootr" }, "name": { - "curseforge": "Lootr (Forge & NeoForge)" + "curseforge": "Lootr (Forge & NeoForge)", + "modrinth": "Lootr" }, "id": { - "curseforge": "361276" + "curseforge": "361276", + "modrinth": "EltpO5cN" }, "files": [ { @@ -5577,20 +8866,51 @@ "required_dependencies": [], "size": 458532, "date_published": "2025-03-22T03:44:13.050Z" + }, + { + "type": "modrinth", + "file_name": "lootr-forge-1.20-0.7.35.91.jar", + "mc_versions": [ + "1.19.3", + "1.19.4", + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/EltpO5cN/versions/HmhkyU8X/lootr-forge-1.20-0.7.35.91.jar", + "id": "HmhkyU8X", + "parent_id": "EltpO5cN", + "hashes": { + "sha512": "9b576ec6008a5c86ce9ea218285bc133f49e9eaf8f4b854fa49170a9cc3c8de028b236f2e563493405732277fd1d2909520d5961076b3ddbffcb0c7c539b4826", + "sha1": "4175b32e3bc25b05c45cc84f70b585279a871d3c" + }, + "required_dependencies": [], + "size": 458532, + "date_published": "2025-07-15T09:13:32.531920Z" } ] }, { - "pakku_id": "sgCJXFvM6thm9Xl9", + "pakku_id": "lLYosSs7SJzBZgZP", + "pakku_links": [ + "mYY02F5XR0fB6HXF" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "merequester" + "curseforge": "merequester", + "modrinth": "merequester" }, "name": { - "curseforge": "ME Requester" + "curseforge": "ME Requester", + "modrinth": "ME Requester" }, "id": { - "curseforge": "688367" + "curseforge": "688367", + "modrinth": "E6BFl96N" }, "files": [ { @@ -5616,24 +8936,52 @@ ], "size": 171854, "date_published": "2024-09-03T16:16:01.980Z" + }, + { + "type": "modrinth", + "file_name": "merequester-forge-1.20.1-1.1.5.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/E6BFl96N/versions/Gm7oyczu/merequester-forge-1.20.1-1.1.5.jar", + "id": "Gm7oyczu", + "parent_id": "E6BFl96N", + "hashes": { + "sha512": "cc2ed5b2b947bf9327778c4bf4cd5324490060386169fe1a0b09fb78f4b4a46117c07a2355eaccd40abf834ce65c88b5e53a10ca3c374aa684d5ccb83457993f", + "sha1": "24e6611df470afd957eafd16c43890b7214e3da9" + }, + "required_dependencies": [ + "XxWD5pD3" + ], + "size": 171854, + "date_published": "2024-09-03T16:15:59.923303Z" } ] }, { - "pakku_id": "EK0TleuSfevVsHQK", + "pakku_id": "KnRbPzfGJGcr62lo", "pakku_links": [ - "0IQGejKaqyQTLzbL", - "chnSa7MrxlvxvEWU" + "3QJUyVc5jxbc7OFC", + "mYY02F5XR0fB6HXF" ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "mega-cells" + "curseforge": "mega-cells", + "modrinth": "mega" }, "name": { - "curseforge": "MEGA Cells" + "curseforge": "MEGA Cells", + "modrinth": "MEGA Cells" }, "id": { - "curseforge": "622112" + "curseforge": "622112", + "modrinth": "jjuIRIVr" }, "files": [ { @@ -5660,20 +9008,49 @@ ], "size": 387196, "date_published": "2025-02-09T14:26:09.890Z" + }, + { + "type": "modrinth", + "file_name": "megacells-forge-2.4.6-1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/jjuIRIVr/versions/SH2D1n3s/megacells-forge-2.4.6-1.20.1.jar", + "id": "SH2D1n3s", + "parent_id": "jjuIRIVr", + "hashes": { + "sha512": "a4fe5ee459310785e3bfb2ec7ceab5fb817e2faa26397599cbb6a114147a0199254df2e35d110aa31b07379ac36a246fa4d5dac07020384316eb47ba6b322e25", + "sha1": "ed6fd5eb0c782529be03f199d66d9a7c9eb2a518" + }, + "required_dependencies": [ + "XxWD5pD3", + "9s6osm5g" + ], + "size": 387196, + "date_published": "2025-02-09T14:26:13.288593Z" } ] }, { - "pakku_id": "tMQF7gU2uuES2MfT", + "pakku_id": "vcsfO8voRVsKqbxv", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "man-of-many-planes" + "curseforge": "man-of-many-planes", + "modrinth": "man-of-many-planes" }, "name": { - "curseforge": "Man of Many Planes" + "curseforge": "Man of Many Planes", + "modrinth": "Man of Many Planes" }, "id": { - "curseforge": "984493" + "curseforge": "984493", + "modrinth": "9qdTHi0q" }, "files": [ { @@ -5698,20 +9075,45 @@ ], "size": 309137, "date_published": "2024-09-11T12:05:28.360Z" + }, + { + "type": "modrinth", + "file_name": "man_of_many_planes-0.2.0+1.20.1-forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/9qdTHi0q/versions/uZNB5Zrk/man_of_many_planes-0.2.0+1.20.1-forge.jar", + "id": "uZNB5Zrk", + "parent_id": "9qdTHi0q", + "hashes": { + "sha512": "82d78136ea735447b2a8ed929e26776b508b973b1c9200dffb3cc7de76b9e138b6563180fa906c46d9fa726aa1012e139f03e7fd008815b20b1066ae484d149c", + "sha1": "0037367a8af0d55a1b7f4c43dfc94cbdaca281db" + }, + "required_dependencies": [], + "size": 309137, + "date_published": "2024-09-11T12:05:29.630931Z" } ] }, { - "pakku_id": "eEoHFXI96tqQP6A7", + "pakku_id": "O1aAdLiNfpMEPlMt", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "measurements" + "curseforge": "measurements", + "modrinth": "measurements" }, "name": { - "curseforge": "Measurements" + "curseforge": "Measurements", + "modrinth": "Measurements" }, "id": { - "curseforge": "478559" + "curseforge": "478559", + "modrinth": "wLINU2AB" }, "files": [ { @@ -5735,20 +9137,46 @@ "required_dependencies": [], "size": 43445, "date_published": "2025-04-15T17:52:44.783Z" + }, + { + "type": "modrinth", + "file_name": "Measurements-forge-1.20.1-2.0.1.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/wLINU2AB/versions/zvV0pT1y/Measurements-forge-1.20.1-2.0.1.jar", + "id": "zvV0pT1y", + "parent_id": "wLINU2AB", + "hashes": { + "sha512": "0d06795b5637e0c1b4f75ff6a1b92888e62c9c8feba3156577afadbff70c506e04e3672655f0bc9432f6233023ede39745963504380e7f8fc74e08b762555627", + "sha1": "ea7c41e478903c3b9ccb37b67ff3ede9bdcaee9c" + }, + "required_dependencies": [], + "size": 43444, + "date_published": "2025-04-15T17:53:12.653721Z" } ] }, { - "pakku_id": "Sd1WBrIs9dOQhqCN", + "pakku_id": "NCIijaHzWSL3jBFa", "type": "MOD", + "side": "CLIENT", "slug": { - "curseforge": "melody" + "curseforge": "melody", + "modrinth": "melody" }, "name": { - "curseforge": "Melody" + "curseforge": "Melody", + "modrinth": "Melody" }, "id": { - "curseforge": "938643" + "curseforge": "938643", + "modrinth": "CVT4pFB2" }, "files": [ { @@ -5774,6 +9202,30 @@ "required_dependencies": [], "size": 37178, "date_published": "2024-02-15T10:46:05.407Z" + }, + { + "type": "modrinth", + "file_name": "melody_forge_1.0.3_MC_1.20.1-1.20.4.jar", + "mc_versions": [ + "1.20.1", + "1.20.2", + "1.20.3", + "1.20.4" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/CVT4pFB2/versions/lJlW5r8R/melody_forge_1.0.3_MC_1.20.1-1.20.4.jar", + "id": "lJlW5r8R", + "parent_id": "CVT4pFB2", + "hashes": { + "sha512": "43c60d0cb98b1642d663e3cea68d50c01e9be82361851bf40c5c869e6593499aaf4b410d891d07a083f3c4b2df7fc06b2f8fbaa3c661a5061d46e250c017d30f", + "sha1": "e0942d396a70c09038e6c2e5e1da6505178249b8" + }, + "required_dependencies": [], + "size": 37178, + "date_published": "2024-02-15T10:46:09.435735Z" } ] }, @@ -5796,7 +9248,7 @@ "files": [ { "type": "modrinth", - "file_name": "modernfix-forge-5.24.1+mc1.20.1.jar", + "file_name": "modernfix-forge-5.24.3+mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -5804,20 +9256,20 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/nmDcB62a/versions/DdUByV9S/modernfix-forge-5.24.1+mc1.20.1.jar", - "id": "DdUByV9S", + "url": "https://cdn.modrinth.com/data/nmDcB62a/versions/EAQLVtM2/modernfix-forge-5.24.3+mc1.20.1.jar", + "id": "EAQLVtM2", "parent_id": "nmDcB62a", "hashes": { - "sha512": "564764194983bf5d78dd94cfce621ff0e7936cb71019491ed0052bad30ed520c251ed6f6e82a3d8c3450362063b2686c8e460bf0d2e03a6b6a38477ade41d7da", - "sha1": "2c63c918263ad09c64b7bbd290f881aa67a8fc73" + "sha512": "da085b988b270450b3606705c50da504d6f04d5c357521d9acf888c1dbe8b267a5a342e2be555919471ce4aa105268a176e41f801adad991f27e495b3c3c354c", + "sha1": "53a839bb1b72a72a01f8906873173808d56a72b7" }, "required_dependencies": [], - "size": 876644, - "date_published": "2025-07-03T12:23:02.978112Z" + "size": 879295, + "date_published": "2025-07-13T23:27:09.627766Z" }, { "type": "curseforge", - "file_name": "modernfix-forge-5.24.1+mc1.20.1.jar", + "file_name": "modernfix-forge-5.24.3+mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -5825,35 +9277,39 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6725/223/modernfix-forge-5.24.1+mc1.20.1.jar", - "id": "6725223", + "url": "https://edge.forgecdn.net/files/6766/127/modernfix-forge-5.24.3+mc1.20.1.jar", + "id": "6766127", "parent_id": "790626", "hashes": { - "sha1": "2c63c918263ad09c64b7bbd290f881aa67a8fc73", - "md5": "a45ede91483ed20ee311b14e256b1624" + "sha1": "53a839bb1b72a72a01f8906873173808d56a72b7", + "md5": "9dc3ef7fb72521888ea3b04f26ba86c3" }, "required_dependencies": [], - "size": 876644, - "date_published": "2025-07-03T12:22:58.990Z" + "size": 879295, + "date_published": "2025-07-13T23:27:06.240Z" } ] }, { - "pakku_id": "vM88oJ8vHOUgPzGf", + "pakku_id": "YC1KO8KYicq9lcXa", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "modernmarkings" + "curseforge": "modernmarkings", + "modrinth": "modernmarkings" }, "name": { - "curseforge": "ModernMarkings" + "curseforge": "ModernMarkings", + "modrinth": "ModernMarkings" }, "id": { - "curseforge": "1267477" + "curseforge": "1267477", + "modrinth": "efD07SBK" }, "files": [ { "type": "curseforge", - "file_name": "ags_modernmarkings-0.4.2-1.20.1.jar", + "file_name": "ags_modernmarkings-0.4.3-1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -5861,34 +9317,55 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6659/716/ags_modernmarkings-0.4.2-1.20.1.jar", - "id": "6659716", + "url": "https://edge.forgecdn.net/files/6768/454/ags_modernmarkings-0.4.3-1.20.1.jar", + "id": "6768454", "parent_id": "1267477", "hashes": { - "sha1": "7297e554cd075b7e4d7497248d60ca40b943bc98", - "md5": "f4058de0aafaabae98e90e050f0348d3" + "sha1": "45d788e6a37c3bdcf5a235caa6a43694cb09e8b4", + "md5": "04d0df2ac6d6ccda0683771c8112256f" }, "required_dependencies": [], - "size": 305666, - "date_published": "2025-06-17T02:42:48.933Z" + "size": 305660, + "date_published": "2025-07-14T16:27:45.340Z" + }, + { + "type": "modrinth", + "file_name": "ags_modernmarkings-0.4.3-1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/efD07SBK/versions/9litZedm/ags_modernmarkings-0.4.3-1.20.1.jar", + "id": "9litZedm", + "parent_id": "efD07SBK", + "hashes": { + "sha512": "6bfa023ed1add9830a4102a1f1e493483023b2ea6e3da8272d92a28ff0e0d186c8b1f9935c7a29c8228036eec97fda3d5c045afa200611fc82355ba54ed21187", + "sha1": "45d788e6a37c3bdcf5a235caa6a43694cb09e8b4" + }, + "required_dependencies": [], + "size": 305660, + "date_published": "2025-07-14T16:28:57.389265Z" } ] }, { - "pakku_id": "aHeU7fAIYgE8bqks", + "pakku_id": "fR2my61zK1ySP67C", "type": "MOD", "side": "BOTH", "slug": { "curseforge": "selene", - "modrinth": "selene" + "modrinth": "moonlight" }, "name": { "curseforge": "Moonlight Lib", - "modrinth": "Selene" + "modrinth": "Moonlight Lib" }, "id": { "curseforge": "499980", - "modrinth": "hRandqZM" + "modrinth": "twkfQtEc" }, "files": [ { @@ -5912,20 +9389,46 @@ "required_dependencies": [], "size": 1272670, "date_published": "2025-07-07T10:31:53.687Z" + }, + { + "type": "modrinth", + "file_name": "moonlight-1.20-2.14.13-forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/twkfQtEc/versions/97agqQ6E/moonlight-1.20-2.14.13-forge.jar", + "id": "97agqQ6E", + "parent_id": "twkfQtEc", + "hashes": { + "sha512": "a2fe908138ec199aa48d86328fb4f95cab9113d1c7dd296b6d39af86246ccb8cd0c3196d78c6cc89f1a31720ab350575ae82a8952e3532fedd347aeb471421d6", + "sha1": "845e93a836bbb0ed087d363d32b64cad131bcfc4" + }, + "required_dependencies": [], + "size": 1272670, + "date_published": "2025-07-07T10:32:06.345999Z" } ] }, { - "pakku_id": "53TsjPhfip1EVNla", + "pakku_id": "1d7cB83bUxq1tdQc", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "more-red" + "curseforge": "more-red", + "modrinth": "more-red" }, "name": { - "curseforge": "More Red" + "curseforge": "More Red", + "modrinth": "More Red" }, "id": { - "curseforge": "387638" + "curseforge": "387638", + "modrinth": "UxYNfnfx" }, "files": [ { @@ -5949,20 +9452,46 @@ "required_dependencies": [], "size": 756905, "date_published": "2023-08-09T22:13:16.500Z" + }, + { + "type": "modrinth", + "file_name": "morered-1.20.1-4.0.0.4.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/UxYNfnfx/versions/nmvr3DB5/morered-1.20.1-4.0.0.4.jar", + "id": "nmvr3DB5", + "parent_id": "UxYNfnfx", + "hashes": { + "sha512": "f7597a4cb98d40bfb9bc344a1389db6a498b339ae10cdc710a3ab83ed993788cc332b899f3876b0dec79e12c57dd93fb72b950c240cae4ac818f68d7fa48f48f", + "sha1": "1e49a2fca02e1059bf6c94f6292463ed6e4f6122" + }, + "required_dependencies": [], + "size": 756905, + "date_published": "2023-08-09T22:13:45.806904Z" } ] }, { - "pakku_id": "xETid4ZChitid73e", + "pakku_id": "jV59z5gB07FyQSR1", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "more-red-x-cc-tweaked-compat" + "curseforge": "more-red-x-cc-tweaked-compat", + "modrinth": "more-red-x-cc-tweaked-compat" }, "name": { - "curseforge": "More Red x CC:Tweaked Compat" + "curseforge": "More Red x CC:Tweaked Compat", + "modrinth": "More Red x CC:Tweaked Compat" }, "id": { - "curseforge": "867286" + "curseforge": "867286", + "modrinth": "e4uFcbDl" }, "files": [ { @@ -5989,21 +9518,49 @@ ], "size": 9388, "date_published": "2023-07-18T02:23:23.550Z" + }, + { + "type": "modrinth", + "file_name": "MoreRed-CCT-Compat-1.20.1-1.0.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/e4uFcbDl/versions/DVOCes0G/MoreRed-CCT-Compat-1.20.1-1.0.0.jar", + "id": "DVOCes0G", + "parent_id": "e4uFcbDl", + "hashes": { + "sha512": "2931514718be05c42dceb4e5ebd76d05912ca0be99f5edf6b85f8786154bd094372c7d3f37cf1e66f46c262327507963b2b36a1fcefef88cd08e99f49224fe18", + "sha1": "ed57300c9b6e335af2a6a386fc2d373b4b5daaf4" + }, + "required_dependencies": [ + "UxYNfnfx", + "gu7yAYhd" + ], + "size": 9388, + "date_published": "2023-07-24T01:43:44.043518Z" } ] }, { - "pakku_id": "sQT6Pqp2DV9dQGNC", + "pakku_id": "ceWqlD7cralxbs8z", "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "mouse-tweaks" + "curseforge": "mouse-tweaks", + "modrinth": "mouse-tweaks" }, "name": { - "curseforge": "Mouse Tweaks" + "curseforge": "Mouse Tweaks", + "modrinth": "Mouse Tweaks" }, "id": { - "curseforge": "60089" + "curseforge": "60089", + "modrinth": "aC3cM3Vq" }, "files": [ { @@ -6026,21 +9583,45 @@ "required_dependencies": [], "size": 76237, "date_published": "2024-05-12T16:26:46.523Z" + }, + { + "type": "modrinth", + "file_name": "MouseTweaks-forge-mc1.20.1-2.25.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/aC3cM3Vq/versions/7JVXOe3K/MouseTweaks-forge-mc1.20.1-2.25.1.jar", + "id": "7JVXOe3K", + "parent_id": "aC3cM3Vq", + "hashes": { + "sha512": "a3bb0272c0a1a3be9250dfee030bb8f86217fa6a32bd534be8c940fdd8c466c800c2df85874877983ced36ecfc28c8ced6c0d42107c1ab621385b4be9a7c65eb", + "sha1": "d751153e722a4e014691c83f39f5b07c6ec5333c" + }, + "required_dependencies": [], + "size": 76237, + "date_published": "2024-05-12T16:27:50.280746Z" } ] }, { - "pakku_id": "xI1juHmC4hepFCcq", + "pakku_id": "VF2AVYrtLqfVUOJl", "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "my-server-is-compatible" + "curseforge": "my-server-is-compatible", + "modrinth": "my-server-is-compatible" }, "name": { - "curseforge": "My Server Is Compatible" + "curseforge": "My Server Is Compatible", + "modrinth": "My Server Is Compatible" }, "id": { - "curseforge": "492574" + "curseforge": "492574", + "modrinth": "13qq15Cg" }, "files": [ { @@ -6074,20 +9655,51 @@ "required_dependencies": [], "size": 3482, "date_published": "2023-06-11T15:33:04.850Z" + }, + { + "type": "modrinth", + "file_name": "MyServerIsCompatible-1.20-1.0.jar", + "mc_versions": [ + "1.20", + "1.20.1", + "1.20.2", + "1.20.3", + "1.20.4", + "1.20.5", + "1.20.6" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/13qq15Cg/versions/7jEatFH8/MyServerIsCompatible-1.20-1.0.jar", + "id": "7jEatFH8", + "parent_id": "13qq15Cg", + "hashes": { + "sha512": "fb87751a60e48579d6f9bb117d459c6dc157c87fe71c8e2bc088ba859ff2725112b5330d4c3d4c1ab2d29073a0c2668edcd6b6f547a9666b284b022616bf99cf", + "sha1": "a53abcabc6c3531667049be249b3fb165aad5468" + }, + "required_dependencies": [], + "size": 3482, + "date_published": "2023-06-12T15:13:10.541989Z" } ] }, { - "pakku_id": "ulJGrdKp4UIBpUIX", + "pakku_id": "mJc6wpWhhBYx4djb", "type": "MOD", + "side": "SERVER", "slug": { - "curseforge": "nan-health-fixer" + "curseforge": "nan-health-fixer", + "modrinth": "nan-health-fixer" }, "name": { - "curseforge": "NaN Health Fixer" + "curseforge": "NaN Health Fixer", + "modrinth": "NaN Health Fixer" }, "id": { - "curseforge": "828656" + "curseforge": "828656", + "modrinth": "GcowSBDA" }, "files": [ { @@ -6111,6 +9723,28 @@ "required_dependencies": [], "size": 3010, "date_published": "2023-12-06T14:05:14.873Z" + }, + { + "type": "modrinth", + "file_name": "nanhealthfixer-1.20.1-0.0.1.jar", + "mc_versions": [ + "1.20.1", + "1.20.2" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/GcowSBDA/versions/dGQVudHe/nanhealthfixer-1.20.1-0.0.1.jar", + "id": "dGQVudHe", + "parent_id": "GcowSBDA", + "hashes": { + "sha512": "b33df1f6da93cf70c10ed64b7bde64338281b4e7ee4a7b316d6203fb6d2781eb7b7b721e466c1b8257396b9c6dc1d921e1630df7a8de342f3acdcc5979e4ff82", + "sha1": "2e36f4c6311230f76459000161d3429be723b19d" + }, + "required_dependencies": [], + "size": 3010, + "date_published": "2023-12-06T14:17:32.042605Z" } ] }, @@ -6148,16 +9782,20 @@ ] }, { - "pakku_id": "PelbQK42HFCTe5cc", + "pakku_id": "Oi1IRBFZsIYDeqKR", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "no-chat-reports" + "curseforge": "no-chat-reports", + "modrinth": "no-chat-reports" }, "name": { - "curseforge": "No Chat Reports" + "curseforge": "No Chat Reports", + "modrinth": "No Chat Reports" }, "id": { - "curseforge": "634062" + "curseforge": "634062", + "modrinth": "qQyHxfxd" }, "files": [ { @@ -6181,20 +9819,46 @@ "required_dependencies": [], "size": 272740, "date_published": "2023-06-26T14:50:49.010Z" + }, + { + "type": "modrinth", + "file_name": "NoChatReports-FORGE-1.20.1-v2.2.2.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/qQyHxfxd/versions/ksEG6N5E/NoChatReports-FORGE-1.20.1-v2.2.2.jar", + "id": "ksEG6N5E", + "parent_id": "qQyHxfxd", + "hashes": { + "sha512": "39aa2e120a10ee68e9b03e3d5bd6f2d5def2fa7fcd914f55f018a85381eb0bb52055abce53a64cb0b0fba10f24da12caef085733e715907598ce468bcf59df51", + "sha1": "069396e689ae887d065c8d61b7945e685fbcc65b" + }, + "required_dependencies": [], + "size": 272740, + "date_published": "2023-06-26T14:50:58.923786Z" } ] }, { - "pakku_id": "p3wgAzedag1gZTw8", + "pakku_id": "srNw1bVsXfQKp9OA", "type": "MOD", + "side": "SERVER", "slug": { - "curseforge": "noisium" + "curseforge": "noisium", + "modrinth": "noisium" }, "name": { - "curseforge": "Noisium" + "curseforge": "Noisium", + "modrinth": "Noisium" }, "id": { - "curseforge": "930207" + "curseforge": "930207", + "modrinth": "KuNKN7d2" }, "files": [ { @@ -6219,21 +9883,47 @@ "required_dependencies": [], "size": 218152, "date_published": "2024-08-21T17:24:11.600Z" + }, + { + "type": "modrinth", + "file_name": "noisium-forge-2.3.0+mc1.20-1.20.1.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/KuNKN7d2/versions/gbYUKrDP/noisium-forge-2.3.0+mc1.20-1.20.1.jar", + "id": "gbYUKrDP", + "parent_id": "KuNKN7d2", + "hashes": { + "sha512": "5bc43bc1b748edcd63d074a8bb14d393d986c51e1933e1f38cd7a2dd2fd70dba5a46a6415f46d4a52c68e7e1e9ce101e54376ad04273df958608e2fdb43db502", + "sha1": "7da1cdf00c0ae5cad31e17f765f6ea021c8ac808" + }, + "required_dependencies": [], + "size": 218152, + "date_published": "2024-08-21T17:24:14.967570Z" } ] }, { - "pakku_id": "v44vAp7vREOZVvOk", + "pakku_id": "rZMUz1QjgqD53x3s", "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "not-enough-animations" + "curseforge": "not-enough-animations", + "modrinth": "not-enough-animations" }, "name": { - "curseforge": "Not Enough Animations" + "curseforge": "Not Enough Animations", + "modrinth": "Not Enough Animations" }, "id": { - "curseforge": "433760" + "curseforge": "433760", + "modrinth": "MPCX6s5C" }, "redistributable": false, "files": [ @@ -6257,23 +9947,48 @@ "required_dependencies": [], "size": 847497, "date_published": "2025-07-06T19:38:28.650Z" + }, + { + "type": "modrinth", + "file_name": "notenoughanimations-forge-1.10.1-mc1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/MPCX6s5C/versions/dG98B4oD/notenoughanimations-forge-1.10.1-mc1.20.1.jar", + "id": "dG98B4oD", + "parent_id": "MPCX6s5C", + "hashes": { + "sha512": "bee73667587c2a952507b6feb7f5d5288559583a5f2547388678c3b03aabf9862f41bf44943ce7d7cf17dba6edaa6b62c676a2173b387a73e1c66577c72aafa5", + "sha1": "ed3c4929d6bb08deebe7397b878cfbcb08172d71" + }, + "required_dependencies": [], + "size": 847497, + "date_published": "2025-07-06T19:38:29.627816Z" } ] }, { - "pakku_id": "ZxLI60MMZxdHImOD", + "pakku_id": "6zOH2EVRZsNzOrZa", "pakku_links": [ - "ccvCeDUzAmNqbRBs" + "cKWnkCtgEdPaLZ1d" ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "notenoughrecipebook" + "curseforge": "notenoughrecipebook", + "modrinth": "notenoughrecipebook" }, "name": { - "curseforge": "Not Enough Recipe Book [NERB]" + "curseforge": "Not Enough Recipe Book [NERB]", + "modrinth": "Not Enough Recipe Book [NERB]" }, "id": { - "curseforge": "738663" + "curseforge": "738663", + "modrinth": "bQh7xzFq" }, "files": [ { @@ -6300,20 +10015,48 @@ ], "size": 21667, "date_published": "2024-09-26T23:45:18.913Z" + }, + { + "type": "modrinth", + "file_name": "Not Enough Recipe Book-FORGE-0.4.1+1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/bQh7xzFq/versions/xXV9YBzF/Not Enough Recipe Book-FORGE-0.4.1+1.20.1.jar", + "id": "xXV9YBzF", + "parent_id": "bQh7xzFq", + "hashes": { + "sha512": "599e085062c6d7a7368a4cf0d47ce319bcaf570bf5966ec6f8b9529f006e315a7f4ab3d2f263c38564a501b9d7031e956d4ee881ed2e13999869d61cbc079702", + "sha1": "c0806369f4257149664904db44efc60bd1785c17" + }, + "required_dependencies": [ + "RH2KUdKJ" + ], + "size": 21667, + "date_published": "2024-09-26T23:46:19.242894Z" } ] }, { - "pakku_id": "ccvCeDUzAmNqbRBs", + "pakku_id": "cKWnkCtgEdPaLZ1d", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "octo-lib" + "curseforge": "octo-lib", + "modrinth": "octo-lib" }, "name": { - "curseforge": "OctoLib" + "curseforge": "OctoLib", + "modrinth": "OctoLib" }, "id": { - "curseforge": "916747" + "curseforge": "916747", + "modrinth": "RH2KUdKJ" }, "files": [ { @@ -6336,21 +10079,47 @@ "required_dependencies": [], "size": 424035, "date_published": "2025-03-07T11:54:51.647Z" + }, + { + "type": "modrinth", + "file_name": "OctoLib-FORGE-0.5.0.1+1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/RH2KUdKJ/versions/HZ7KmyXp/OctoLib-FORGE-0.5.0.1+1.20.1.jar", + "id": "HZ7KmyXp", + "parent_id": "RH2KUdKJ", + "hashes": { + "sha512": "e0bbe3a999f3a8c32b7dc0fd5bae61f62915dc5be40ac97a777f0784cdfaaed74b74f48cd407b9a8abb081ff331fbd272c9d4e08125f48f091435c926468d5c6", + "sha1": "9eab28baff36942e1c924489e34753df10f40208" + }, + "required_dependencies": [ + "lhGA9TYQ" + ], + "size": 424035, + "date_published": "2025-03-07T11:56:23.366463Z" } ] }, { - "pakku_id": "WUlpBsMd1Ztf1Rv1", + "pakku_id": "y0UC3kpLVhVgLz9b", "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "oculus" + "curseforge": "oculus", + "modrinth": "oculus" }, "name": { - "curseforge": "Oculus" + "curseforge": "Oculus", + "modrinth": "Oculus" }, "id": { - "curseforge": "581495" + "curseforge": "581495", + "modrinth": "GchcoXML" }, "files": [ { @@ -6374,25 +10143,89 @@ "required_dependencies": [], "size": 2851119, "date_published": "2024-12-24T23:33:51.040Z" + }, + { + "type": "modrinth", + "file_name": "oculus-mc1.20.1-1.8.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/GchcoXML/versions/iQ1SwGc3/oculus-mc1.20.1-1.8.0.jar", + "id": "iQ1SwGc3", + "parent_id": "GchcoXML", + "hashes": { + "sha512": "1bb4ac77400d6684347988ed298a692c2cb15cf7923693607eb8739b171a20fef7412259e9e157111d9ce21779badab386029956f7d2283a9e611722a373e9d5", + "sha1": "984f774e71790deaec674c7587bd24e0711871b2" + }, + "required_dependencies": [ + "sk9rgfiA" + ], + "size": 2851119, + "date_published": "2024-12-24T23:33:42.216148Z" } ] }, { - "pakku_id": "4ss8vw1e90vwPcs9", + "pakku_id": "xpyLKTSOZvJLu3M2", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "packet-fixer" + "curseforge": "packet-fixer", + "modrinth": "packet-fixer" }, "name": { - "curseforge": "Packet Fixer" + "curseforge": "Packet Fixer", + "modrinth": "Packet Fixer" }, "id": { - "curseforge": "689467" + "curseforge": "689467", + "modrinth": "c7m1mi73" }, "files": [ + { + "type": "modrinth", + "file_name": "packetfixer-3.1.4-1.18-1.20.4-merged.jar", + "mc_versions": [ + "1.18", + "1.18.1", + "1.18.2", + "1.19", + "1.19.1", + "1.19.2", + "1.19.3", + "1.19.4", + "1.20", + "1.20.1", + "1.20.2", + "1.20.3", + "1.20.4" + ], + "loaders": [ + "fabric", + "forge", + "neoforge", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/c7m1mi73/versions/dCEO67fT/packetfixer-3.1.4-1.18-1.20.4-merged.jar", + "id": "dCEO67fT", + "parent_id": "c7m1mi73", + "hashes": { + "sha512": "b6a5b6f684c538ee907e99362be5d8c86b4b923bb2ef9789a1a7ed739f054dc73a7eca8ddf174f97f102f848d74105cd3b6011d8930a5ff001e71d9efad65dcf", + "sha1": "1cdf5d8b637922b12bc72c575ce1428f1f2cae2a" + }, + "required_dependencies": [], + "size": 163268, + "date_published": "2025-07-17T12:43:32.154191Z" + }, { "type": "curseforge", - "file_name": "packetfixer-3.1.2-1.18-1.20.4-merged.jar", + "file_name": "packetfixer-3.1.3-1.18-1.20.4-merged.jar", "mc_versions": [ "1.20.2", "1.20.3", @@ -6407,33 +10240,38 @@ "quilt" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6720/969/packetfixer-3.1.2-1.18-1.20.4-merged.jar", - "id": "6720969", + "url": "https://edge.forgecdn.net/files/6772/308/packetfixer-3.1.3-1.18-1.20.4-merged.jar", + "id": "6772308", "parent_id": "689467", "hashes": { - "sha1": "b859210aa26e292035d43b1787aaf66fc00299aa", - "md5": "c09f7d0f7ff0b2cc45c8a212da417c47" + "sha1": "1338ae98ccbae20f4419d7f6f2f3510ee207f25c", + "md5": "c0c347170f64fde6bcfae2004591950c" }, "required_dependencies": [], - "size": 162633, - "date_published": "2025-07-02T13:01:55.370Z" + "size": 163257, + "date_published": "2025-07-15T16:24:16.450Z" } ] }, { - "pakku_id": "7uDByv5OeDiN1i4y", + "pakku_id": "BfLbV2S73g77WVvq", "pakku_links": [ - "nouH2te0hfF8zPrM" + "ksu3eX0J950WDovw", + "x1EwQZ6H2kVKR3U3" ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "pandas-falling-trees" + "curseforge": "pandas-falling-trees", + "modrinth": "pandas-falling-trees" }, "name": { - "curseforge": "Panda's Falling Tree's" + "curseforge": "Panda's Falling Tree's", + "modrinth": "Panda's Falling Tree's" }, "id": { - "curseforge": "880630" + "curseforge": "880630", + "modrinth": "i2kUe4lq" }, "files": [ { @@ -6463,20 +10301,55 @@ ], "size": 4007169, "date_published": "2024-08-22T15:47:01.467Z" + }, + { + "type": "modrinth", + "file_name": "fallingtrees-forge-0.12.7-1.20.jar", + "mc_versions": [ + "1.20", + "1.20.1", + "1.20.2", + "1.20.3", + "1.20.4" + ], + "loaders": [ + "forge" + ], + "release_type": "beta", + "url": "https://cdn.modrinth.com/data/i2kUe4lq/versions/BTha8GrF/fallingtrees-forge-0.12.7-1.20.jar", + "id": "BTha8GrF", + "parent_id": "i2kUe4lq", + "hashes": { + "sha512": "cecdcdfe3c705624fd12723f5f4f635a891b987c5855517258a546b538b4ceee4becbc21721c949a35458408f4046c96cb878c7804b5390a99af2b7d3d516e3f", + "sha1": "493724d09ba37fa140c6b360eb267cb5c563a35b" + }, + "required_dependencies": [ + "mEEGbEIu", + "lhGA9TYQ" + ], + "size": 4007169, + "date_published": "2024-08-22T15:47:03.291493Z" } ] }, { - "pakku_id": "nouH2te0hfF8zPrM", + "pakku_id": "ksu3eX0J950WDovw", + "pakku_links": [ + "x1EwQZ6H2kVKR3U3" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "pandalib" + "curseforge": "pandalib", + "modrinth": "pandalib" }, "name": { - "curseforge": "PandaLib" + "curseforge": "PandaLib", + "modrinth": "PandaLib" }, "id": { - "curseforge": "975460" + "curseforge": "975460", + "modrinth": "mEEGbEIu" }, "files": [ { @@ -6505,23 +10378,51 @@ ], "size": 10873383, "date_published": "2024-08-22T15:11:47.853Z" + }, + { + "type": "modrinth", + "file_name": "pandalib-forge-0.4.2-1.20.jar", + "mc_versions": [ + "1.20", + "1.20.1", + "1.20.2", + "1.20.3", + "1.20.4" + ], + "loaders": [ + "forge" + ], + "release_type": "beta", + "url": "https://cdn.modrinth.com/data/mEEGbEIu/versions/Hs1ReP4A/pandalib-forge-0.4.2-1.20.jar", + "id": "Hs1ReP4A", + "parent_id": "mEEGbEIu", + "hashes": { + "sha512": "ec773e88c14bde2cf57a5406b423dad61b0f177e41a97275d77582c7835a33bec6ef1a76b67d5356df552512484011401066869288012be36611104a09b5a80a", + "sha1": "cc0332d3bbf7824b673abc59e231f1f5aafc6420" + }, + "required_dependencies": [ + "lhGA9TYQ" + ], + "size": 10873383, + "date_published": "2024-08-22T15:11:48.784167Z" } ] }, { - "pakku_id": "VtDR8w64cypdCZD4", - "pakku_links": [ - "lzhyE6qnNX8vJ50C" - ], + "pakku_id": "nQtePBXUbz4uGR5r", "type": "MOD", + "side": "CLIENT", "slug": { - "curseforge": "particle-core" + "curseforge": "particle-core", + "modrinth": "particle-core" }, "name": { - "curseforge": "Particle Core" + "curseforge": "Particle Core", + "modrinth": "Particle Core" }, "id": { - "curseforge": "985426" + "curseforge": "985426", + "modrinth": "RSeLon5O" }, "files": [ { @@ -6548,21 +10449,49 @@ ], "size": 97943, "date_published": "2025-04-16T00:24:36.463Z" + }, + { + "type": "modrinth", + "file_name": "particle_core-0.2.6+1.20.1+forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/RSeLon5O/versions/bqPuw9aZ/particle_core-0.2.6+1.20.1+forge.jar", + "id": "bqPuw9aZ", + "parent_id": "RSeLon5O", + "hashes": { + "sha512": "58c88b1654f3b2d733860aa3358cfa322245f2edc4ee6e79150912bf675c6bdef936f2f4f043a7cc56472a24cdee7f5963b6db2631478446fdcaf14ebc17d94c", + "sha1": "91f302ab9b85016aeb3a9a0e85b80650a1d2e984" + }, + "required_dependencies": [ + "ordsPcFz", + "hYykXjDp" + ], + "size": 97943, + "date_published": "2025-04-16T00:24:40.146141Z" } ] }, { - "pakku_id": "pWuY03R4IqCAxoQe", + "pakku_id": "QlQ5JqdBYu2Wxde4", "type": "MOD", "side": "BOTH", "slug": { - "curseforge": "particular-reforged" + "curseforge": "particular-reforged", + "modrinth": "particular-reforged" }, "name": { - "curseforge": "Particular ✨ Reforged" + "curseforge": "Particular ✨ Reforged", + "modrinth": "Particular ✨ Reforged" }, "id": { - "curseforge": "1219053" + "curseforge": "1219053", + "modrinth": "pYFUU6cq" }, "files": [ { @@ -6585,20 +10514,45 @@ "required_dependencies": [], "size": 421834, "date_published": "2025-05-31T23:14:51.347Z" + }, + { + "type": "modrinth", + "file_name": "particular-1.20.1-Forge-1.2.4.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/pYFUU6cq/versions/E2JI5D7W/particular-1.20.1-Forge-1.2.4.jar", + "id": "E2JI5D7W", + "parent_id": "pYFUU6cq", + "hashes": { + "sha512": "ad4e43288e04daa286cce5cedce07cceb9603e95562d91cbf5bb8cea0090fd93f28aa12c28d36988b60a86136899be2138fbf324171755b59b36dde2b836fdae", + "sha1": "4dc0cfd572151816c939d2896ad8f13838cb7cf6" + }, + "required_dependencies": [], + "size": 421834, + "date_published": "2025-06-06T19:00:04.136808Z" } ] }, { - "pakku_id": "sJEa0sgmiknN6IGn", + "pakku_id": "1RCsMnDdwXXOUKKG", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "patchouli" + "curseforge": "patchouli", + "modrinth": "patchouli" }, "name": { - "curseforge": "Patchouli" + "curseforge": "Patchouli", + "modrinth": "Patchouli" }, "id": { - "curseforge": "306770" + "curseforge": "306770", + "modrinth": "nU0bVIaL" }, "files": [ { @@ -6621,21 +10575,48 @@ "required_dependencies": [], "size": 642711, "date_published": "2025-02-06T16:09:52.160Z" + }, + { + "type": "modrinth", + "file_name": "Patchouli-1.20.1-84.1-FORGE.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/nU0bVIaL/versions/8Qyw08ld/Patchouli-1.20.1-84.1-FORGE.jar", + "id": "8Qyw08ld", + "parent_id": "nU0bVIaL", + "hashes": { + "sha512": "d87143ae5dc979e8d65dd35ff0916077a355c503c4a906bed0d9dbe600ff0602e5296800cbdf2260d47033f664691b54e1b18a1b9835339c4e13d69fc4251f1b", + "sha1": "e91d2e2f251375d647d592b670ea6f310c2554eb" + }, + "required_dependencies": [], + "size": 642711, + "date_published": "2025-02-06T16:09:49.287555Z" } ] }, { - "pakku_id": "umWJAWHFoOcBOjAt", + "pakku_id": "NAnmkz6EFQkpeHYH", + "pakku_links": [ + "3Hn4sTVbBvKyQJJS" + ], "type": "MOD", - "side": "BOTH", + "side": "CLIENT", "slug": { - "curseforge": "pick-up-notifier" + "curseforge": "pick-up-notifier", + "modrinth": "pick-up-notifier" }, "name": { - "curseforge": "Pick Up Notifier [Forge & Fabric]" + "curseforge": "Pick Up Notifier [Forge & Fabric]", + "modrinth": "Pick Up Notifier" }, "id": { - "curseforge": "351441" + "curseforge": "351441", + "modrinth": "ZX66K16c" }, "files": [ { @@ -6660,6 +10641,29 @@ ], "size": 102164, "date_published": "2023-06-28T09:11:56.270Z" + }, + { + "type": "modrinth", + "file_name": "PickUpNotifier-v8.0.0-1.20.1-Forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/ZX66K16c/versions/LojgSWbd/PickUpNotifier-v8.0.0-1.20.1-Forge.jar", + "id": "LojgSWbd", + "parent_id": "ZX66K16c", + "hashes": { + "sha512": "3cddd0e7cd2527bf9483c2a4a40eb1d1e650c806fdfd3bcdf55cffdcc0575ca71d56a50d8d09cca63793e3da6b22436b636702755e0644beb4b0051f039a2dda", + "sha1": "378cc9730d1f11cd4c50add96263baccacdb4942" + }, + "required_dependencies": [ + "QAGBst4M" + ], + "size": 102164, + "date_published": "2023-06-28T09:12:00.519122Z" } ] }, @@ -6701,16 +10705,20 @@ ] }, { - "pakku_id": "tnA3azMDXeI8pMO0", + "pakku_id": "7N9O2rPIAVKoRYOH", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "playerrevive" + "curseforge": "playerrevive", + "modrinth": "playerrevive" }, "name": { - "curseforge": "PlayerRevive" + "curseforge": "PlayerRevive", + "modrinth": "PlayerRevive" }, "id": { - "curseforge": "266890" + "curseforge": "266890", + "modrinth": "ABIMzABM" }, "files": [ { @@ -6736,20 +10744,48 @@ ], "size": 5298162, "date_published": "2025-01-03T12:43:44.657Z" + }, + { + "type": "modrinth", + "file_name": "PlayerRevive_FORGE_v2.0.31_mc1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/ABIMzABM/versions/fUdn8MeF/PlayerRevive_FORGE_v2.0.31_mc1.20.1.jar", + "id": "fUdn8MeF", + "parent_id": "ABIMzABM", + "hashes": { + "sha512": "26ec9d4f4ff24a3e708f5485e40149214df76734af90848429bc7cedf397230a8e7b8b11aa21f11e50ea2987c862f09186ecd1b55b7ded31c5c99d661ede686a", + "sha1": "84c039f20b8f048c835c429c2c4a9fd82a5e65f6" + }, + "required_dependencies": [ + "OsZiaDHq" + ], + "size": 5298162, + "date_published": "2025-01-03T12:43:40.830979Z" } ] }, { - "pakku_id": "SwXDcwFoiFW6R103", + "pakku_id": "e7thBe1Z6fvyxUtU", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "polylib" + "curseforge": "polylib", + "modrinth": "polylib" }, "name": { - "curseforge": "PolyLib" + "curseforge": "PolyLib", + "modrinth": "PolyLib" }, "id": { - "curseforge": "576589" + "curseforge": "576589", + "modrinth": "6lvkzFFj" }, "files": [ { @@ -6774,11 +10810,37 @@ "required_dependencies": [], "size": 1343694, "date_published": "2024-05-17T09:34:11.747Z" + }, + { + "type": "modrinth", + "file_name": "polylib-forge-2000.0.3-build.143.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/6lvkzFFj/versions/boXcy1fH/polylib-forge-2000.0.3-build.143.jar", + "id": "boXcy1fH", + "parent_id": "6lvkzFFj", + "hashes": { + "sha512": "1ffce7fff08e63002effa2b8fe4aa63e1efe2717ed062644693c084194610cd24e3001e2b81824c218380c5bd5c7bd78de99882bac35c325879c1fa1f09c5c00", + "sha1": "bf49919adc9e9109196762ff20030f823790e2db" + }, + "required_dependencies": [], + "size": 1343694, + "date_published": "2024-11-05T16:23:42.914288Z" } ] }, { - "pakku_id": "pITFJNUBx59dBitK", + "pakku_id": "uNdLsiWKN59kFgTs", + "pakku_links": [ + "pB7ARGecP03UXpd6" + ], "type": "MOD", "side": "BOTH", "slug": { @@ -6793,29 +10855,34 @@ "files": [ { "type": "curseforge", - "file_name": "primitive_creatures_netherforge-1.20.1.jar", + "file_name": "primitive_creatures-2.0.1-forge-1.20.1.jar", "mc_versions": [ "1.20.1" ], "loaders": [ "forge" ], - "release_type": "beta", - "url": "https://edge.forgecdn.net/files/6293/489/primitive_creatures_netherforge-1.20.1.jar", - "id": "6293489", + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6765/489/primitive_creatures-2.0.1-forge-1.20.1.jar", + "id": "6765489", "parent_id": "1218288", "hashes": { - "sha1": "2af2dc7e02672eba68d1631fc9a331bebe59b89d", - "md5": "0855701ad11cb7c8430dfcaed6d27a5d" + "sha1": "3cbf513208873286085c9d067eb5a0ef32e74df0", + "md5": "8471f856d14e74663c51baf4ec71c71f" }, - "required_dependencies": [], - "size": 54387, - "date_published": "2025-03-11T19:35:31.220Z" + "required_dependencies": [ + "388172" + ], + "size": 426778, + "date_published": "2025-07-13T19:44:01.033Z" } ] }, { "pakku_id": "r7Dz5XCU6ReR0pVk", + "pakku_links": [ + "bf2svog06ajj5JHE" + ], "type": "MOD", "slug": { "curseforge": "probejs" @@ -6826,6 +10893,7 @@ "id": { "curseforge": "585406" }, + "export": false, "files": [ { "type": "curseforge", @@ -6854,21 +10922,24 @@ ] }, { - "pakku_id": "m3MG6TupqoQCfLd9", + "pakku_id": "sbXThweS7VFdgVMJ", "pakku_links": [ - "2wSbyvuI5uFxrZW6", - "0IQGejKaqyQTLzbL", - "dR8ZIMOQFxDrUtOO" + "rbYKnXWzT4megBI6", + "mYY02F5XR0fB6HXF" ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "programmed-circuit-card" + "curseforge": "programmed-circuit-card", + "modrinth": "programmed-circuit-card" }, "name": { - "curseforge": "Programmed Circuit Card" + "curseforge": "Programmed Circuit Card", + "modrinth": "Programmed Circuit Card" }, "id": { - "curseforge": "1150540" + "curseforge": "1150540", + "modrinth": "C3Mtqx9z" }, "files": [ { @@ -6895,20 +10966,49 @@ ], "size": 407699, "date_published": "2025-05-05T16:47:18.970Z" + }, + { + "type": "modrinth", + "file_name": "pccard-1.20.1-1.0.15.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/C3Mtqx9z/versions/alsZh43X/pccard-1.20.1-1.0.15.jar", + "id": "alsZh43X", + "parent_id": "C3Mtqx9z", + "hashes": { + "sha512": "f8e490659b9a1df9cb9253b85fbbe61dfc9bcc4febf6f1d5acc331301726b3f659eba46ddd49838ff3cfe09da33a73461a9d6da214c4cd030893d91240d78d38", + "sha1": "27c559af190e3933f3e2f420ad42409b3038678f" + }, + "required_dependencies": [ + "XxWD5pD3", + "Ck4E7v7R", + "7tG215v7" + ], + "size": 407699, + "date_published": "2025-05-05T16:47:38.484805Z" } ] }, { - "pakku_id": "plopa4HuWhK2eACT", + "pakku_id": "3Hn4sTVbBvKyQJJS", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "puzzles-lib" + "curseforge": "puzzles-lib", + "modrinth": "puzzles-lib" }, "name": { - "curseforge": "Puzzles Lib [Forge & Fabric]" + "curseforge": "Puzzles Lib [Forge & Fabric]", + "modrinth": "Puzzles Lib" }, "id": { - "curseforge": "495476" + "curseforge": "495476", + "modrinth": "QAGBst4M" }, "files": [ { @@ -6931,6 +11031,27 @@ "required_dependencies": [], "size": 1342204, "date_published": "2025-04-05T11:23:03.413Z" + }, + { + "type": "modrinth", + "file_name": "PuzzlesLib-v8.1.32-1.20.1-Forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/QAGBst4M/versions/YFZdsqXl/PuzzlesLib-v8.1.32-1.20.1-Forge.jar", + "id": "YFZdsqXl", + "parent_id": "QAGBst4M", + "hashes": { + "sha512": "f6420b4884583727ee66d7410ce5ad3ce2a5fd9aed49700ea4bba1fd944a4b63d2d3f15a3d0d64afa2ec1aa261f8ef52b6277712c7d19e6dd31ff9d9360f05ae", + "sha1": "1f24a25582fa6bb2569e32401a232ee90d34cc1a" + }, + "required_dependencies": [], + "size": 1342204, + "date_published": "2025-04-05T11:23:08.540092Z" } ] }, @@ -6972,99 +11093,20 @@ ] }, { - "pakku_id": "mLvNtlnkhh3Rrdhq", - "pakku_links": [ - "GOh1ocuoLHhYMq2J" - ], - "type": "MOD", - "slug": { - "curseforge": "recipe-essentials-forge-fabric" - }, - "name": { - "curseforge": "Recipe Essentials[Forge/Fabric]" - }, - "id": { - "curseforge": "907856" - }, - "files": [ - { - "type": "curseforge", - "file_name": "recipeessentials-1.20.1-4.0.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "neoforge", - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6165/709/recipeessentials-1.20.1-4.0.jar", - "id": "6165709", - "parent_id": "907856", - "hashes": { - "sha1": "6e50995efefdef6f77f0289200a17ae4c18cde75", - "md5": "570607c1e36e86f2180fdfb960b50dff" - }, - "required_dependencies": [], - "size": 50739, - "date_published": "2025-02-06T22:39:36.930Z" - } - ] - }, - { - "pakku_id": "13vvLchOfWqOWYDp", - "pakku_links": [ - "k6zIGpPrxPxbod8z" - ], - "type": "MOD", - "slug": { - "curseforge": "redirected" - }, - "name": { - "curseforge": "Redirected" - }, - "id": { - "curseforge": "1191845" - }, - "files": [ - { - "type": "curseforge", - "file_name": "redirected-forge-1.0.0-1.20.1.jar", - "mc_versions": [ - "1.20.1", - "1.20" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6148/844/redirected-forge-1.0.0-1.20.1.jar", - "id": "6148844", - "parent_id": "1191845", - "hashes": { - "sha1": "804cb20635bec6d708617fb22e6bd62bed27a7a7", - "md5": "bcbc01aea3042d92c03ac5b8e1453dce" - }, - "required_dependencies": [ - "1104882" - ], - "size": 416660, - "date_published": "2025-02-02T07:04:31.300Z" - } - ] - }, - { - "pakku_id": "QXBpbwRXpmbaHixl", + "pakku_id": "zQAe1eid9EE5PMwK", "type": "MOD", "side": "BOTH", "slug": { - "curseforge": "resourceful-config" + "curseforge": "resourceful-config", + "modrinth": "resourceful-config" }, "name": { - "curseforge": "Resourceful Config" + "curseforge": "Resourceful Config", + "modrinth": "Resourceful Config" }, "id": { - "curseforge": "714059" + "curseforge": "714059", + "modrinth": "M1953qlQ" }, "files": [ { @@ -7087,21 +11129,45 @@ "required_dependencies": [], "size": 136923, "date_published": "2025-02-24T20:12:14.590Z" + }, + { + "type": "modrinth", + "file_name": "resourcefulconfig-forge-1.20.1-2.1.3.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/M1953qlQ/versions/DERs8u7v/resourcefulconfig-forge-1.20.1-2.1.3.jar", + "id": "DERs8u7v", + "parent_id": "M1953qlQ", + "hashes": { + "sha512": "2e05fe27529d00d7808a83dbe0c475a0fb96a20ebfd5c9767f4cc8dcd9a865e20a18de41fb9ed710e5cd2e0211c30303b43c1f22702af1d50ee7212ad83a54d3", + "sha1": "597d40920dcc935f963842c817dcc4901862ab14" + }, + "required_dependencies": [], + "size": 136923, + "date_published": "2025-02-24T20:12:39.956555Z" } ] }, { - "pakku_id": "18IuoLEIRdaY1Jqy", + "pakku_id": "WlWexjDJnb3iikHc", "type": "MOD", "side": "BOTH", "slug": { - "curseforge": "resourceful-lib" + "curseforge": "resourceful-lib", + "modrinth": "resourceful-lib" }, "name": { - "curseforge": "Resourceful Lib" + "curseforge": "Resourceful Lib", + "modrinth": "Resourceful Lib" }, "id": { - "curseforge": "570073" + "curseforge": "570073", + "modrinth": "G1hIVOrD" }, "files": [ { @@ -7124,20 +11190,45 @@ "required_dependencies": [], "size": 432753, "date_published": "2024-08-24T19:45:21Z" + }, + { + "type": "modrinth", + "file_name": "resourcefullib-forge-1.20.1-2.1.29.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/G1hIVOrD/versions/OhsHaCcW/resourcefullib-forge-1.20.1-2.1.29.jar", + "id": "OhsHaCcW", + "parent_id": "G1hIVOrD", + "hashes": { + "sha512": "8dbe951d431545a7d18081a8b11a52a248e6d8ff9862ae6462b0f5a6f57ff523af12704c3adb071ae99a7c5c1dd895bd7875dea59f9c4956c1597a668b6e8820", + "sha1": "6fc590a7c56a720fec57e290cbb0a106efbb3ffa" + }, + "required_dependencies": [], + "size": 432753, + "date_published": "2024-08-24T19:45:23.325509Z" } ] }, { - "pakku_id": "TEm6QwNhjQ1RU8Po", + "pakku_id": "4PlLE7zCqQsPdMTc", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "rhino" + "curseforge": "rhino", + "modrinth": "rhino" }, "name": { - "curseforge": "Rhino" + "curseforge": "Rhino", + "modrinth": "Rhino" }, "id": { - "curseforge": "416294" + "curseforge": "416294", + "modrinth": "sk9knFPE" }, "files": [ { @@ -7160,20 +11251,48 @@ "required_dependencies": [], "size": 1798244, "date_published": "2025-02-12T21:26:47.347Z" + }, + { + "type": "modrinth", + "file_name": "rhino-forge-2001.2.3-build.10.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/sk9knFPE/versions/uNALdylI/rhino-forge-2001.2.3-build.10.jar", + "id": "uNALdylI", + "parent_id": "sk9knFPE", + "hashes": { + "sha512": "4eb6a635f3eff3baa158539bd55344421cf69b15e28f7da8bf55f370a11c071f3525063a6f81b67fbfca550ad8aaab7e6208df87f65ca6ed2851edd46f032b58", + "sha1": "c83c9b719a6bab33fbd2b3f2f680eb3adbfc1aa1" + }, + "required_dependencies": [], + "size": 1798244, + "date_published": "2025-02-12T21:26:49.669723Z" } ] }, { - "pakku_id": "HKZkkooM377Zl9eU", + "pakku_id": "Onv7E6XLSsx0NE2o", + "pakku_links": [ + "64uacGcEw697jVGs" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "roads-and-roofs-tfc" + "curseforge": "roads-and-roofs-tfc", + "modrinth": "roads-and-roofs-tfc" }, "name": { - "curseforge": "Roads and Roofs TFC" + "curseforge": "Roads and Roofs TFC", + "modrinth": "Roads and Roofs TFC" }, "id": { - "curseforge": "1048212" + "curseforge": "1048212", + "modrinth": "ca9X1Phr" }, "files": [ { @@ -7200,20 +11319,49 @@ ], "size": 3557362, "date_published": "2024-10-27T23:10:58.567Z" + }, + { + "type": "modrinth", + "file_name": "rnr-0.2.1-1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/ca9X1Phr/versions/msv0XMkD/rnr-0.2.1-1.20.1.jar", + "id": "msv0XMkD", + "parent_id": "ca9X1Phr", + "hashes": { + "sha512": "e0f7b50c0da47f449fe03427859a1a33d0b8bef59a676b7ac88f518c99a0a6f02b255b576716c0d5d3a7810bd48e8cc9d74d4f9ed8e519485949c6e2ff8e469a", + "sha1": "046e086b2d4861fbc74bbeb18031102d09622197" + }, + "required_dependencies": [ + "nU0bVIaL", + "JaCEZUhg" + ], + "size": 3557362, + "date_published": "2024-10-27T23:13:57.176874Z" } ] }, { - "pakku_id": "2LHuw9QkUs4mg3dn", + "pakku_id": "87oulFfvlQlJm2Pt", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "saturn" + "curseforge": "saturn", + "modrinth": "saturn" }, "name": { - "curseforge": "Saturn" + "curseforge": "Saturn", + "modrinth": "Saturn" }, "id": { - "curseforge": "670986" + "curseforge": "670986", + "modrinth": "2eT495vq" }, "files": [ { @@ -7236,21 +11384,45 @@ "required_dependencies": [], "size": 92319, "date_published": "2024-02-09T19:09:28.503Z" + }, + { + "type": "modrinth", + "file_name": "saturn-mc1.20.1-0.1.3.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/2eT495vq/versions/Yx85DYaG/saturn-mc1.20.1-0.1.3.jar", + "id": "Yx85DYaG", + "parent_id": "2eT495vq", + "hashes": { + "sha512": "8b4b9a69e7b55df8148e83a6d17ef381b9c412d8730d0068974bd48bbdae1a1a43837a5307471bc5dd2b41d3aa821d73c8683a3f480a9d987b2cf0969aa178cc", + "sha1": "ad93f99d46714c46aaa6a4409aeca506e9fcac99" + }, + "required_dependencies": [], + "size": 92319, + "date_published": "2024-02-09T19:06:56.795182Z" } ] }, { - "pakku_id": "QdAjCgrfEUQQjMWE", + "pakku_id": "kn8PVkGiPXUjY3L7", "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "searchables" + "curseforge": "searchables", + "modrinth": "searchables" }, "name": { - "curseforge": "Searchables" + "curseforge": "Searchables", + "modrinth": "Searchables" }, "id": { - "curseforge": "858542" + "curseforge": "858542", + "modrinth": "fuuu3xnx" }, "files": [ { @@ -7273,20 +11445,45 @@ "required_dependencies": [], "size": 77732, "date_published": "2024-04-23T06:56:49.313Z" + }, + { + "type": "modrinth", + "file_name": "Searchables-forge-1.20.1-1.0.3.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/fuuu3xnx/versions/PM9yAW1G/Searchables-forge-1.20.1-1.0.3.jar", + "id": "PM9yAW1G", + "parent_id": "fuuu3xnx", + "hashes": { + "sha512": "185617d6d446f3d4ef6c7d5c6ee4e2fb731a89f7495157313b21292ec6b8e3dbcc10c0379ab49ecb2d0c64d0a78df74750d7f7336d5e6c43516a7c92f278c0a2", + "sha1": "5b976f6e76ec74cdef21865e31f56bcb11558db7" + }, + "required_dependencies": [], + "size": 77732, + "date_published": "2024-04-23T06:56:56.381361Z" } ] }, { - "pakku_id": "XFrE7khu91yYBMLn", + "pakku_id": "pLkDut7s59n6uQin", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "showcase-item" + "curseforge": "showcase-item", + "modrinth": "showcase-item" }, "name": { - "curseforge": "Showcase Item" + "curseforge": "Showcase Item", + "modrinth": "Showcase Item" }, "id": { - "curseforge": "627196" + "curseforge": "627196", + "modrinth": "P5Jjjezm" }, "files": [ { @@ -7309,6 +11506,27 @@ "required_dependencies": [], "size": 32044, "date_published": "2024-02-08T20:42:40.987Z" + }, + { + "type": "modrinth", + "file_name": "showcaseitem-1.20.1-1.2.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/P5Jjjezm/versions/Q5HI3IfP/showcaseitem-1.20.1-1.2.jar", + "id": "Q5HI3IfP", + "parent_id": "P5Jjjezm", + "hashes": { + "sha512": "255c51b15703de0e7b6c4ea6ee4e00cbadf830619ea5eb872144c2a29ca7b60f7727bff5899b7a035448dad4dda4cc57ae2a4b3a112bea4ac6fb1da88016ee66", + "sha1": "282e08fc46b7e4bab61a8651b5fcc1ee1befddd9" + }, + "required_dependencies": [], + "size": 32044, + "date_published": "2024-02-14T10:54:29.042863Z" } ] }, @@ -7386,16 +11604,20 @@ ] }, { - "pakku_id": "tnG5bwpqSIEbERqX", + "pakku_id": "CKhfz5UfCp2SSXt9", "type": "MOD", + "side": "CLIENT", "slug": { - "curseforge": "smooth-boot-reloaded" + "curseforge": "smooth-boot-reloaded", + "modrinth": "smooth-boot-reloaded" }, "name": { - "curseforge": "Smooth Boot (Reloaded)" + "curseforge": "Smooth Boot (Reloaded)", + "modrinth": "Smooth Boot (Reloaded)" }, "id": { - "curseforge": "633412" + "curseforge": "633412", + "modrinth": "z53V2L4P" }, "files": [ { @@ -7418,13 +11640,35 @@ "required_dependencies": [], "size": 41044, "date_published": "2024-01-08T01:30:52.480Z" + }, + { + "type": "modrinth", + "file_name": "smoothboot(reloaded)-mc1.20.1-0.0.4.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/z53V2L4P/versions/HkfL3iGO/smoothboot(reloaded)-mc1.20.1-0.0.4.jar", + "id": "HkfL3iGO", + "parent_id": "z53V2L4P", + "hashes": { + "sha512": "1cf706491339f3efae0d48d0dd596f27a74fcfa8e94008d7ef55e18be8c6f3c437bb74020e48910e1cc724ad35894bffce94788fe8f765c37048d4cc532ba261", + "sha1": "3fd79132dba444bd109b5de4ad75dee06a48e130" + }, + "required_dependencies": [], + "size": 41044, + "date_published": "2024-01-08T01:33:07.890390Z" } ] }, { "pakku_id": "zUgGWEg2vl35sipH", "pakku_links": [ - "XSWzPp7PhHWY0nfU" + "XSWzPp7PhHWY0nfU", + "yeujdIYswj77BSkb" ], "type": "MOD", "side": "CLIENT", @@ -7468,7 +11712,9 @@ "pakku_id": "OKKOKwRG1CU9T3ym", "pakku_links": [ "6I5K2vwIvkFSfEuv", - "XSWzPp7PhHWY0nfU" + "XSWzPp7PhHWY0nfU", + "gYHPAspVHiwlSSXI", + "yeujdIYswj77BSkb" ], "type": "MOD", "side": "CLIENT", @@ -7510,17 +11756,20 @@ ] }, { - "pakku_id": "XSWzPp7PhHWY0nfU", + "pakku_id": "yeujdIYswj77BSkb", "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "sodium-options-api" + "curseforge": "sodium-options-api", + "modrinth": "sodium-options-api" }, "name": { - "curseforge": "Sodium/Embeddium Options API" + "curseforge": "Sodium/Embeddium Options API", + "modrinth": "Sodium Options API" }, "id": { - "curseforge": "1103431" + "curseforge": "1103431", + "modrinth": "Es5v4eyq" }, "files": [ { @@ -7546,23 +11795,51 @@ ], "size": 443978, "date_published": "2025-01-18T20:48:18.013Z" + }, + { + "type": "modrinth", + "file_name": "sodiumoptionsapi-forge-1.0.10-1.20.1.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/Es5v4eyq/versions/d0EFLitO/sodiumoptionsapi-forge-1.0.10-1.20.1.jar", + "id": "d0EFLitO", + "parent_id": "Es5v4eyq", + "hashes": { + "sha512": "20b11f1582df3df3d351e0cffcfc8b97453e2d73164fbad46d3f4eb960cab57d8f708d84b818782ef019d5cd9494ce001161f753623680516a191d6f510ebb79", + "sha1": "7529fbf938787ed13a251cbf40936f8c29ec4b6c" + }, + "required_dependencies": [ + "sk9rgfiA" + ], + "size": 443978, + "date_published": "2025-01-18T20:48:20.566320Z" } ] }, { - "pakku_id": "BoBxu4uKrEd4EWMB", + "pakku_id": "mUY7a1f4DIhjgXtQ", "pakku_links": [ - "ofieNqf2gYobX5oy" + "Foe7A2QXIKlyEHbt" ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "sophisticated-backpacks" + "curseforge": "sophisticated-backpacks", + "modrinth": "sophisticated-backpacks" }, "name": { - "curseforge": "Sophisticated Backpacks" + "curseforge": "Sophisticated Backpacks", + "modrinth": "Sophisticated Backpacks" }, "id": { - "curseforge": "422301" + "curseforge": "422301", + "modrinth": "TyCTlI4b" }, "files": [ { @@ -7588,20 +11865,48 @@ ], "size": 930346, "date_published": "2025-07-12T22:22:29.537Z" + }, + { + "type": "modrinth", + "file_name": "sophisticatedbackpacks-1.20.1-3.23.23.1281.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/TyCTlI4b/versions/3nFxZQrX/sophisticatedbackpacks-1.20.1-3.23.23.1281.jar", + "id": "3nFxZQrX", + "parent_id": "TyCTlI4b", + "hashes": { + "sha512": "bb032cd0abe2330d76f4e8c5e38974fafdabfa52cdd16364a1946082ecb1d76e041cd2683bb5f98d22d927e0e13b21c16e518789cf5821708773dec96f102659", + "sha1": "d08da3cf0cb62f365143ad2bc94e857a2e4c1172" + }, + "required_dependencies": [ + "nmoqTijg" + ], + "size": 930345, + "date_published": "2025-07-12T22:22:45.729698Z" } ] }, { - "pakku_id": "ofieNqf2gYobX5oy", + "pakku_id": "Foe7A2QXIKlyEHbt", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "sophisticated-core" + "curseforge": "sophisticated-core", + "modrinth": "sophisticated-core" }, "name": { - "curseforge": "Sophisticated Core" + "curseforge": "Sophisticated Core", + "modrinth": "Sophisticated Core" }, "id": { - "curseforge": "618298" + "curseforge": "618298", + "modrinth": "nmoqTijg" }, "files": [ { @@ -7625,21 +11930,46 @@ "required_dependencies": [], "size": 1333615, "date_published": "2025-07-12T12:41:45.433Z" + }, + { + "type": "modrinth", + "file_name": "sophisticatedcore-1.20.1-1.2.75.1033.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/nmoqTijg/versions/2Nf2a3j9/sophisticatedcore-1.20.1-1.2.75.1033.jar", + "id": "2Nf2a3j9", + "parent_id": "nmoqTijg", + "hashes": { + "sha512": "af116b9b26be90495dbf6f5e8a28bb1ef4482570a09b3b5bf8845fa38221d2cec3f2283c7d20ed490bc0b600eb6d2906c19bce9c214cfa07d7544260b9134666", + "sha1": "819a80c185dfc80a738bd99087200ed5f28cfc6e" + }, + "required_dependencies": [], + "size": 1333615, + "date_published": "2025-07-12T12:42:02.625499Z" } ] }, { - "pakku_id": "roB1p3odTGtLzGw7", + "pakku_id": "ztIkqvZk37z4FIED", "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "sound-physics-remastered" + "curseforge": "sound-physics-remastered", + "modrinth": "sound-physics-remastered" }, "name": { - "curseforge": "Sound Physics Remastered" + "curseforge": "Sound Physics Remastered", + "modrinth": "Sound Physics Remastered" }, "id": { - "curseforge": "535489" + "curseforge": "535489", + "modrinth": "qyVF9oeo" }, "files": [ { @@ -7662,20 +11992,45 @@ "required_dependencies": [], "size": 204480, "date_published": "2025-04-08T16:04:46.963Z" + }, + { + "type": "modrinth", + "file_name": "sound-physics-remastered-forge-1.20.1-1.4.13.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "alpha", + "url": "https://cdn.modrinth.com/data/qyVF9oeo/versions/fqgMU03D/sound-physics-remastered-forge-1.20.1-1.4.13.jar", + "id": "fqgMU03D", + "parent_id": "qyVF9oeo", + "hashes": { + "sha512": "3840428a7b9e065e380b5fc59a134e7c9aa3b46c0c491724534274eb709a1927be5ab6473a8a38f60bdb16e128174a1bae432e81e86a622b7d2b75e4aa961998", + "sha1": "d662aa77d89d48ce254421d064476d0f15c3f11f" + }, + "required_dependencies": [], + "size": 204480, + "date_published": "2025-04-08T16:04:58.342578Z" } ] }, { - "pakku_id": "wVeYwIK7TxS0lDa0", + "pakku_id": "dI6jxGUklcstU9uh", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "species" + "curseforge": "species", + "modrinth": "species" }, "name": { - "curseforge": "Species" + "curseforge": "Species", + "modrinth": "Species" }, "id": { - "curseforge": "857737" + "curseforge": "857737", + "modrinth": "s5d4P01r" }, "redistributable": false, "files": [ @@ -7699,20 +12054,45 @@ "required_dependencies": [], "size": 42101496, "date_published": "2025-07-08T16:03:05.663Z" + }, + { + "type": "modrinth", + "file_name": "species-3.4.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/s5d4P01r/versions/xkMjveeZ/species-3.4.jar", + "id": "xkMjveeZ", + "parent_id": "s5d4P01r", + "hashes": { + "sha512": "e7995bcf3a8ea07ebd2e640e03df69c9d427820a7bcf881432f82253eea31f13ce2bed549af6c0e557d39301aee422e4a4090d16e22df9a73244cdcfefd7fbe9", + "sha1": "9a382083142bf27992fbe0836d297f89265dd24a" + }, + "required_dependencies": [], + "size": 42101496, + "date_published": "2025-07-08T16:03:37.367924Z" } ] }, { - "pakku_id": "1MkKLXF1oSSK23jo", + "pakku_id": "H40iluU8Vao2XSgS", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "supermartijn642s-config-lib" + "curseforge": "supermartijn642s-config-lib", + "modrinth": "supermartijn642s-config-lib" }, "name": { - "curseforge": "SuperMartijn642's Config Lib" + "curseforge": "SuperMartijn642's Config Lib", + "modrinth": "SuperMartijn642's Config Lib" }, "id": { - "curseforge": "438332" + "curseforge": "438332", + "modrinth": "LN9BxssP" }, "files": [ { @@ -7737,20 +12117,47 @@ "required_dependencies": [], "size": 206584, "date_published": "2023-08-21T13:15:54.190Z" + }, + { + "type": "modrinth", + "file_name": "supermartijn642configlib-1.1.8-forge-mc1.20.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/LN9BxssP/versions/ZKor79dR/supermartijn642configlib-1.1.8-forge-mc1.20.jar", + "id": "ZKor79dR", + "parent_id": "LN9BxssP", + "hashes": { + "sha512": "476595aacc7c66a0cf7bcd56143975122ea54ae4c5b61a232d3b0b9b1e3c013575efcc05de31a5d2c4e129542bfd8ae255a25d1486a4e08961cc4a303940fd19", + "sha1": "f80f9eed728966adcfbcc848633e789645057281" + }, + "required_dependencies": [], + "size": 206584, + "date_published": "2023-08-21T13:15:59.833389Z" } ] }, { - "pakku_id": "DEXNITEeAcQwDOq1", + "pakku_id": "XS7cb19V5jxLLV4C", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "supermartijn642s-core-lib" + "curseforge": "supermartijn642s-core-lib", + "modrinth": "supermartijn642s-core-lib" }, "name": { - "curseforge": "SuperMartijn642's Core Lib" + "curseforge": "SuperMartijn642's Core Lib", + "modrinth": "SuperMartijn642's Core Lib" }, "id": { - "curseforge": "454372" + "curseforge": "454372", + "modrinth": "rOUBggPv" }, "files": [ { @@ -7775,6 +12182,28 @@ "required_dependencies": [], "size": 515362, "date_published": "2024-12-29T22:15:09.800Z" + }, + { + "type": "modrinth", + "file_name": "supermartijn642corelib-1.1.18-forge-mc1.20.1.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/rOUBggPv/versions/VWJoqHin/supermartijn642corelib-1.1.18-forge-mc1.20.1.jar", + "id": "VWJoqHin", + "parent_id": "rOUBggPv", + "hashes": { + "sha512": "dedde27b0e1cd24c006c840bf4d0028689670f1fe9cbde16134e7c08cce58a88f431b39346b7a6847348cafec09638b2c14b2e6dcb4c14a23127e90c5ba9d362", + "sha1": "d37e1148b512c67cee704635b4f07d1f9ea8c31c" + }, + "required_dependencies": [], + "size": 515362, + "date_published": "2024-12-29T22:15:09.734450Z" } ] }, @@ -7816,16 +12245,20 @@ ] }, { - "pakku_id": "yZ0I3QxdQipbvKMF", + "pakku_id": "xmb1HbbWASwcnp4D", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "tfc-ambiental-second-edition" + "curseforge": "tfc-ambiental-second-edition", + "modrinth": "tfc-ambiental-second-edition" }, "name": { - "curseforge": "TFC Ambiental - Second edition" + "curseforge": "TFC Ambiental - Second edition", + "modrinth": "TFC Ambiental: Second edition" }, "id": { - "curseforge": "940350" + "curseforge": "940350", + "modrinth": "K7eNiRnX" }, "files": [ { @@ -7849,6 +12282,28 @@ "required_dependencies": [], "size": 640068, "date_published": "2024-08-23T09:41:25.543Z" + }, + { + "type": "modrinth", + "file_name": "tfcambiental-1.20.1-3.3.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/K7eNiRnX/versions/L5UbdkdE/tfcambiental-1.20.1-3.3.0.jar", + "id": "L5UbdkdE", + "parent_id": "K7eNiRnX", + "hashes": { + "sha512": "775a6cbe712e13c26061f34670ae417b382e79adbd69ed63b104fb0e4721b23e230c5328b671b9cf8eab7ea0b1c9ccc602f650da8c81923c2be90470e3b37641", + "sha1": "e1bc92959d8cbfb1d8f16dc124a14a0709d6aba6" + }, + "required_dependencies": [], + "size": 640033, + "date_published": "2024-05-05T01:41:06.190734Z" } ] }, @@ -7889,7 +12344,8 @@ "pakku_id": "4WwQ11qPky8VtFcw", "pakku_links": [ "F6H99cZ4H6jZRpEK", - "fMkiGcRPRv1DdRC1" + "fMkiGcRPRv1DdRC1", + "64uacGcEw697jVGs" ], "type": "MOD", "slug": { @@ -7928,16 +12384,23 @@ ] }, { - "pakku_id": "FNRWPZqccIxEYmCb", + "pakku_id": "CPaYKBv7ChV7n8m0", + "pakku_links": [ + "64uacGcEw697jVGs" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "tfc-canes" + "curseforge": "tfc-canes", + "modrinth": "tfc-canes" }, "name": { - "curseforge": "TFC Canes" + "curseforge": "TFC Canes", + "modrinth": "TFC Canes" }, "id": { - "curseforge": "920202" + "curseforge": "920202", + "modrinth": "ZELi9Nbx" }, "files": [ { @@ -7962,6 +12425,29 @@ ], "size": 41732, "date_published": "2025-02-02T23:12:33.890Z" + }, + { + "type": "modrinth", + "file_name": "tfccanes-2.1.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/ZELi9Nbx/versions/QohMlQrN/tfccanes-2.1.0.jar", + "id": "QohMlQrN", + "parent_id": "ZELi9Nbx", + "hashes": { + "sha512": "cceec1399d5becbc8ae3c737fdef0b23629c111191e52e9fea1cacb7adbce295682ea756058083e7bec7df6cde56a683e26e527e69323dc98de0f9045dc4abff", + "sha1": "68fb4b838131beab8ac831ddb241bc96ca8aae90" + }, + "required_dependencies": [ + "JaCEZUhg" + ], + "size": 41459, + "date_published": "2025-01-07T19:12:44.365040Z" } ] }, @@ -7971,7 +12457,9 @@ "p2gtFoMFQckm3agI", "F6H99cZ4H6jZRpEK", "sJEa0sgmiknN6IGn", - "fMkiGcRPRv1DdRC1" + "fMkiGcRPRv1DdRC1", + "1RCsMnDdwXXOUKKG", + "64uacGcEw697jVGs" ], "type": "MOD", "slug": { @@ -8014,7 +12502,8 @@ "pakku_id": "zerUE7n4nmHdsmgn", "pakku_links": [ "F6H99cZ4H6jZRpEK", - "fMkiGcRPRv1DdRC1" + "fMkiGcRPRv1DdRC1", + "64uacGcEw697jVGs" ], "type": "MOD", "slug": { @@ -8053,17 +12542,23 @@ ] }, { - "pakku_id": "1Wy7Kh7abigYZ8oH", + "pakku_id": "qsPtzQR6kvGPEfHU", + "pakku_links": [ + "64uacGcEw697jVGs" + ], "type": "MOD", "side": "BOTH", "slug": { - "curseforge": "tfc-hot-or-not" + "curseforge": "tfc-hot-or-not", + "modrinth": "tfc-hot-or-not" }, "name": { - "curseforge": "TFC Hot or Not" + "curseforge": "TFC Hot or Not", + "modrinth": "TFC Hot or Not" }, "id": { - "curseforge": "499096" + "curseforge": "499096", + "modrinth": "6fOyWxrE" }, "files": [ { @@ -8089,20 +12584,51 @@ ], "size": 464173, "date_published": "2025-01-02T23:13:06.400Z" + }, + { + "type": "modrinth", + "file_name": "TFCHotOrNot-1.20.1-1.0.13.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/6fOyWxrE/versions/5c1Fc17J/TFCHotOrNot-1.20.1-1.0.13.jar", + "id": "5c1Fc17J", + "parent_id": "6fOyWxrE", + "hashes": { + "sha512": "1f1360cabdd509a6aab65c4d3be822adeb45315553293cc80e5d1c77f444dc9e38fd904252c6ef9f60b80ec550792d4b9197c973ebb9ec459c5ba3dd946e0aeb", + "sha1": "383507ce61eaa1fe9368915536de8b3685517728" + }, + "required_dependencies": [ + "JaCEZUhg" + ], + "size": 464173, + "date_published": "2025-01-02T23:13:30.140364Z" } ] }, { - "pakku_id": "intGycSboQ4EtUpx", + "pakku_id": "EgqS6T2VdK7Hazcf", + "pakku_links": [ + "64uacGcEw697jVGs" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "tfc-improved-badlands" + "curseforge": "tfc-improved-badlands", + "modrinth": "tfc-improved-badlands" }, "name": { - "curseforge": "TFC Improved Badlands" + "curseforge": "TFC Improved Badlands", + "modrinth": "TFC Improved Badlands" }, "id": { - "curseforge": "969207" + "curseforge": "969207", + "modrinth": "kzX1pnV3" }, "files": [ { @@ -8128,13 +12654,38 @@ ], "size": 1750888, "date_published": "2024-02-21T21:42:51.753Z" + }, + { + "type": "modrinth", + "file_name": "TFCImprovedBadlands-1.20.1-1.0.2.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/kzX1pnV3/versions/t1JS5Yoc/TFCImprovedBadlands-1.20.1-1.0.2.jar", + "id": "t1JS5Yoc", + "parent_id": "kzX1pnV3", + "hashes": { + "sha512": "d92d7560bb93c5bd69fbfbf636cbe22fd966297cd4c5f900235ae8ff1924a1b1fff916f8e4a40c22c0785f4ef56248a9d5a87e10280e5ab2e0531e82a4205da3", + "sha1": "021052fcfdd3b51ec5c0b3e46974ecdfd641a0c8" + }, + "required_dependencies": [ + "JaCEZUhg" + ], + "size": 1750888, + "date_published": "2024-08-28T13:19:49.057361Z" } ] }, { "pakku_id": "B9nXYwWrLGp1WG43", "pakku_links": [ - "fMkiGcRPRv1DdRC1" + "fMkiGcRPRv1DdRC1", + "64uacGcEw697jVGs" ], "type": "MOD", "slug": { @@ -8176,7 +12727,8 @@ { "pakku_id": "O9o4v50wMwsyPZeQ", "pakku_links": [ - "fMkiGcRPRv1DdRC1" + "fMkiGcRPRv1DdRC1", + "64uacGcEw697jVGs" ], "type": "MOD", "slug": { @@ -8216,17 +12768,23 @@ ] }, { - "pakku_id": "WbVOj6kmY9jCiHED", + "pakku_id": "l0tdewpf5UdiNTN9", + "pakku_links": [ + "64uacGcEw697jVGs" + ], "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "tfc-support-indicator" + "curseforge": "tfc-support-indicator", + "modrinth": "tfc-support-indicator" }, "name": { - "curseforge": "TFC Support Indicator" + "curseforge": "TFC Support Indicator", + "modrinth": "TFC Support Indicator" }, "id": { - "curseforge": "1195624" + "curseforge": "1195624", + "modrinth": "RL8eBaUL" }, "files": [ { @@ -8249,20 +12807,56 @@ "required_dependencies": [], "size": 6997, "date_published": "2025-02-07T19:27:13.010Z" + }, + { + "type": "modrinth", + "file_name": "tfc_support_indicator-1.0.3+mc1.20.1.jar", + "mc_versions": [ + "1.20.1", + "1.20.2", + "1.20.3", + "1.20.4", + "1.20.5", + "1.20.6" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/RL8eBaUL/versions/jeOTOlLX/tfc_support_indicator-1.0.3+mc1.20.1.jar", + "id": "jeOTOlLX", + "parent_id": "RL8eBaUL", + "hashes": { + "sha512": "70a0193b3c95e06070dd645282acda97adae68ddda39f206e81df212ef964105b22a4c851af03b74044ac7985c7c51fa40df34e2dc08e95875b0747d1f45aefb", + "sha1": "0d0001517a6a4246f1b9d968bf5672ecbfdc9596" + }, + "required_dependencies": [ + "nvQzSEkH", + "JaCEZUhg" + ], + "size": 6993, + "date_published": "2024-08-24T01:04:21.236370Z" } ] }, { - "pakku_id": "kUVAur6Xu9Lmw417", + "pakku_id": "oV67DS8fDUlcK3I3", + "pakku_links": [ + "64uacGcEw697jVGs" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "tfc-textile" + "curseforge": "tfc-textile", + "modrinth": "tfc-textile" }, "name": { - "curseforge": "TFC Textile (Legacy)" + "curseforge": "TFC Textile (Legacy)", + "modrinth": "TFC Textile (Legacy)" }, "id": { - "curseforge": "1085858" + "curseforge": "1085858", + "modrinth": "23aEXYED" }, "files": [ { @@ -8289,20 +12883,51 @@ ], "size": 198232, "date_published": "2024-09-27T14:03:11.930Z" + }, + { + "type": "modrinth", + "file_name": "tfc_textile-1.0.5.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/23aEXYED/versions/wGgJ8Tae/tfc_textile-1.0.5.jar", + "id": "wGgJ8Tae", + "parent_id": "23aEXYED", + "hashes": { + "sha512": "2aa299b98fca1aef27334b23f68d58085e3d02be1650e68656e9313480bc76038685a4aaa3938bd20c59b49898d1ec992d02ede026a2e6f8fb2fe27985ae259e", + "sha1": "0f68aff31c58bcfd12306218766d24022d6e78db" + }, + "required_dependencies": [ + "K7eNiRnX", + "JaCEZUhg" + ], + "size": 198232, + "date_published": "2024-09-27T14:02:59.003826Z" } ] }, { - "pakku_id": "ox8xAJejXCdMtbSo", + "pakku_id": "tSa9820mnJnp7Y2C", + "pakku_links": [ + "64uacGcEw697jVGs" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "tfc-tumbleweed" + "curseforge": "tfc-tumbleweed", + "modrinth": "tfc-tumbleweed" }, "name": { - "curseforge": "TFC Tumbleweed" + "curseforge": "TFC Tumbleweed", + "modrinth": "TFC Tumbleweed" }, "id": { - "curseforge": "899986" + "curseforge": "899986", + "modrinth": "r96Vw4vO" }, "files": [ { @@ -8329,21 +12954,52 @@ ], "size": 2087120, "date_published": "2024-02-21T15:30:37.547Z" + }, + { + "type": "modrinth", + "file_name": "TFCTumbleweed-1.20.1-1.2.2.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/r96Vw4vO/versions/qDX0X7bD/TFCTumbleweed-1.20.1-1.2.2.jar", + "id": "qDX0X7bD", + "parent_id": "r96Vw4vO", + "hashes": { + "sha512": "6449851e787578eced05009afe978d5b329d36efce4e11113b3a7c8dfeecb9df42475f6ece76937a374508465933240affede6e7cc136756ac8918e09ac8fd09", + "sha1": "0b98dcc97f73d24707c3f4552145787e21d9b29b" + }, + "required_dependencies": [ + "msatPZQ2", + "JaCEZUhg" + ], + "size": 2087120, + "date_published": "2024-08-28T13:35:57.311537Z" } ] }, { - "pakku_id": "aPVI4u2RvogsqbG8", + "pakku_id": "NFw0Avds4yTwUL8D", + "pakku_links": [ + "64uacGcEw697jVGs" + ], "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "tfc-vessel-tooltip" + "curseforge": "tfc-vessel-tooltip", + "modrinth": "tfc-vessel-tooltip" }, "name": { - "curseforge": "TFC Vessel Tooltip" + "curseforge": "TFC Vessel Tooltip", + "modrinth": "TFC Vessel Tooltip" }, "id": { - "curseforge": "952386" + "curseforge": "952386", + "modrinth": "Xve2AFV9" }, "files": [ { @@ -8367,20 +13023,51 @@ "required_dependencies": [], "size": 6197, "date_published": "2024-08-30T13:33:06.170Z" + }, + { + "type": "modrinth", + "file_name": "TFCVesselTooltip-1.20.1-1.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/Xve2AFV9/versions/3kdOHSCs/TFCVesselTooltip-1.20.1-1.1.jar", + "id": "3kdOHSCs", + "parent_id": "Xve2AFV9", + "hashes": { + "sha512": "5d83c2327994ec3c408aa007f650aeeb0e9a7d20ecd46fb39d3a007fa80100c7eaa854dff6bf268e6bae4aa592920faa59e1799b6b29d4b1463ffd7f90656d5f", + "sha1": "0ba5058d7a728119121acf09e0badb3c87d2f319" + }, + "required_dependencies": [ + "JaCEZUhg" + ], + "size": 6197, + "date_published": "2024-08-30T13:33:08.401599Z" } ] }, { - "pakku_id": "Y7FULi6Pzq74TKdA", + "pakku_id": "ZGt3prWXJVURPwKE", + "pakku_links": [ + "64uacGcEw697jVGs" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "water-flasks" + "curseforge": "water-flasks", + "modrinth": "water-flasks" }, "name": { - "curseforge": "TFC Water Flasks" + "curseforge": "TFC Water Flasks", + "modrinth": "Water Flasks" }, "id": { - "curseforge": "354353" + "curseforge": "354353", + "modrinth": "ONgsGaM9" }, "files": [ { @@ -8404,20 +13091,50 @@ "required_dependencies": [], "size": 939203, "date_published": "2025-06-22T02:23:25.573Z" + }, + { + "type": "modrinth", + "file_name": "waterflasks-3.0.6.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/ONgsGaM9/versions/i7FOulRq/waterflasks-3.0.6.jar", + "id": "i7FOulRq", + "parent_id": "ONgsGaM9", + "hashes": { + "sha512": "d0e1b1646d374741c9abdf7de41c615b85e8c7d18fbb37bed46c6ddf5802ca2d52a96c999b54ac82eac77e40571b23a3dce1985973b8bfb858981fe13ef6bb3d", + "sha1": "bcb5863e29d5faedcffde83f6d5ca02486b264a4" + }, + "required_dependencies": [ + "JaCEZUhg" + ], + "size": 933206, + "date_published": "2025-01-19T23:31:12.024095Z" } ] }, { - "pakku_id": "GiXa6kN3oxBcS6j4", + "pakku_id": "9qKO8lvTQ1RWQA5T", + "pakku_links": [ + "64uacGcEw697jVGs" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "tfc-weld-button" + "curseforge": "tfc-weld-button", + "modrinth": "tfc-weld-button" }, "name": { - "curseforge": "TFC Weld Button" + "curseforge": "TFC Weld Button", + "modrinth": "TFC Weld Button" }, "id": { - "curseforge": "1093683" + "curseforge": "1093683", + "modrinth": "K9CZ9PGx" }, "files": [ { @@ -8441,6 +13158,30 @@ "required_dependencies": [], "size": 12642, "date_published": "2024-11-30T06:12:27.997Z" + }, + { + "type": "modrinth", + "file_name": "TFCWeldButton-1.20.1-1.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/K9CZ9PGx/versions/dtoFhsbX/TFCWeldButton-1.20.1-1.1.jar", + "id": "dtoFhsbX", + "parent_id": "K9CZ9PGx", + "hashes": { + "sha512": "f10676722090db19f4af693949ad0891d26b5c4d2189fdb6536958875a57ea2cbb150634d68debc62ec407c32a8ce58a736f00ecfea03db5152d69cce25fe67d", + "sha1": "dda1ccb3f998e85de186c84162bf437f2e800031" + }, + "required_dependencies": [ + "JaCEZUhg" + ], + "size": 12642, + "date_published": "2024-11-30T06:12:46.284611Z" } ] }, @@ -8481,17 +13222,23 @@ ] }, { - "pakku_id": "wXXpy8KNJ3zbDmw2", + "pakku_id": "qCVd1ucK3X4xk861", + "pakku_links": [ + "64uacGcEw697jVGs" + ], "type": "MOD", "side": "BOTH", "slug": { - "curseforge": "tfcgenviewer" + "curseforge": "tfcgenviewer", + "modrinth": "tfcgenviewer" }, "name": { - "curseforge": "TFCGenViewer" + "curseforge": "TFCGenViewer", + "modrinth": "TFCGenViewer" }, "id": { - "curseforge": "1062270" + "curseforge": "1062270", + "modrinth": "yp9Ot3YC" }, "files": [ { @@ -8517,13 +13264,38 @@ ], "size": 257671, "date_published": "2024-12-15T22:53:39.760Z" + }, + { + "type": "modrinth", + "file_name": "tfcgenviewer-1.20.1-1.4.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/yp9Ot3YC/versions/nLcjWGDP/tfcgenviewer-1.20.1-1.4.1.jar", + "id": "nLcjWGDP", + "parent_id": "yp9Ot3YC", + "hashes": { + "sha512": "f9c1bb568329833b369cf2c2b0a3bafb7a75787919b4a736d997e7a51793115f7e4f24002bf59ee51957d7fe483733727bee904b0f09d3ae403f94e6dc0faa06", + "sha1": "9ed2b9125f46c79043912d695f710b9bdb0f68a9" + }, + "required_dependencies": [ + "JaCEZUhg" + ], + "size": 257671, + "date_published": "2024-12-15T22:52:40.048230Z" } ] }, { "pakku_id": "wHVaxSX4iL72uvnQ", "pakku_links": [ - "SqFAAFJATMkBXiCt" + "SqFAAFJATMkBXiCt", + "GXyDUWkiW0nLPTdo" ], "type": "MOD", "slug": { @@ -8562,20 +13334,23 @@ ] }, { - "pakku_id": "KJAlHXYt6N7xCHpj", + "pakku_id": "4weWuId4TI1ZJk1L", "pakku_links": [ - "SqFAAFJATMkBXiCt", - "9BKEvabQWNVcGwsX" + "GXyDUWkiW0nLPTdo" ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "tacz-js" + "curseforge": "tacz-js", + "modrinth": "tacz-js" }, "name": { - "curseforge": "TaCZ JS" + "curseforge": "TaCZ JS", + "modrinth": "TaCZ JS" }, "id": { - "curseforge": "1130998" + "curseforge": "1130998", + "modrinth": "pAcsgLW2" }, "files": [ { @@ -8601,20 +13376,48 @@ ], "size": 90443, "date_published": "2025-06-11T07:06:10.097Z" + }, + { + "type": "modrinth", + "file_name": "taczjs-forge-1.3.6-mc1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/pAcsgLW2/versions/u3boO1Li/taczjs-forge-1.3.6-mc1.20.1.jar", + "id": "u3boO1Li", + "parent_id": "pAcsgLW2", + "hashes": { + "sha512": "02427d1396fc7eae8ebcd030739e90ab0e31aaefbaee5a4642e6ce0b3f1c51084066f74d88d988768741bd76e8b5dbcf3960250ca0f5ab901d48752531e953c9", + "sha1": "9a75526b23e2c851df20749ba1a5f3e11f90c603" + }, + "required_dependencies": [ + "umyGl7zF", + "SzzJttH8" + ], + "size": 90443, + "date_published": "2025-06-11T07:07:34.035734Z" } ] }, { - "pakku_id": "fMkiGcRPRv1DdRC1", + "pakku_id": "64uacGcEw697jVGs", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "terrafirmacraft" + "curseforge": "terrafirmacraft", + "modrinth": "terrafirmacraft" }, "name": { - "curseforge": "TerraFirmaCraft" + "curseforge": "TerraFirmaCraft", + "modrinth": "TerraFirmaCraft" }, "id": { - "curseforge": "302973" + "curseforge": "302973", + "modrinth": "JaCEZUhg" }, "files": [ { @@ -8640,26 +13443,78 @@ ], "size": 47450381, "date_published": "2025-07-06T22:20:34.050Z" + }, + { + "type": "modrinth", + "file_name": "TerraFirmaCraft-Forge-1.20.1-3.2.16.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/JaCEZUhg/versions/9KLbGimV/TerraFirmaCraft-Forge-1.20.1-3.2.16.jar", + "id": "9KLbGimV", + "parent_id": "JaCEZUhg", + "hashes": { + "sha512": "40c6488fbabf77522739d5b49798b7506fdaff75e9ab969e400431ce44ad47e5fe561f98aa0793e72d2300584a98cd8741229cc3449eed99e0359bb6d75fc363", + "sha1": "c87cab744f1e6e17cbe7fa596f3566ac5d904270" + }, + "required_dependencies": [ + "nU0bVIaL" + ], + "size": 47450381, + "date_published": "2025-07-06T22:20:39.823132Z" } ] }, { - "pakku_id": "SGfDJ5byxzl3Ebq0", + "pakku_id": "qsKC91BM2qENiBSo", "pakku_links": [ - "fMkiGcRPRv1DdRC1", - "2wSbyvuI5uFxrZW6" + "rbYKnXWzT4megBI6" ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "terrafirmagreg-core" + "curseforge": "terrafirmagreg-core", + "modrinth": "terrafirmagreg-core" }, "name": { - "curseforge": "TerraFirmaGreg-Core" + "curseforge": "TerraFirmaGreg-Core", + "modrinth": "TerraFirmaGreg-Core" }, "id": { - "curseforge": "513402" + "curseforge": "513402", + "modrinth": "lNttW2Xl" }, "files": [ + { + "type": "modrinth", + "file_name": "TerraFirmaGreg-Core-Modern-0.7.3.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/lNttW2Xl/versions/lyq8kJKh/TerraFirmaGreg-Core-Modern-0.7.3.jar", + "id": "lyq8kJKh", + "parent_id": "lNttW2Xl", + "hashes": { + "sha512": "233d224499533db9ae76e74fc52c357184e6189de7fdec7ebfe36db8a5c44493210aa6878d0cf37b0dce08dbdad247de6d8c4f82400c4344bbf8a863fdb7631a", + "sha1": "a3c5f0ff25afdc7826ca3931493d705b0a5f2665" + }, + "required_dependencies": [ + "JaCEZUhg", + "7tG215v7" + ], + "size": 451137, + "date_published": "2025-07-19T17:18:04.503966Z" + }, { "type": "curseforge", "file_name": "TerraFirmaGreg-Core-Modern-0.7.2.jar", @@ -8688,16 +13543,20 @@ ] }, { - "pakku_id": "Ay9gyEPTxyeWAJft", + "pakku_id": "oLp78y55xvS4lBnk", "type": "MOD", + "side": "SERVER", "slug": { - "curseforge": "too-fast" + "curseforge": "too-fast", + "modrinth": "too-fast" }, "name": { - "curseforge": "Too Fast" + "curseforge": "Too Fast", + "modrinth": "Too Fast" }, "id": { - "curseforge": "550678" + "curseforge": "550678", + "modrinth": "w6JSkKSH" }, "files": [ { @@ -8721,6 +13580,28 @@ "required_dependencies": [], "size": 3875, "date_published": "2023-07-06T08:27:59.207Z" + }, + { + "type": "modrinth", + "file_name": "toofast-1.20-0.4.3.5.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/w6JSkKSH/versions/2pix3xrW/toofast-1.20-0.4.3.5.jar", + "id": "2pix3xrW", + "parent_id": "w6JSkKSH", + "hashes": { + "sha512": "722b6788724c813978d468100f85532ea5a9f07830d4a0475aa6050434bef5da3e51ccd235ed7158b6797d938ab10b9b3f79422e72517c2e20761dd923c5d602", + "sha1": "a6163b39827b483fb2976c916d99fce6cbf247a9" + }, + "required_dependencies": [], + "size": 3875, + "date_published": "2024-05-25T08:37:44.955753Z" } ] }, @@ -8798,53 +13679,20 @@ ] }, { - "pakku_id": "k6zIGpPrxPxbod8z", + "pakku_id": "1nr7ZoPnNvkoK49F", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "txnilib" + "curseforge": "u-team-core", + "modrinth": "u-team-core" }, "name": { - "curseforge": "TxniLib" + "curseforge": "U Team Core", + "modrinth": "U Team Core" }, "id": { - "curseforge": "1104882" - }, - "files": [ - { - "type": "curseforge", - "file_name": "txnilib-forge-1.0.24-1.20.1.jar", - "mc_versions": [ - "1.20.1", - "1.20" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6533/724/txnilib-forge-1.0.24-1.20.1.jar", - "id": "6533724", - "parent_id": "1104882", - "hashes": { - "sha1": "a1e16b7d61f0f16a162d429ee1eab9b4e3eeb9ef", - "md5": "31823d0999fda413af6dc226481e404a" - }, - "required_dependencies": [], - "size": 3743339, - "date_published": "2025-05-15T21:54:10.010Z" - } - ] - }, - { - "pakku_id": "pNlef6pOJARiH2WV", - "type": "MOD", - "slug": { - "curseforge": "u-team-core" - }, - "name": { - "curseforge": "U Team Core" - }, - "id": { - "curseforge": "273744" + "curseforge": "273744", + "modrinth": "g2FGQs4R" }, "files": [ { @@ -8867,21 +13715,45 @@ "required_dependencies": [], "size": 587742, "date_published": "2025-05-19T18:40:11.757Z" + }, + { + "type": "modrinth", + "file_name": "u_team_core-forge-1.20.1-5.1.4.382.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/g2FGQs4R/versions/Xdq16yXj/u_team_core-forge-1.20.1-5.1.4.382.jar", + "id": "Xdq16yXj", + "parent_id": "g2FGQs4R", + "hashes": { + "sha512": "8e0921764c7eb178b0990f61bf92e45a48e5813a5571c64bf2be3b61c3ac3d0912777f02a048aff102fd28ce35264f0b8410d77fd579cbcbc4a5c826e3911401", + "sha1": "45d737d4215c453c35bc8a16aa0c74d1179a0934" + }, + "required_dependencies": [], + "size": 587742, + "date_published": "2025-05-19T18:40:13.171143Z" } ] }, { - "pakku_id": "dvvP2ZxrASA5e2dq", + "pakku_id": "Osj3mktzthdVRa2j", "type": "MOD", "side": "CLIENT", "slug": { - "curseforge": "unilib" + "curseforge": "unilib", + "modrinth": "unilib" }, "name": { - "curseforge": "UniLib" + "curseforge": "UniLib", + "modrinth": "UniLib" }, "id": { - "curseforge": "1056812" + "curseforge": "1056812", + "modrinth": "nT86WUER" }, "files": [ { @@ -8906,11 +13778,37 @@ "required_dependencies": [], "size": 1630001, "date_published": "2025-05-08T17:38:34.730Z" + }, + { + "type": "modrinth", + "file_name": "UniLib-1.1.0+1.20.1-forge.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/nT86WUER/versions/9CJgT5Sb/UniLib-1.1.0+1.20.1-forge.jar", + "id": "9CJgT5Sb", + "parent_id": "nT86WUER", + "hashes": { + "sha512": "6abcb77b1ac75a3dca4158fec4076f57bc9283f9ed5b199f7762608b6f07260499522d8199fe98247c8dd55d4b60af0131aa304f2c884dc93552a0e9c1b7ead1", + "sha1": "8797c163f33e4130eb7997d0eaa367d820172d92" + }, + "required_dependencies": [], + "size": 1630001, + "date_published": "2025-05-08T17:38:55.972879Z" } ] }, { "pakku_id": "ExgdsZjG51N3WrBe", + "pakku_links": [ + "Nw8xTCQngHA15ilh" + ], "type": "MOD", "slug": { "curseforge": "vintage-improvenents-ssw-edition" @@ -8948,17 +13846,20 @@ ] }, { - "pakku_id": "SZ5c7Jc5GOwlNtbX", + "pakku_id": "zonLLbYfp9ViO9i7", "type": "MOD", "side": "BOTH", "slug": { - "curseforge": "xaeros-minimap" + "curseforge": "xaeros-minimap", + "modrinth": "xaeros-minimap" }, "name": { - "curseforge": "Xaero's Minimap" + "curseforge": "Xaero's Minimap", + "modrinth": "Xaero's Minimap" }, "id": { - "curseforge": "263420" + "curseforge": "263420", + "modrinth": "1bokaNcj" }, "files": [ { @@ -8982,20 +13883,46 @@ "required_dependencies": [], "size": 1704662, "date_published": "2025-05-10T07:26:28.800Z" + }, + { + "type": "modrinth", + "file_name": "Xaeros_Minimap_25.2.6_Forge_1.20.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/1bokaNcj/versions/k73HMiDN/Xaeros_Minimap_25.2.6_Forge_1.20.jar", + "id": "k73HMiDN", + "parent_id": "1bokaNcj", + "hashes": { + "sha512": "ae2a620829fdbdc1135a543607057c20dab971bba0e955e52abfaa3c1b91bd70f6575d48c831886436393c3c7af50c6c9857953ab8b4540292aa9e9c446fdffa", + "sha1": "59386b42346aa909ce8cab98962affd01ecc4f0a" + }, + "required_dependencies": [], + "size": 1704662, + "date_published": "2025-05-10T07:44:37.108025Z" } ] }, { - "pakku_id": "ncPb1J2iN6WSYbHE", + "pakku_id": "tdBDW3xpPBc3E2mt", "type": "MOD", + "side": "CLIENT", "slug": { - "curseforge": "xaeros-world-map" + "curseforge": "xaeros-world-map", + "modrinth": "xaeros-world-map" }, "name": { - "curseforge": "Xaero's World Map" + "curseforge": "Xaero's World Map", + "modrinth": "Xaero's World Map" }, "id": { - "curseforge": "317780" + "curseforge": "317780", + "modrinth": "NcUtCpym" }, "files": [ { @@ -9019,6 +13946,28 @@ "required_dependencies": [], "size": 948532, "date_published": "2025-05-17T08:20:36.313Z" + }, + { + "type": "modrinth", + "file_name": "XaerosWorldMap_1.39.9_Forge_1.20.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/NcUtCpym/versions/yCVWJ9aK/XaerosWorldMap_1.39.9_Forge_1.20.jar", + "id": "yCVWJ9aK", + "parent_id": "NcUtCpym", + "hashes": { + "sha512": "ec9b4925125fd7438ee30e69683c842558c7f3f3743d76bbed0ef003e1761ad70ba260cce9b93dbc8e9e8fa7c9d36ce6b91c48fb499ca5b913222e0f405e648a", + "sha1": "f268b46213c4c2245421f137c5f03b4164d8ab33" + }, + "required_dependencies": [], + "size": 948532, + "date_published": "2025-05-17T08:37:30.831430Z" } ] }, @@ -9059,16 +14008,20 @@ ] }, { - "pakku_id": "mipYCmxJi1EENLPO", + "pakku_id": "ScveDDpCjKro99ki", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "yacl" + "curseforge": "yacl", + "modrinth": "yacl" }, "name": { - "curseforge": "YetAnotherConfigLib" + "curseforge": "YetAnotherConfigLib", + "modrinth": "YetAnotherConfigLib (YACL)" }, "id": { - "curseforge": "667299" + "curseforge": "667299", + "modrinth": "1eAoo2KR" }, "files": [ { @@ -9092,20 +14045,46 @@ "required_dependencies": [], "size": 1105891, "date_published": "2025-03-23T19:12:56.087Z" + }, + { + "type": "modrinth", + "file_name": "yet_another_config_lib_v3-3.6.6+1.20.1-forge.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/1eAoo2KR/versions/sCWgXDYQ/yet_another_config_lib_v3-3.6.6+1.20.1-forge.jar", + "id": "sCWgXDYQ", + "parent_id": "1eAoo2KR", + "hashes": { + "sha512": "7fdd923ae94c1ada9bf0524f21cdfbb4f870ea93b26d02f369829585892fc5a2f61e60f43a6686ee611ff11bde8f123f178279e2de453c8fb320264153a0e8d9", + "sha1": "644731e321c53a35a0b3177a3cc6347fe38002f4" + }, + "required_dependencies": [], + "size": 1105891, + "date_published": "2025-03-23T19:12:55.655767Z" } ] }, { - "pakku_id": "SqFAAFJATMkBXiCt", + "pakku_id": "GXyDUWkiW0nLPTdo", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "timeless-and-classics-zero" + "curseforge": "timeless-and-classics-zero", + "modrinth": "timeless-and-classics-zero" }, "name": { - "curseforge": "[TaCZ] Timeless and Classics Zero" + "curseforge": "[TaCZ] Timeless and Classics Zero", + "modrinth": "[TaCZ] Timeless and Classics Zero" }, "id": { - "curseforge": "1028108" + "curseforge": "1028108", + "modrinth": "SzzJttH8" }, "files": [ { @@ -9128,20 +14107,45 @@ "required_dependencies": [], "size": 47826468, "date_published": "2025-06-15T15:09:58.720Z" + }, + { + "type": "modrinth", + "file_name": "tacz-1.20.1-1.1.6-hotfix.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/SzzJttH8/versions/quyywMZF/tacz-1.20.1-1.1.6-hotfix.jar", + "id": "quyywMZF", + "parent_id": "SzzJttH8", + "hashes": { + "sha512": "2db28186cc436b2e163db822dc0632fc32d5080adea3b3a0f891255cefe007ec029acd1e477f01adf5db8de7f79d14d4afa67c31a53b8c5ceaf00ce72b5de501", + "sha1": "e951d81b5f452bcad47c20d5b491fd26f8de8ce2" + }, + "required_dependencies": [], + "size": 47826468, + "date_published": "2025-06-15T15:12:58.577730Z" } ] }, { - "pakku_id": "MTt6FL1ZK2Omzj4I", + "pakku_id": "dGK4XTJPQF2dqXh1", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "alekiships" + "curseforge": "alekiships", + "modrinth": "alekiships" }, "name": { - "curseforge": "aleki's Nifty Ships" + "curseforge": "aleki's Nifty Ships", + "modrinth": "aleki's Nifty Ships" }, "id": { - "curseforge": "1068445" + "curseforge": "1068445", + "modrinth": "vuNeeDyl" }, "files": [ { @@ -9165,45 +14169,27 @@ "required_dependencies": [], "size": 22335232, "date_published": "2024-12-04T22:45:19.893Z" - } - ] - }, - { - "pakku_id": "JbXSFRnjhIMDzF7c", - "type": "MOD", - "side": "CLIENT", - "slug": { - "curseforge": "fix-gpu-memory-leak" - }, - "name": { - "curseforge": "fix GPU memory leak[Forge/Fabric]" - }, - "id": { - "curseforge": "882495" - }, - "files": [ + }, { - "type": "curseforge", - "file_name": "gpumemleakfix-1.20.1-1.8.jar", + "type": "modrinth", + "file_name": "alekiNiftyShips-FORGE-1.20.1-1.0.14.jar", "mc_versions": [ - "1.20.1", - "1.20" + "1.20.1" ], "loaders": [ - "neoforge", "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/4884/976/gpumemleakfix-1.20.1-1.8.jar", - "id": "4884976", - "parent_id": "882495", + "url": "https://cdn.modrinth.com/data/vuNeeDyl/versions/VX4fjmf1/alekiNiftyShips-FORGE-1.20.1-1.0.14.jar", + "id": "VX4fjmf1", + "parent_id": "vuNeeDyl", "hashes": { - "sha1": "54301c2db5467e0f9f5c504887436f358335331f", - "md5": "e5028e9da74761f26c00c546c8ebdc4d" + "sha512": "948dde522b1e0b95316db4105026bc8aa2488d709e133bd24a5cf20a17b3a7bb2e3ffa3b2cf038adc43ae768a6dc77ed9161518b8a3bc96475395c1f41b94096", + "sha1": "c42aaab43cd524c45c4065996cc06b9b48c5682a" }, "required_dependencies": [], - "size": 7997, - "date_published": "2023-11-20T20:55:45.500Z" + "size": 22335232, + "date_published": "2024-12-04T22:45:46.092248Z" } ] } diff --git a/pakku.jar b/pakku.jar new file mode 100644 index 000000000..9dce96ea2 Binary files /dev/null and b/pakku.jar differ diff --git a/pakku.json b/pakku.json index 0f4eb19cc..85f1db03a 100644 --- a/pakku.json +++ b/pakku.json @@ -1,6 +1,7 @@ { "name": "TerraFirmaGreg-Modern", - "version": "0.10.0", + "version": "DEV", + "release_type": "alpha", "description": "An innovative modpack that contains GregTech and TerraFirmaCraft on 1.20.x.", "author": "Exception, Xikaro", "overrides": [ @@ -156,7 +157,7 @@ "first-person-model": { "side": "CLIENT" }, - "ftb-backups-2": { + "flickerfix": { "side": "CLIENT" }, "no-report-button": { @@ -213,6 +214,12 @@ "entityculling": { "side": "CLIENT" }, + "pick-up-notifier": { + "side": "CLIENT" + }, + "smooth-boot-reloaded": { + "side": "CLIENT" + }, "resourceful-config": { "side": "BOTH" }, @@ -240,9 +247,6 @@ "particular-reforged": { "side": "BOTH" }, - "pick-up-notifier": { - "side": "BOTH" - }, "inventory-tweaks-refoxed": { "side": "BOTH" }, @@ -252,6 +256,9 @@ "detected-setblock-be-gone": { "side": "BOTH" }, + "ad-astra-auto-lander": { + "side": "CLIENT" + }, "probejs": { "export": false } diff --git a/tacz/ULV_guns.zip b/tacz/ULVguns.zip similarity index 85% rename from tacz/ULV_guns.zip rename to tacz/ULVguns.zip index 2785808d9..2ec89bee2 100644 Binary files a/tacz/ULV_guns.zip and b/tacz/ULVguns.zip differ