diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index e72ae8188..5557f3642 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -80,17 +80,17 @@ #### Step 2: Creating a New Instance in PrismLauncher 1. Open [PrismLauncher] and click on the **`Add Instance`** button. 2. In the **Name** field, enter the name **`TerraFirmaGreg-Modern`**. -3. Select Minecraft version **`1.20.1`** and Forge version **`47.2.6`** — these versions are necessary for the modpack to work correctly. +3. Select Minecraft version **`1.20.1`** and Forge version **`47.4.6`** — these versions are necessary for the modpack to work correctly. > [!TIP] -> ![Interface for creating a new instance in PrismLauncher](https://github.com/TerraFirmaGreg-Team/.github/blob/main/guide/new_instances.png?raw=true) +> ![Interface for creating a new instance in PrismLauncher](https://github.com/TerraFirmaGreg-Team/.github/blob/main/wiki/new_instances.png?raw=true) #### Step 3: Cleaning the Project Folder 1. Locate the instance folder in the PrismLauncher directory at **`TerraFirmaGreg-Modern/minecraft`**. > [!TIP] > For quick access, right-click on the instance and select **`Folder`**. -> ![Instance folder in PrismLauncher](https://github.com/TerraFirmaGreg-Team/.github/blob/main/guide/prism_folder.png?raw=true) +> ![Instance folder in PrismLauncher](https://github.com/TerraFirmaGreg-Team/.github/blob/main/wiki/prism_folder.png?raw=true) > [!WARNING] > Delete all files and directories inside the `minecraft` folder to avoid version conflicts and leftover old data. @@ -237,6 +237,12 @@ There are two approaches to creating a Pull Request: via terminal and via GitHub ### 3. Additional Recommendations +- #### Semantic Versioning Rules: + - The project follows [Semantic Versioning](https://semver.org/). + - **Patch**: Bug fixes and small changes (`1.0.0` → `1.0.1`) + - **Minor**: New features that don't break compatibility (`1.0.0` → `1.1.0`) + - **Major**: Breaking changes (`1.0.0` → `2.0.0`) + - #### Working with Git: - Create separate branches for each new functionality or bug fix. - Regularly synchronize your fork with the original repository to avoid conflicts. @@ -313,17 +319,17 @@ There are two approaches to creating a Pull Request: via terminal and via GitHub #### Шаг 2: Создание новой инстанции в PrismLauncher 1. Откройте [PrismLauncher] и нажмите на кнопку **`Add Instance`**. 2. В поле **Name** введите название **`TerraFirmaGreg-Modern`**. -3. Выберите версию Minecraft **`1.20.1`** и версию **`Forge 47.2.6`** — именно эти версии необходимы для корректной работы модпака. +3. Выберите версию Minecraft **`1.20.1`** и версию **`Forge 47.4.6`** — именно эти версии необходимы для корректной работы модпака. > [!TIP] -> ![Интерфейс для создания новой инстанции в PrismLauncher](https://github.com/TerraFirmaGreg-Team/.github/blob/main/guide/new_instances.png?raw=true) +> ![Интерфейс для создания новой инстанции в PrismLauncher](https://github.com/TerraFirmaGreg-Team/.github/blob/main/wiki/new_instances.png?raw=true) #### Шаг 3: Очистка папки проекта 1. Найдите папку инстанции в директории PrismLauncher по пути **`TerraFirmaGreg-Modern/minecraft`**. > [!TIP] > Для быстрого доступа нажмите правой кнопкой по инстанции и выберите **`Folder`**. -> ![Папка инстанции в PrismLauncher](https://github.com/TerraFirmaGreg-Team/.github/blob/main/guide/prism_folder.png?raw=true) +> ![Папка инстанции в PrismLauncher](https://github.com/TerraFirmaGreg-Team/.github/blob/main/wiki/prism_folder.png?raw=true) > [!WARNING] > Удалите все файлы и каталоги внутри папки `minecraft`, чтобы избежать конфликтов версий и остатков старых данных. @@ -470,6 +476,12 @@ There are two approaches to creating a Pull Request: via terminal and via GitHub ### 3. Дополнительные рекомендации +- #### Правила семантического версионирования: + - The project follows [Semantic Versioning](https://semver.org/). + - **Patch**: Исправлены ошибки и небольшие изменения (`1.0.0` → `1.0.1`) + - **Minor**: Новые функции, которые не нарушают совместимость (`1.0.0` → `1.1.0`) + - **Major**: Критические изменения (`1.0.0` → `2.0.0`) + - #### Работа с Git: - Создавайте отдельные ветки для каждой новой функциональности или исправления ошибок. - Регулярно синхронизируйте свой форк с оригинальным репозиторием для избежания конфликтов. diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fc28695a2..ce04c365c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,6 +24,8 @@ jobs: 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 }} + loader_version: ${{ steps.check.outputs.loader_version }} + loader_type: ${{ steps.check.outputs.loader_type }} release_type: ${{ steps.check.outputs.release_type }} diff: ${{ steps.read_diff.outputs.diff }} exists: ${{ steps.check.outputs.exists }} @@ -163,10 +165,19 @@ jobs: id: check shell: bash run: | - echo "project_name=${{ steps.pakku_info.outputs.name }}" >> $GITHUB_OUTPUT + MC_VERSIONS_JSON='${{ steps.pakku_lock_info.outputs.mc_versions }}' MINECRAFT_VERSION=$(echo "$MC_VERSIONS_JSON" | jq -r '.[0]' | tr -d '[]"') + + LOADERS_JSON='${{ steps.pakku_lock_info.outputs.loaders }}' + + LOADER_TYPE=$(echo "$LOADERS_JSON" | jq -r 'keys[0]') + LOADER_VERSION=$(echo "$LOADERS_JSON" | jq -r ".[keys[0]]") + echo "minecraft_version=$MINECRAFT_VERSION" >> $GITHUB_OUTPUT + echo "loader_version=$LOADER_VERSION" >> $GITHUB_OUTPUT + echo "loader_type=$LOADER_TYPE" >> $GITHUB_OUTPUT + if ${{ env.DEV_ENVIRONMENT == 'true' }}; then echo "project_version=build_#${{ github.run_number }}" >> $GITHUB_OUTPUT @@ -174,6 +185,7 @@ jobs: echo "project_version=${{ steps.changelog.outputs.version }}" >> $GITHUB_OUTPUT fi + echo "project_name=${{ steps.pakku_info.outputs.name }}" >> $GITHUB_OUTPUT echo "release_type=${{ steps.pakku_info.outputs.release_type }}" >> $GITHUB_OUTPUT echo "exists=${{ steps.check_tag.outputs.exists }}" >> $GITHUB_OUTPUT echo "make_release=${{ steps.check_tag.outputs.exists == 'false' && env.DEV_ENVIRONMENT == 'false' }}" >> $GITHUB_OUTPUT @@ -197,6 +209,8 @@ jobs: 📃 **Release**: `${{ steps.check.outputs.project_version }}` 📃 **Release Type**: `${{ steps.check.outputs.release_type }}` 📃 **Game Version**: `${{ steps.check.outputs.minecraft_version }}` + 📃 **Loader Type**: `${{ steps.check.outputs.loader_type }}` + 📃 **Loader Version**: `${{ steps.check.outputs.loader_version }}` 📃 **Dev Environment**: `${{ env.DEV_ENVIRONMENT }}` 📃 **Tag Exists**: `${{ steps.check.outputs.exists }}` @@ -266,11 +280,12 @@ jobs: 📃 **Name**: ${{ needs.info.outputs.project_name }} 📃 **Release**: `${{ steps.changelog.outputs.version }}` 📃 **Release Type**: `${{ needs.info.outputs.release_type }}` + 📃 **Loader**: `${{ needs.info.outputs.loader_type }}-${{ needs.info.outputs.loader_version }}` ${{ needs.info.outputs.changelog }} - build-modpack: - name: 📦 Build Modpack + build-project: + name: 📦 Build Project needs: [info] runs-on: ubuntu-latest steps: @@ -283,8 +298,22 @@ jobs: set +e VERSION=${{ needs.info.outputs.project_version }} + LOADER_VERSION=${{ needs.info.outputs.loader_version }} + LOADER_TYPE=${{ needs.info.outputs.loader_type }} + MINECRAFT_VERSION=${{ needs.info.outputs.mc_version }} + + sed -i -e "s/DEV/${VERSION}/g" pakku.json sed -i -e "s/DEV/${VERSION}/g" config/fancymenu/customization/gui_main_menu.txt + + sed -i -e "s/DEV/${VERSION}/g" .pakku/multimc-overrides/instance.cfg + sed -i -e "s/LOADER_VERSION/${LOADER_VERSION}/g" .pakku/multimc-overrides/mmc-pack.json + sed -i -e "s/LOADER_TYPE/${LOADER_TYPE}/g" .pakku/multimc-overrides/mmc-pack.json + sed -i -e "s/MINECRAFT_VERSION/${MINECRAFT_VERSION}/g" .pakku/multimc-overrides/mmc-pack.json + + sed -i -e "s/LOADER_VERSION/${LOADER_VERSION}/g" .pakku/server-overrides/forge-auto-install.txt + sed -i -e "s/LOADER_TYPE/${LOADER_TYPE}/g" .pakku/server-overrides/forge-auto-install.txt + sed -i -e "s/MINECRAFT_VERSION/${MINECRAFT_VERSION}/g" .pakku/server-overrides/forge-auto-install.txt - name: 📝 Cache pakku uses: actions/cache@v4.2.4 @@ -292,14 +321,17 @@ jobs: with: path: build/.cache key: pakku-cache-${{ hashFiles('pakku-lock.json') }} - restore-keys: pakku-cache- - name: 📦 Export modpack run: | curl https://github.com/juraj-hrivnak/pakku/releases/latest/download/pakku.jar -o pakku.jar -L -J + java -jar pakku.jar fetch java -jar pakku.jar export - - name: 📁 Rename artifact curseforge + mkdir -p .pakku/multimc-overrides/flame + mkdir -p .pakku/multimc-overrides/mods + + - name: 📁 Preparing the artifact curseforge run: | cd ./build/curseforge/ mv *.zip $(basename -s .zip *.zip)-curseforge.zip @@ -311,7 +343,7 @@ jobs: path: ./build/curseforge/${{ needs.info.outputs.project_full_name }}-curseforge.zip if-no-files-found: error - - name: 📁 Rename artifact modrinth + - name: 📁 Preparing the artifact modrinth run: | cd ./build/modrinth/ mv *.mrpack $(basename -s .mrpack *.mrpack)-modrinth.mrpack @@ -323,7 +355,28 @@ jobs: path: ./build/modrinth/${{ needs.info.outputs.project_full_name }}-modrinth.mrpack if-no-files-found: warn - - name: 📁 Rename artifact server + - name: 📁 Preparing the artifact multimc + run: | + mkdir -p .pakku/multimc-overrides/flame .pakku/multimc-overrides/mods + + mv -vf .pakku/multimc-overrides ./build/multimc + + cp -vf ./build/.cache/curseforge/manifest.json ./build/multimc/flame/manifest.json + + cp -rf ./build/.cache/curseforge/overrides ./build/multimc/.minecraft + cp -rf ./mods ./build/multimc/.minecraft/mods + + cd ./build/multimc/ + zip -r ${{ needs.info.outputs.project_full_name }}-multimc.zip icon.png mmc-pack.json instance.cfg .minecraft/ flame/ + + - name: 🚀 Upload artifact multimc + uses: actions/upload-artifact@v4.6.2 + with: + name: ${{ needs.info.outputs.project_full_name }}-multimc + path: ./build/multimc/${{ needs.info.outputs.project_full_name }}-multimc.zip + if-no-files-found: error + + - name: 📁 Preparing the artifact server run: | cd ./build/serverpack/ mv *.zip $(basename -s .zip *.zip)-serverpack.zip @@ -335,60 +388,9 @@ jobs: path: ./build/serverpack/${{ needs.info.outputs.project_full_name }}-serverpack.zip if-no-files-found: error - build-multimc: - name: 📦 Build MultiMC - needs: [info] - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v5.0.0 - - - name: 🔄 Replace strings - shell: bash - run: | - 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" config/fancymenu/customization/gui_main_menu.txt - sed -i -e "s/DEV/${VERSION}/g" .pakku/multimc-overrides/instance.cfg - - - name: 📝 Cache pakku - uses: actions/cache@v4.2.4 - id: cache - with: - path: build/.cache - key: pakku-cache-${{ hashFiles('pakku-lock.json') }} - restore-keys: pakku-cache- - - - name: 📦 Export - run: | - curl https://github.com/juraj-hrivnak/pakku/releases/latest/download/pakku.jar -o pakku.jar -L -J - java -jar pakku.jar --debug fetch - java -jar pakku.jar --debug export - - - name: 📁 Move files - run: | - ls - mkdir -p .pakku/multimc-overrides/flame - mkdir -p .pakku/multimc-overrides/mods - mv -vf ./build/.cache/curseforge/manifest.json .pakku/multimc-overrides/flame/manifest.json - mv -vf ./build/.cache/curseforge/overrides .pakku/multimc-overrides/.minecraft - mv -vf ./mods .pakku/multimc-overrides/.minecraft/mods - cd .pakku/multimc-overrides/ - - zip -r ${{ needs.info.outputs.project_full_name }}-multimc.zip icon.png mmc-pack.json instance.cfg .minecraft/ flame/ - - - name: 🚀 Upload zip multimc - uses: actions/upload-artifact@v4.6.2 - with: - name: ${{ needs.info.outputs.project_full_name }}-multimc - path: .pakku/multimc-overrides/${{ needs.info.outputs.project_full_name }}-multimc.zip - if-no-files-found: error - release-github: name: 🚀 Release to GitHub - needs: [info, build-modpack, build-multimc] + needs: [info, build-project] runs-on: ubuntu-latest if: ${{ needs.info.outputs.make_release == 'true' }} outputs: @@ -421,13 +423,6 @@ jobs: fi echo "✔️ All artifacts found" - # - name: 🚫 Сlose label "Done" - # uses: Xikaro/close-issues-based-on-label@master - # env: - # LABEL: "Status: Done" - # COMMENT: In ${{ needs.info.outputs.project_version }} - # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: 📄 Format diff id: format_diff if: ${{ needs.info.outputs.diff != '' }} @@ -458,7 +453,7 @@ jobs: release-curseforge: name: 🚀 Release to CurseForge - needs: [info, build-modpack, release-github] + needs: [info, build-project, release-github] runs-on: ubuntu-latest if: ${{ needs.info.outputs.make_release == 'true' }} outputs: @@ -508,9 +503,9 @@ jobs: release-modrinth: name: 🚀 Release to Modrinth - needs: [info, build-modpack, release-github] + needs: [info, build-project, release-github] runs-on: ubuntu-latest - if: false + if: ${{ needs.info.outputs.make_release == 'true' }} outputs: id: ${{ steps.release.outputs.id }} @@ -534,9 +529,6 @@ jobs: if [ ! -f ${{ needs.info.outputs.project_full_name }}-modrinth.mrpack ]; then echo '::error::No value found for artifact `modrinth.mrpack`.' && exit 1 fi - if [ ! -f ${{ needs.info.outputs.project_full_name }}-serverpack.zip ]; then - echo '::error::No value found for artifact `serverpack.zip`.' && exit 1 - fi echo "✔️ All artifacts found" - name: 🚀 Upload Modrinth @@ -546,17 +538,16 @@ jobs: api-token: ${{ secrets.MODRINTH_TOKEN }} project-id: ${{ vars.MODRINTH_ID }} modpack-path: ${{ needs.info.outputs.project_full_name }}-modrinth.mrpack - modpack-server-path: ${{ needs.info.outputs.project_full_name }}-serverpack.zip changelog: ${{ needs.info.outputs.changelog }} changelog-format: markdown 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: ${{ needs.info.outputs.release_type }} discord-message: name: 📱 Discord Message - needs: [info, release-curseforge, release-github] + needs: [info, release-github, release-curseforge] runs-on: ubuntu-latest steps: - name: ✂️ Truncate Changelog @@ -578,7 +569,7 @@ jobs: **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) + :curseforge_logo: [CurseForge](https://www.curseforge.com/minecraft/modpacks/terrafirmagreg-modern/files/${{ needs.release-curseforge.outputs.id }}) • :github_logo: [GitHub](${{ needs.release-github.outputs.url }}) • [Issues](https://github.com/${{ github.repository }}/issues) ```markdown ${{ steps.truncated.outputs.text }} - ...``` diff --git a/.gitignore b/.gitignore index fcc49d182..301acdcbf 100644 --- a/.gitignore +++ b/.gitignore @@ -124,3 +124,4 @@ icon.png .pakku/server-overrides/user_jvm_args.txt /tacz/tacz_default_gun +EffekseerNativeForJava.dll diff --git a/.pakku/multimc-overrides/mmc-pack.json b/.pakku/multimc-overrides/mmc-pack.json index 3919fa1ea..c1fe8e863 100644 --- a/.pakku/multimc-overrides/mmc-pack.json +++ b/.pakku/multimc-overrides/mmc-pack.json @@ -16,23 +16,23 @@ "uid": "org.lwjgl3" } ], - "cachedVersion": "1.20.1", + "cachedVersion": "MINECRAFT_VERSION", "important": true, "uid": "net.minecraft", - "version": "1.20.1" + "version": "MINECRAFT_VERSION" }, { - "cachedName": "Forge", + "cachedName": "LOADER_TYPE", "cachedRequires": [ { - "equals": "1.20.1", + "equals": "MINECRAFT_VERSION", "uid": "net.minecraft" } ], - "cachedVersion": "47.2.6", + "cachedVersion": "LOADER_VERSION", "uid": "net.minecraftforge", - "version": "47.2.6" + "version": "LOADER_VERSION" } ], "formatVersion": 1 -} +} \ No newline at end of file diff --git a/.pakku/server-overrides/forge-auto-install.txt b/.pakku/server-overrides/forge-auto-install.txt index 04e2e0a65..b7cbb56c3 100644 --- a/.pakku/server-overrides/forge-auto-install.txt +++ b/.pakku/server-overrides/forge-auto-install.txt @@ -2,12 +2,12 @@ # Specify your desired Minecraft-Version. # Possible options are [Version like: "1.20.4" or "latest"] -minecraftVersion=1.20.1 +minecraftVersion=MINECRAFT_VERSION # Specify your desired LoaderType. # Possible options are ["Forge" or "NeoForge"] -loaderType=Forge +loaderType=LOADER_TYPE # Specify your desired Loader-Version. # Possible options are [Version like: "20.4.164-beta" or "latest" or "recommended"] -loaderVersion=47.4.2 \ No newline at end of file +loaderVersion=LOADER_VERSION \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index ef2214157..c1c788e86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,46 @@ ### Changes ### Bug fixes +## [0.10.11] - 08-09-2025 +### Mods +- Reverted the change from Embeddium to Xenon, because it was causing more issues than it solved +- Added Sacks 'n' Such which has several new early game bags -- such as one that automatically picks up ore and can hold 512 per slot -- as well as some other things such as hiking boots and horseshoes +### Changes +- Fuelling blaze burners with liquids is now done directly instead of through straws (break and replace your blaze burners to update) @Ghoulcel +- Blaze burner liquid fuelling has been fully made consistent with GregTech power values (#1694) @Ghoulcel +- Create Factory Logistics Jars now hold 8000mB instead of 1000mB (#1707) @Ghoulcel +- Sewing Tables now use a knife instead of shears @BlueBoat29 +- Create Logistics Jars now hold 8000 mB each instead of just 1000 mB (#1707) @Ghoulcel +- Added a way to keep your space suit with you on death, so you can more safely set your spawn on other planets (#1710) @BlueBoat29 +- Added Flax as a cold-weather alternative to jute and a plant-based option for light colored cloth @BlueBoat29 +- Sheet metal blocks are now made in a stonecutter and their yield increased (#1746) @SpicyNoodle5 +- Added a small amount of silver to the Bismith (Surface) vein @Pyritie +- Added steel machine casings as an alternative to steel frames in the electric greenhouse @Redeix +- Added the ability for foods to affect the player's temperature @BlueBoat29 +- EMI Batched rendering has been disabled by default. @TomPlop +- Automatic backups now happen hourly instead of daily (#1705) @Pyritie @Xikaro +- Advanced Peripherals' Redstone Integrator has been deprecated in favour of ComputerCraft's Redstone Relay (#1737) @Pyritie +- Speed up recipes for turning blocks into sand (#1720) @TomPlop +- Added a recipe for turning bone meal into white dye (#1757) @Pyritie +### Bug fixes +- Fixed tongs getting stuck in ovens, and now you can use them the same way you'd previously use a Peel @Pyritie +- Allowed powders, gears, plates, double plates, springs, and small springs to be heated (#1727) @Redeix +- Fixed rapeseed wild block model @BlueBoat29 +- Fixed butchery knife not giving additional meat when used to kill an animal @Pyritie +- Prospector picks can be placed on tool racks and interact with most inventory's again. @Redeix +- Fixed some of the more obvious dupes while we wait for a GregTech to do them properly (#1576) @Pyritie +- Fixed not being able to use buzzsaws (and chainsaws) to cut things into lumber (#1685) @Pyritie +- Fixed recipe conflict with dimethyl carbonate, acetic acid, and formaldehyde (#1731) @Pyritie +- Fixed missing item in quartz sand centrifuging (#1717) @Pyritie +- Popped chorus fruit is now edible (#1722) @programmer3481 +- Fixed missing sheet pile texture for cobalt, cobalt brass, aluminium silicate, invar, lead, red alloy, and tin alloy (#1713) @Pyritie +- Fixed missing collapse tags for smooth stone (#1732) @Pyritie +### Translation updates +- Chinese (simplified) @jmecn & @CN059 +- Russian @Dl, @Kostabl, @Turikar42, & @But3r +- Ukranian @MetEnBouldry +- Brazilian Portuguese @gifpxto + ## [0.10.10] - 23-08-2025 ### Major changes - Complete rework of prospector's picks. (#1594) @Redeix diff --git a/config/corpsecurioscompat-common.toml b/config/corpsecurioscompat-common.toml index e9aee7186..fd09d9a82 100644 --- a/config/corpsecurioscompat-common.toml +++ b/config/corpsecurioscompat-common.toml @@ -3,4 +3,6 @@ [general] #Items that should not be transferred to curios slots (format: 'modid:item') blacklisted_items = [] + #Whether cursed items should be transferred back to curios slots (true = transfer cursed items, false = don't transfer) + transfer_cursed_items = false diff --git a/config/emi.css b/config/emi.css index 8aafd66ad..8cece7d20 100644 --- a/config/emi.css +++ b/config/emi.css @@ -82,7 +82,7 @@ * Whether to use the batched render system. Batching is faster, but may have * incompatibilities with shaders or other mods. */ - use-batched-renderer: true; + use-batched-renderer: false; /** * Whether to have the search bar in the center of the screen, instead of to the diff --git a/config/everycomp-common.toml b/config/everycomp-common.toml index 448eaa2a1..073eb95ed 100644 --- a/config/everycomp-common.toml +++ b/config/everycomp-common.toml @@ -2,8 +2,6 @@ [general] #Puts all the added items into a new Every Compat tab instead of their own mod tabs. Be warned that if disabled it could cause some issue with some mods that have custom tabs creative_tab = true - #Makes dynamic assets that are generated depend on loaded resource packs. Turn off to make them just use vanilla assets - assets_depend_on_loaded_packs = true #Creates a debug folder inside your instance directory where all the dynamically generated resources will be saved save_debug_resources = false #Sends a packet to verify all dependencies mod versions are the same on connect. DIsable if it causes issues diff --git a/config/everycomp-hazardous.toml b/config/everycomp-hazardous.toml index 3764b8de9..55a35bf79 100644 --- a/config/everycomp-hazardous.toml +++ b/config/everycomp-hazardous.toml @@ -19,7 +19,7 @@ #Exclude WoodType from all of Modules # EXAMPLE: blacklist = [ # "forestry:.*fireproof.*", COMMENT: .* is an RegEx, it exclude all of WoodType containing "fireproof" from Forestry - # "biomesoplenty:.*", COMMENT: .* is an RegEx, it exclude all of WoodType from Wood Mod for any Module + # "biomesoplenty:.*", COMMENT: .* is an RegEx, it exclude all of WoodType from Wood Mod for any Module # "biomesoplenty:redwood" COMMENT: exclude redwood from Wood Mod for any module # ] # @@ -34,9 +34,9 @@ #Exclude EntrySet from the module for All of WoodType or LeavesType # This is only applied to Wood-Good. # EXAMPLE: blacklist = [ - # "chipped:checkered_trapdoor", COMMENT: chipped:checkered_oak_trapdoor without "oak" - # "variantvanillablocks:chest", COMMENT: variantvanillablocks:oak_chest without "oak" - # "chipped:.*" COMMENT: .* is an regex which will exclude all of EntrySets from one Module - Wood-Good ONLY + # "chipped:checkered_trapdoor", COMMENT: chipped:checkered_oak_trapdoor without "oak" + # "variantvanillablocks:chest", COMMENT: variantvanillablocks:oak_chest without "oak" + # "chipped:.*" COMMENT: .* is an regex which will exclude all of EntrySets from one Module - Wood-Good ONLY # ] # blacklist = [] diff --git a/config/fancymenu/options.txt b/config/fancymenu/options.txt index 317a601e3..00ba655f9 100644 --- a/config/fancymenu/options.txt +++ b/config/fancymenu/options.txt @@ -14,7 +14,6 @@ B:advanced_customization_mode = 'false'; ##[loading] -B:preload_animations = 'true'; S:preload_resources = '[cubic_panorama]beneath%!source_end!%[slideshow]new_loading_screen%!source_end!%'; S:custom_game_intro_skip_text = ''; B:allow_game_intro_skip = 'true'; @@ -85,4 +84,10 @@ B:show_welcome_screen = 'false'; ##[keyframe_editor] -B:arrow_keys_move_preview = 'false'; \ No newline at end of file +B:arrow_keys_move_preview = 'false'; + + +##[advanced] + +L:placeholder_caching_duration_ms = '30'; +L:requirement_caching_duration_ms = '0'; \ No newline at end of file diff --git a/config/ftbbackups2.json b/config/ftbbackups2.json index 58276e688..fb96a0bd6 100644 --- a/config/ftbbackups2.json +++ b/config/ftbbackups2.json @@ -27,7 +27,7 @@ More info here (http://www.cronmaker.com) */ - "backup_cron": "0 0 1 * * ?", + "backup_cron": "0 0 0/1 1/1 * ? *", // Time between manual backups using the command "manual_backups_time": 0, // Only run a backup if a player has been online since the last backup diff --git a/config/ftbquests/quests/chapters/applied_energistics_2.snbt b/config/ftbquests/quests/chapters/applied_energistics_2.snbt index f7a7c7e05..9b928e656 100644 --- a/config/ftbquests/quests/chapters/applied_energistics_2.snbt +++ b/config/ftbquests/quests/chapters/applied_energistics_2.snbt @@ -248,9 +248,10 @@ } { dependencies: ["3C3C21482E31267B"] - description: ["To get started, you’ll need to power your &bME Network&r. These are the two &bAE2&r blocks that can directly accept &bEU&r energy.\\n\\nWe strongly recommend crafting a &bME Controller&r, as &bchannels&r are enabled in TerraFirmaGreg, and the &bME Controller&r is the best way to manage multiple channels efficiently.\\n\\nThis is also a great time to use the in-game guide (press &aU&r on a &bME Controller&r) or watch some videos about &bAE2&r on version 1.20.1 to learn more!"] + description: ["{quests.ae2.ae_controller.desc}"] icon: "ae2:controller" id: "1AAD526450E5A732" + subtitle: "{quests.ae2.ae_controller.subtitle}" tasks: [ { id: "2D32E17277B9A4C5" @@ -313,8 +314,9 @@ } { dependencies: ["3C3C21482E31267B"] - description: ["You will need to store your disks, and thanks to the &bMEGA&r addon, you now have an extra option.\\n\\nYou should start with a &bME Drive&r. It can store up to &e10&r disks and consumes &e4 EU/t&r. This will be your main storage solution.\\n\\nThe other option is the &bME Cell Dock&r. It only stores &e1&r disk but consumes just &e1 EU/t&r, and it can be placed directly on a cable like a cover. This makes it quite useful for &aSubnets&r."] + description: ["{quests.ae2.drive.desc}"] id: "6E4E5753CCEB3F95" + subtitle: "{quests.ae2.drive.subtitle}" tasks: [ { id: "19403D95C159B55A" @@ -337,9 +339,10 @@ "1AAD526450E5A732" "4F719A457E0C0AFB" ] - description: ["Your basic cables to connect your &bAE2&r infrastructure.\\n\\nRemember that regular cables carry only &e8 Channels&r, while &6Dense Cables&r can carry up to &a32 Channels&r.\\n\\nGood news: in &2TFG&r, you can directly craft the &9Smart Cables&r! They are very helpful as they show a &evisual indicator&r for the number of used channels."] + description: ["{quests.ae2.cables.desc}"] icon: "ae2:fluix_smart_cable" id: "0DDA9B67B59A9481" + subtitle: "{quests.ae2.cables.subtitle}" tasks: [ { id: "5A80BA33AFB71A00" @@ -364,8 +367,9 @@ } { dependencies: ["0DDA9B67B59A9481"] - description: ["These terminals are mandatory to access your ME Network and to set up your auto-crafting system."] + description: ["{quests.ae2.terminals.desc}"] id: "4B6466FD94886C55" + subtitle: "{quests.ae2.terminals.subtitle}" tasks: [ { id: "5ECAC7A491A1CC16" @@ -388,8 +392,9 @@ } { dependencies: ["0DDA9B67B59A9481"] - description: ["The &dCrafting Unit&r works the same way as your &bME Cell Housing&r.\\n\\nUse a &6Packer&r to make it functional — by itself, it serves no purpose, though you can use it to complete multi-blocks.\\n\\nIt’s your mandatory structure to run your &bAE2&r auto-crafting.\\n\\nAs usual, use the in-game guide from &bAE2&r to learn more about the &dCrafting CPU&r."] + description: ["{quests.ae2.crafting_unit.desc}"] id: "56B39375B0C67781" + subtitle: "{quests.ae2.crafting_unit.subtitle}" tasks: [{ id: "194AB0197D7500B9" item: "ae2:crafting_unit" @@ -400,7 +405,7 @@ } { dependencies: ["56B39375B0C67781"] - description: ["Simply use the in-game guide — it will explain everything far better than we ever could in a quest.\\n\\nTake your time to read it, it’s a great resource!"] + description: ["{quests.ae2.crafting_accelerator.desc}"] id: "24C621C3BC62B4E8" tasks: [{ id: "51DDE6A3596F60DB" @@ -412,7 +417,7 @@ } { dependencies: ["56B39375B0C67781"] - description: ["Simply use the in-game guide — it will explain everything far better than we ever could in a quest.\\n\\nTake your time to read it, it’s a great resource!"] + description: ["{quests.ae2.crafting_storage.desc}"] id: "4BFB7D164BC9D15B" tasks: [{ id: "2E6E7DA7B95CF411" @@ -423,6 +428,7 @@ "ftbfiltersystem:filter": "or(item(ae2:1k_crafting_storage)item(ae2:4k_crafting_storage)item(ae2:16k_crafting_storage)item(ae2:64k_crafting_storage)item(ae2:256k_crafting_storage))" } } + title: "{quests.ae2.crafting_storage.task}" type: "item" }] x: -2.5d @@ -430,9 +436,10 @@ } { dependencies: ["4B6466FD94886C55"] - description: ["The &9Pattern Provider&r is a modern &bAE2&r block.\\n\\nIt can both push items from patterns and also receive items back into the network.\\n\\nAs always, check the in-game guide using &eG&r to learn more about it."] + description: ["{quests.ae2.pattern_provider.desc}"] icon: "ae2:pattern_provider" id: "378E2294EFD85C65" + subtitle: "{quests.ae2.pattern_provider.subtitle}" tasks: [{ id: "4288288133E5FED3" item: { @@ -442,6 +449,7 @@ "ftbfiltersystem:filter": "or(item(ae2:pattern_provider)item(ae2:cable_pattern_provider))" } } + title: "{quests.ae2.pattern_provider.task}" type: "item" }] x: 0.5d @@ -449,8 +457,9 @@ } { dependencies: ["4B6466FD94886C55"] - description: ["Simply use the in-game guide — it will explain everything far better than we ever could in a quest.\\n\\nTake your time to read it, it’s a great resource!"] + description: ["{quests.ae2.pattern.desc}"] id: "386C54268DA9F2BF" + subtitle: "{quests.ae2.pattern.subtitle}" tasks: [{ id: "7E43EFA5DBA2F0D2" item: "ae2:blank_pattern" @@ -490,8 +499,9 @@ } { dependencies: ["0DDA9B67B59A9481"] - description: ["The &dME Interface&r is one of your bread and butter tools to get items or fluids out of, or inside, your network.\\n\\nAs always, check the in-game guide using &eG&r to learn more about it."] + description: ["{quests.ae2.interface.desc}"] id: "25007C5E43D28DB2" + subtitle: "{quests.ae2.interface.subtitle}" tasks: [{ id: "0DEB4627504A8944" item: "ae2:interface" @@ -502,10 +512,7 @@ } { dependencies: ["25007C5E43D28DB2"] - description: [ - "The &dME Export Bus&r is a strong tool to get items or fluids out of your &dME Network&r.\\n" - "You should especially look at the &eExtendedAE&r ones, as they can be of great help for some automation.\\n\\n&cImportant notice&r: Remember that using too many exporters could cause &4TPS&r issues.\\n\\nBut don't worry—reaching &otoo many&r would require &6dozens&r of them." - ] + description: ["{quests.ae2.export_bus.desc}"] id: "5C60E691DD073782" tasks: [{ id: "36BB5964C98CF157" @@ -516,6 +523,7 @@ "ftbfiltersystem:filter": "or(item(ae2:export_bus)item(expatternprovider:threshold_export_bus)item(expatternprovider:tag_export_bus)item(expatternprovider:mod_export_bus)item(expatternprovider:precise_export_bus))" } } + title: "{quests.ae2.export_bus.task}" type: "item" }] x: 3.5d @@ -523,7 +531,7 @@ } { dependencies: ["6CF08AFB924905F0"] - description: ["This entire branch becomes fully unlockable once you reach &1IV&r."] + description: ["{quests.ae2.iv.desc}"] icon_scale: 2.0d id: "0F1104DEEB22EF86" size: 1.0d @@ -532,12 +540,13 @@ item: "tfg:iv_universal_circuit" type: "item" }] + title: "{quests.ae2.iv.title}" x: 3.0d y: 0.0d } { dependencies: ["0F1104DEEB22EF86"] - description: ["To get this &eNew Inscriber Press&r, you will need to &6invest a bit&r.\\n\\nFirst, you must &1upgrade&r your &eImplosion Compressor&r with &1two IV Energy Hatches&r.\\n\\nThen, get yourself a &1new IV Laser Engraver&r if you don't already have one.\\n\\nAnd finally, prepare a &clot of Industrial TNT&r from &7GregTech&r — it’s the &conly one that works&r for this process.\\n\\nPlan carefully, as this step is quite demanding!"] + description: ["{quests.ae2.accumulation_press.desc}"] id: "2F27252748DA8DCA" tasks: [{ id: "4D79128456585A40" @@ -549,7 +558,7 @@ } { dependencies: ["2F27252748DA8DCA"] - description: ["The &eAccumulation Processor&r will require a &7large amount of Silicon&r for each craft.\\n\\nWe hope you already have a &6dedicated EBF&r producing Silicon, or at least a &bstrong infrastructure&r to manufacture it quickly.\\n\\nPrepare accordingly, as you’ll need plenty of it!"] + description: ["{quests.ae2.accumulation_processor.desc}"] id: "5B4AD301357488D6" shape: "octagon" size: 1.5d @@ -563,7 +572,7 @@ } { dependencies: ["5B4AD301357488D6"] - description: ["These are a &eneat upgrade&r for your &bCrafting CPU&r.\\n\\nThey will help to &7speed up&r your auto-crafting and allow you to handle &6larger jobs&r with ease."] + description: ["{quests.ae2.mega_crafting.desc}"] id: "1EB60600FDF376F8" tasks: [ { @@ -582,7 +591,7 @@ } { dependencies: ["5B4AD301357488D6"] - description: ["The &eExtended Pattern Terminal&r is a &awonderful upgrade&r to manage all your patterns in an &aeasier&r way.\\n\\nYou get &6more search options&r for your patterns, and with how many you should be getting now, it will be a &dhuge QoL&r improvement.\\n\\nMake the upgrade version to simply shift right click it without bothering with removing it."] + description: ["{quests.ae2.extended_pattern_access.desc}"] icon: "expatternprovider:ex_pattern_access_part" id: "7676B598362927CA" tasks: [{ @@ -594,6 +603,7 @@ "ftbfiltersystem:filter": "or(item(expatternprovider:ex_pattern_access_part)item(expatternprovider:pattern_terminal_upgrade))" } } + title: "{quests.ae2.extended_pattern_access.task}" type: "item" }] x: 7.0d @@ -601,7 +611,7 @@ } { dependencies: ["5B4AD301357488D6"] - description: ["Here they are, your bigger &bInterface&r with an upgrade so you don't even need to disconnect them to upgrade.\\n\\nYou will be quite happy with them."] + description: ["{quests.ae2.extended_interface.desc}"] icon: "expatternprovider:ex_interface" id: "1BD1BB1FFF9A70A9" tasks: [{ @@ -613,6 +623,7 @@ "ftbfiltersystem:filter": "or(item(expatternprovider:ex_interface)item(expatternprovider:interface_upgrade))" } } + title: "{quests.ae2.extended_interface.task}" type: "item" }] x: 5.0d @@ -620,7 +631,7 @@ } { dependencies: ["6CF08AFB924905F0"] - description: ["This branch becomes unlockable once you reach &dLuV&r."] + description: ["{quests.ae2.luv.desc}"] icon_scale: 2.0d id: "1F3621FABA32DC6B" size: 1.0d @@ -629,12 +640,13 @@ item: "tfg:luv_universal_circuit" type: "item" }] + title: "{quests.ae2.luv.title}" x: 0.5d y: 2.5d } { dependencies: ["25007C5E43D28DB2"] - description: ["The &dME Import Bus&r is a strong tool to get items or fluids inside of your &dME Network&r.\\n\\n&cImportant notice&r: Remember that using too many exporters could cause &4TPS&r issues.\\n\\nBut don't worry—reaching &otoo many&r would require &6dozens&r of them."] + description: ["{quests.ae2.import_bus.desc}"] id: "15C437C4C5175A2A" tasks: [{ id: "75C8C7F782E37AEA" @@ -646,7 +658,7 @@ } { dependencies: ["25007C5E43D28DB2"] - description: ["&bThe ME Storage Bus&r is an incredibly strong tool from &aAE2&r.\\n\\nIt can be used to store items and fluids directly in physical storage. Using the &epriority&r feature will be quite useful.\\n\\nAlso, &aExtendedAE&r comes with a lot of &bStorage Bus&r variants that we highly recommend you to check.\\nIt’s a great way to manage your &6hot ingots&r from your &cEBF&r or later on from your &cAlloy Blast Smelter&r.\\n\\n"] + description: ["{quests.ae2.storage_bus.desc}"] id: "281CB6A630F3B702" tasks: [ { @@ -664,6 +676,7 @@ } } optional_task: true + title: "{quests.ae2.storage_bus.task}" type: "item" } ] @@ -672,39 +685,20 @@ } { dependencies: ["25007C5E43D28DB2"] - description: ["To be used in conjunction with your &bME Interface&r, just slap a cover on your machine.\\n\\nRemember to activate the &eAccept Input&r on the &6Output&r face in your &aGregtech&r machine's GUI.\\n\\nUsing &9filters&r there could be quite useful.\\n\\nAlso, the &dRobot Arm&r will be necessary on &eKeep Exact&r mode with a filter to avoid overfilling the item input.\\n\\nThe &3fluid input&r doesn’t have this issue, as it will fill only one slot automatically."] - icon: "gtceu:lv_robot_arm" + description: ["{quests.ae2.interface_automation.desc}"] + icon: "gtceu:mv_robot_arm" id: "7D9A1A05B6CA486F" - tasks: [ - { - id: "6F0FED3BC5B3B5F0" - type: "checkmark" - } - { - id: "5410E9A9EBF7E61A" - item: "gtceu:lv_conveyor_module" - optional_task: true - type: "item" - } - { - id: "29EDB24D2B1EE0C9" - item: "gtceu:lv_robot_arm" - optional_task: true - type: "item" - } - { - id: "522AAC5C052F1C17" - item: "gtceu:lv_electric_pump" - optional_task: true - type: "item" - } - ] + tasks: [{ + id: "6F0FED3BC5B3B5F0" + type: "checkmark" + }] + title: "{quests.ae2.interface_automation.title}" x: 5.0d y: -6.0d } { dependencies: ["6CF08AFB924905F0"] - description: ["This entire branch is fully unlockable in &6HV&r!"] + description: ["{quests.ae2.hv.desc}"] icon_scale: 2.0d id: "3C3C21482E31267B" size: 1.0d @@ -713,12 +707,13 @@ item: "tfg:hv_universal_circuit" type: "item" }] + title: "{quests.ae2.hv.title}" x: 0.5d y: -2.5d } { dependencies: ["3C3C21482E31267B"] - description: ["The &bStorage Component&r will be a core part of your progression through &aAE2&r and they will be quite expensive.\\n\\nEven though you will need them to make your &bStorage Cells&r.\\n\\nThe &e1k ME Storage Component&r doesn't have a moon recipe but all the others will have one, so once again think about this sweet &dMoon base&r."] + description: ["{quests.ae2.cell_component_1k.desc}"] id: "0D2403243B52F7AC" tasks: [{ id: "5BF4753E8A51B19D" @@ -730,7 +725,7 @@ } { dependencies: ["0D2403243B52F7AC"] - description: ["As you can notice the &e4k Storage Component&r has a tremendously cheaper recipe on the &dMoon&r.\\n\\nYou will also always need one lower tier circuit from the Moon recipes."] + description: ["{quests.ae2.cell_component_4k.desc}"] id: "344D269116B1ADE1" tasks: [{ id: "73D9BCEF519851E1" @@ -742,7 +737,7 @@ } { dependencies: ["344D269116B1ADE1"] - description: ["As you can notice, the &e16k Storage Component&r has a &amuch cheaper recipe&r on the &dMoon&r.\\n\\nHowever, keep in mind that every Moon recipe will always require &bone lower tier Storage Component&r from the normal recipes.\\n\\nOnce again, it’s another reason to consider setting up your &dMoon Base&r!"] + description: ["{quests.ae2.cell_component_16k.desc}"] id: "5187909B66DF2D43" tasks: [{ id: "10474E98DF607084" @@ -754,7 +749,7 @@ } { dependencies: ["5187909B66DF2D43"] - description: ["Now that you have &1IV&r Circuits, you can make this enormous &5Storage Component&r. Having moon recipes is beginning to make quite the huge difference in cost."] + description: ["{quests.ae2.cell_component_64k.desc}"] id: "7F17A0505F55307C" tasks: [{ id: "2524EB6BDAC323E8" @@ -766,7 +761,7 @@ } { dependencies: ["7F17A0505F55307C"] - description: ["The &c256k ME Storage Component&r is the last one you can make with an Assembler and it's so big you may be fine with them to end the pack but well why stop here if you can get bigger ones."] + description: ["{quests.ae2.cell_component_256k.desc}"] id: "550683A6705A9C15" tasks: [{ id: "40B66DB4F6CC170E" @@ -778,7 +773,7 @@ } { dependencies: ["3C3C21482E31267B"] - description: ["The &bME Cell Housing&r exists in two versions: one for &aItems&r and one for &9Fluids&r.\\n\\nYou can recycle them using a &ePacker&r or simply by &eShift + Right-Click&r while holding the storage cell in your hand."] + description: ["{quests.ae2.cell_housing.desc}"] id: "4F719A457E0C0AFB" tasks: [ { @@ -800,11 +795,7 @@ "1F3621FABA32DC6B" "550683A6705A9C15" ] - description: [ - "The &3MEGA Storage Component&r will need an &bAssembly Line&r, notice that the Earth version must be crafted within a &7Cleanroom&r or you can use a &7Cleaning Maintenance Hatch&r if you have access to one." - "" - "No need for that on the Moon though." - ] + description: ["{quests.ae2.cell_component_1m.desc}"] id: "36241E7089A4E6E5" tasks: [{ id: "0FDED81B4B719A5E" @@ -816,7 +807,7 @@ } { dependencies: ["36241E7089A4E6E5"] - description: ["Simply bigger and more expensive."] + description: ["{quests.ae2.cell_component_4m.desc}"] id: "4AA0D8BEA540E0B9" tasks: [{ id: "05F57484C16B7F46" @@ -828,7 +819,7 @@ } { dependencies: ["4AA0D8BEA540E0B9"] - description: ["This one can only be made on the &cMoon&r and nowhere else. It will also require a &7Cleanroom&r environment, so if you don’t want to bother with a Cleanroom on the &cMoon&r, you should make the &7Cleaning Maintenance Hatch&r.\\n\\nIt will also need some research. Refer to the &cZPM&r Chapter if you don’t know what we are speaking about."] + description: ["{quests.ae2.cell_component_16m.desc}"] id: "61D498F27A4194D3" tasks: [{ id: "73C08CBD3CF57D1F" @@ -840,7 +831,7 @@ } { dependencies: ["61D498F27A4194D3"] - description: ["The &c64M MEGA Storage Component&r is the biggest one you can make in &8TerraFirmaGreg&r. Honestly, we believe you won’t need it but it’s there for completionists."] + description: ["{quests.ae2.cell_component_64m.desc}"] id: "426B327852C46764" tasks: [{ id: "230D2F68A39EE752" @@ -852,7 +843,7 @@ } { dependencies: ["1F3621FABA32DC6B"] - description: ["The &dME Oversize Interface&r is a &dME Extended Interface&r but each slot can hold 16x more items or fluids. If you have processes that need huge quantities, this could be your go-to."] + description: ["{quests.ae2.oversize_interface.desc}"] id: "68CCEBFC927C9956" tasks: [{ id: "0A9E49725E393A12" @@ -864,7 +855,7 @@ } { dependencies: ["1F3621FABA32DC6B"] - description: ["The &6Assembler Matrix&r is basically a customizable multiblock Molecular Assembler. The requirements for this quest should let you build one that we deem quite strong enough. You could add more layers of &bPattern Core&r or &aCraft Core&r if you want so.\\n\\nAs usual, check the in-game guide for detailed informations."] + description: ["{quests.ae2.assembler_matrix.desc}"] id: "6820CDE4B47C5E6A" tasks: [ { @@ -909,7 +900,7 @@ } { dependencies: ["4B6466FD94886C55"] - description: ["The &9Molecular Assembler&r is basically your auto-crafting table.\\n\\nYou can use it for a precise craft or combine it with a &9Pattern Provider&r.\\n\\nAs always, check the in-game guide using &eG&r to learn more about it."] + description: ["{quests.ae2.molecular_assembler.desc}"] id: "24A3199B77ED28D1" tasks: [{ id: "64CDEEF086CAFF4B" @@ -921,7 +912,7 @@ } { dependencies: ["5B4AD301357488D6"] - description: ["Here they are, your bigger &bPattern Providers&r with an upgrade so you don't even need to disconnect them to upgrade.\\n\\nYou will be quite happy with them."] + description: ["{quests.ae2.extended_patprov.desc}"] icon: "expatternprovider:ex_pattern_provider" id: "59D42D755D58D18F" tasks: [{ @@ -933,6 +924,7 @@ "ftbfiltersystem:filter": "or(item(expatternprovider:ex_pattern_provider)item(expatternprovider:pattern_provider_upgrade))" } } + title: "{quests.ae2.extended_patprov.task}" type: "item" }] x: 7.0d @@ -940,7 +932,7 @@ } { dependencies: ["5B4AD301357488D6"] - description: ["The &dME Extended Drive&r will &6double&r the amount of &eStorage Cells&r you can have within it.\\n\\nYou can also craft the &eupgrade&r to simply &aRight Click&r it without bothering removing it, it won't cost you more."] + description: ["{quests.ae2.extended_drive.desc}"] icon: "expatternprovider:ex_drive" id: "169A9816CB1C865E" tasks: [{ @@ -952,6 +944,7 @@ "ftbfiltersystem:filter": "or(item(expatternprovider:ex_drive)item(expatternprovider:drive_upgrade))" } } + title: "{quests.ae2.extended_drive.task}" type: "item" }] x: 6.0d @@ -959,7 +952,7 @@ } { dependencies: ["5B4AD301357488D6"] - description: ["They are 8 times faster, enjoy."] + description: ["{quests.ae2.extended_import_export.desc}"] id: "281E32721BDC662A" tasks: [{ id: "5A404361DAA37570" @@ -970,6 +963,7 @@ "ftbfiltersystem:filter": "or(item(expatternprovider:ex_export_bus_part)item(expatternprovider:ex_import_bus_part))" } } + title: "{quests.ae2.extended_import_export.task}" type: "item" }] x: 6.0d @@ -977,7 +971,7 @@ } { dependencies: ["5B4AD301357488D6"] - description: ["This &eupgrade&r will let you &atransfer faster&r while also offering &6more upgrade slots&r if needed."] + description: ["{quests.ae2.extended_io_port.desc}"] id: "63CABFAA2A3DBA73" tasks: [{ id: "6CB2D20DEF2D590F" @@ -989,7 +983,7 @@ } { dependencies: ["5B4AD301357488D6"] - description: ["The &aME Wireless Connector&r is your go-to if you don't want to extend massive lines of &bME Cables&r.\\n\\nDon't forget to check the in-game guide with &eG&r to learn about how they work and their limitations.\\n\\nThey won't work for &ccross-dimensional&r connections, that would be too easy, wouldn't it?"] + description: ["{quests.ae2.wireless.desc}"] id: "30043A96FB868600" tasks: [ { @@ -1008,7 +1002,7 @@ } { dependencies: ["5B4AD301357488D6"] - description: ["The upgrade of the &bMolecular Assembler&r.\\n\\nIt runs &68 crafting jobs&r at the same time and goes &62 times faster&r.\\n\\nThough you can only use it with a &bPattern Provider&r, it will be a &agreat upgrade&r before you get the &dMatrix Multiblock&r a bit later on."] + description: ["{quests.ae2.extended_molecular_assembler.desc}"] id: "24F024801B32301C" tasks: [{ id: "70CBB0F5F73D5ECA" @@ -1020,7 +1014,7 @@ } { dependencies: ["1F3621FABA32DC6B"] - description: ["These &bCell Housings&r work the same way as the basic ones but you will need these to make the biggest disk from &dMEGA&r."] + description: ["{quests.ae2.mega_cell_housing.desc}"] id: "0811468D614DE860" tasks: [ { @@ -1039,7 +1033,7 @@ } { dependencies: ["0DDA9B67B59A9481"] - description: ["With channels being enabled on &aTerraFirmaGreg&r you may want to learn about &dP2P&r.\\n\\nAs usual, we advise you to use the in-game guide for more detailed information.\\n\\nAnother advice, make the &bAdvanced Memory Card&r from &dBetter P2P&r as soon as possible. It will be a big help when using &dME P2P&r.\\n\\nYou can even place your &dME P2P Input&r on your ME Network ahead of time and connect them to an output whenever you need."] + description: ["{quests.ae2.p2p.desc}"] id: "275963DA1B499986" tasks: [ { @@ -1057,6 +1051,7 @@ } } optional_task: true + title: "{quests.ae2.p2p.task}" type: "item" } { @@ -1078,15 +1073,17 @@ selectedIndex: { } } } + optional_task: true type: "item" } ] + title: "{quests.ae2.p2p.title}" x: 2.0d y: -7.5d } { dependencies: ["4F719A457E0C0AFB"] - description: ["The &bCell Workbench&r is your way to customize your storage cells.\\n\\nYou can set them with &aWhitelist&r/&cBlacklist&r filters or add upgrades like the &4Overflow Destruction Card&r — but be cautious with this one!"] + description: ["{quests.ae2.cell_workbench.desc}"] id: "1D558BCDB40C80A6" tasks: [ { @@ -1111,7 +1108,7 @@ } { dependencies: ["5B4AD301357488D6"] - description: ["A &ebigger battery&r for a &abigger network&r, not much else but &6quite useful&r."] + description: ["{quests.ae2.mega_battery.desc}"] id: "4DC682D5751B1179" tasks: [{ id: "75FCBFDDCA91159E" @@ -1127,7 +1124,11 @@ } { dependencies: ["5B4AD301357488D6"] - description: ["The &aME Requester&r may be one of your &6strongest tools&r if you want to have a base working mostly on &eauto-crafting&r and not passive.\\n\\nYou can set it up to &aauto-craft batches&r of an item when under a specific level.\\n\\nIf you are using a lot of &dCrafting Upgrades&r, you would be better to use this machine as it will be quite less &cTPS intensive&r.\\n\\nAlso notice that you can set your &bCrafting CPU&r to be &6dedicated to on-demand crafting&r or &aused through the Requester&r.\\n\\nGo have a look by opening their &eGUI&r.\\n\\nDon't forget to make a &bTerminal&r as it will ease your management if you have many &aME Requesters&r."] + description: [ + "{quests.ae2.requester.desc.1}" + "{@pagebreak}" + "{quests.ae2.requester.desc.2}" + ] icon: "merequester:requester" id: "40BA1FB9E1B550D0" tasks: [ @@ -1139,6 +1140,7 @@ { id: "61FCB18C45D6A10E" item: "merequester:requester_terminal" + optional_task: true type: "item" } ] @@ -1147,7 +1149,7 @@ } { dependencies: ["6E4E5753CCEB3F95"] - description: ["&bEmitters&r and &bToggle Bus&r are your way to manage &cRedstone&r signals in &bAE2&r.\\n\\nCheck the in-game guide for more detailed information."] + description: ["{quests.ae2.emitters.desc}"] id: "52FA85C11CFD07F3" tasks: [ { @@ -1158,21 +1160,25 @@ { id: "4A34832473D16DED" item: "ae2:energy_level_emitter" + optional_task: true type: "item" } { id: "7B7AA3570B46D90A" item: "expatternprovider:threshold_level_emitter" + optional_task: true type: "item" } { id: "4BA3454532E5E184" item: "ae2:toggle_bus" + optional_task: true type: "item" } { id: "23DDBFFE02DA6F1A" item: "ae2:inverted_toggle_bus" + optional_task: true type: "item" } ] @@ -1181,7 +1187,7 @@ } { dependencies: ["0DDA9B67B59A9481"] - description: ["These are the batteries for your ME Network. You may not need them at the beginning, but remember they exist — your energy cost could rise quickly, and losing your ME Network can be a really dangerous situation."] + description: ["{quests.ae2.batteries.desc}"] id: "5C26DF08671274FE" tasks: [ { @@ -1209,13 +1215,8 @@ } { dependencies: ["378E2294EFD85C65"] - description: [ - "You can rename easily any AE2 part with this knife. It can be quite useful especially for Pattern Provider as the name will appear in your Pattern Terminal." - "" - "As an example &oAssembler HV #2&r as a name for the Pattern Provider would let you know easily that this Assembler HV is setup on Circuit 2." - ] + description: ["{quests.ae2.cutting_knife.desc}"] id: "13B0A0B4601F3959" - subtitle: "Organization is key" tasks: [{ id: "508DE2D583EBD2AD" item: { @@ -1225,9 +1226,10 @@ "ftbfiltersystem:filter": "or(item(ae2:nether_quartz_cutting_knife)item(ae2:certus_quartz_cutting_knife))" } } - title: "Either of them" + title: "{quests.ae2.cutting_knife.task}" type: "item" }] + title: "{quests.ae2.cutting_knife.title}" x: 0.0d y: -10.5d } @@ -1235,13 +1237,11 @@ dependencies: ["378E2294EFD85C65"] description: ["{quests.ae2.programmed_circuit_card.desc}"] id: "51B34B3E51B6ECDD" - subtitle: "{quests.ae2.programmed_circuit_card.subtitle}" tasks: [{ id: "295980339E1FE027" item: "pccard:card_programmed_circuit" type: "item" }] - title: "{quests.ae2.programmed_circuit_card.title}" x: 1.0d y: -10.5d } diff --git a/config/ftbquests/quests/chapters/questsmetallurgy.snbt b/config/ftbquests/quests/chapters/questsmetallurgy.snbt index 9d65ba8ec..aa837dbb9 100644 --- a/config/ftbquests/quests/chapters/questsmetallurgy.snbt +++ b/config/ftbquests/quests/chapters/questsmetallurgy.snbt @@ -337,7 +337,16 @@ dependencies: ["5A936E9BCF30AA3D"] dependency_requirement: "one_completed" description: ["{quests.metal_age.graphite.desc}"] - icon: "tfc:powder/graphite" + icon: { + Count: 1 + ForgeCaps: { + "tfc:item_heat": { + heat: 0.0f + ticks: 0L + } + } + id: "tfc:powder/graphite" + } id: "31CE13462759950C" shape: "octagon" size: 2.0d diff --git a/config/ftbquests/quests/chapters/questssteam_age.snbt b/config/ftbquests/quests/chapters/questssteam_age.snbt index 7b2886226..cc6939c85 100644 --- a/config/ftbquests/quests/chapters/questssteam_age.snbt +++ b/config/ftbquests/quests/chapters/questssteam_age.snbt @@ -3,7 +3,16 @@ default_quest_shape: "" filename: "questssteam_age" group: "3C4612A920658A7E" - icon: "gtceu:steel_gear" + icon: { + Count: 1 + ForgeCaps: { + "tfc:item_heat": { + heat: 0.0f + ticks: 0L + } + } + id: "gtceu:steel_gear" + } id: "784A885090386609" order_index: 2 quest_links: [ @@ -253,6 +262,7 @@ { id: "704B7094BE2FB3E1" item: "create:steam_engine" + optional_task: true type: "item" } { @@ -1638,25 +1648,6 @@ x: -7.5d y: 4.0d } - { - dependencies: [ - "183D47F04CAEBFA7" - "753A53733C6DFA04" - ] - description: ["{quests.steam_age.straw.desc}"] - id: "7314F69F0DE6E78E" - optional: true - shape: "heart" - subtitle: "{quests.steam_age.straw.subtitle}" - tasks: [{ - id: "25F19B16E99D6DD0" - item: "createaddition:straw" - type: "item" - }] - title: "{quests.steam_age.straw.title}" - x: -15.0d - y: 16.0d - } { dependencies: ["183D47F04CAEBFA7"] description: ["{quests.steam_age.fuel_sources.desc}"] @@ -1671,6 +1662,22 @@ x: -16.5d y: 16.0d } + { + dependencies: ["183D47F04CAEBFA7"] + description: ["{quests.steam_age.straw.desc}"] + icon: "create:fluid_pipe" + id: "6A28DE8263316927" + optional: true + shape: "heart" + subtitle: "{quests.steam_age.straw.subtitle}" + tasks: [{ + id: "75B27729685EE9D0" + type: "checkmark" + }] + title: "{quests.steam_age.straw.title}" + x: -15.0d + y: 14.5d + } ] subtitle: ["{quests.steam_age.subtitle}"] title: "{quests.steam_age}" diff --git a/config/ftbquests/quests/chapters/space_survival.snbt b/config/ftbquests/quests/chapters/space_survival.snbt index de0339f43..df324a648 100644 --- a/config/ftbquests/quests/chapters/space_survival.snbt +++ b/config/ftbquests/quests/chapters/space_survival.snbt @@ -239,7 +239,7 @@ tasks: [ { id: "3B06766C1A6B30C0" - item: "minecraft:chorus_flower" + item: "tfg:lunar_chorus_flower" type: "item" } { @@ -574,8 +574,8 @@ type: "item" }] title: "{quests.space_survival.input_bus_railgun.title}" - x: 6.0d - y: -1.0d + x: 6.5d + y: -1.5d } { dependencies: ["783BB3FC5702DA8C"] @@ -600,8 +600,8 @@ } ] title: "{quests.space_survival.ammo_railgun.title}" - x: 6.0d - y: -2.0d + x: 6.5d + y: -2.5d } { dependencies: ["498E559B9C37D2CA"] @@ -660,8 +660,8 @@ type: "item" }] title: "{quests.space_survival.output_bus_railgun.title}" - x: 6.0d - y: 3.0d + x: 6.5d + y: 3.5d } { dependencies: ["498E559B9C37D2CA"] @@ -678,6 +678,29 @@ x: 6.5d y: 2.0d } + { + dependencies: ["3F785579F13B0F46"] + description: [ + "{quests.space_survival.soulbound.desc.1}" + "{@pagebreak}" + "{quests.space_survival.soulbound.desc.2}" + ] + id: "6B9257192CF56FE3" + shape: "heart" + subtitle: "{quests.space_survival.soulbound.subtitle}" + tasks: [{ + id: "546E6DECAA00CB7B" + item: { + Count: 1 + id: "endermanoverhaul:soul_pearl" + tag: { } + } + type: "item" + }] + title: "{quests.space_survival.soulbound.title}" + x: 3.0d + y: -4.0d + } ] subtitle: ["{quests.space_survival.subtitle}"] title: "{quests.space_survival}" diff --git a/config/ftbquests/quests/chapters/tips__tools.snbt b/config/ftbquests/quests/chapters/tips__tools.snbt index 4089e4c5e..682b75ac8 100644 --- a/config/ftbquests/quests/chapters/tips__tools.snbt +++ b/config/ftbquests/quests/chapters/tips__tools.snbt @@ -70,7 +70,7 @@ type: "item" }] title: "{quests.tfg_tips.first_backpack.title}" - x: 13.0d + x: 16.0d y: 2.0d } { @@ -87,7 +87,7 @@ type: "item" }] title: "{quests.tfg_tips.red_steel_backpack.title}" - x: 15.0d + x: 18.0d y: 2.0d } { @@ -104,7 +104,7 @@ type: "item" }] title: "{quests.tfg_tips.backpack_upgrades.title}" - x: 14.5d + x: 16.5d y: 4.0d } { @@ -121,7 +121,7 @@ type: "item" }] title: "{quests.tfg_tips.aluminium_backpack.title}" - x: 16.0d + x: 19.0d y: 2.0d } { @@ -138,7 +138,7 @@ type: "item" }] title: "{quests.tfg_tips.titanium_backpack.title}" - x: 17.0d + x: 20.0d y: 2.0d } { @@ -152,7 +152,7 @@ type: "item" }] title: "{quests.tfg_tips.crafting_upgrade.title}" - x: 16.0d + x: 18.0d y: 4.5d } { @@ -173,7 +173,7 @@ } ] title: "{quests.tfg_tips.advanced_upgrades.title}" - x: 16.0d + x: 18.0d y: 3.5d } { @@ -294,7 +294,7 @@ } ] title: "{quests.tfg_tips.all_backpack_upgrades.title}" - x: 17.5d + x: 19.5d y: 4.0d } { @@ -331,7 +331,7 @@ } ] title: "{quests.tfg_tips.256m_portable_cells.title}" - x: 12.0d + x: 12.5d y: 3.0d } { @@ -369,8 +369,8 @@ type: "item" }] title: "{quests.tfg_tips.maxed_out_toolbelt.title}" - x: 12.0d - y: 4.0d + x: 12.5d + y: 4.5d } { dependencies: ["7FA5B6354A49C396"] @@ -390,8 +390,8 @@ } ] title: "{quests.tfg_tips.toolbelt.title}" - x: 11.0d - y: 4.0d + x: 10.5d + y: 4.5d } { dependencies: ["7FA5B6354A49C396"] @@ -431,50 +431,38 @@ size: 1.0d subtitle: "{quests.tfg_tips.backpack_materials.subtitle}" tasks: [ - { - id: "3D54644D50E1904E" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:string)" - } - } - title: "Any #forge:string" - type: "item" - } - { - id: "40410856739CAF06" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:leather)" - } - } - title: "Any #forge:leather" - type: "item" - } - { - id: "62219AEA780A9850" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:chests/wooden)" - } - } - title: "{quests.tasktype.item.any} #forge:chests/wooden" - type: "item" - } { id: "56622AE6FBE714A2" item: "minecraft:name_tag" type: "item" } + { + id: "26C63DDBFC21E987" + item: { + Count: 1 + ForgeCaps: { + "tfc:item_heat": { + heat: 0.0f + ticks: 0L + } + } + id: "sns:pack_frame" + } + type: "item" + } + { + id: "51D50469150985C8" + item: "sns:reinforced_fiber" + type: "item" + } + { + id: "441FD9DFB12362DB" + item: "sns:bound_leather_strip" + type: "item" + } ] title: "{quests.tfg_tips.backpack_materials.title}" - x: 11.0d + x: 13.5d y: 2.0d } { @@ -509,14 +497,23 @@ } ] title: "{quests.tfg_tips.vessels.title}" - x: 11.0d - y: 1.0d + x: 10.5d + y: -0.5d } { dependencies: ["72B3EA6588E18CCC"] description: ["{quests.tfg_tips.portable_storage.desc}"] disable_toast: true - icon: "sophisticatedbackpacks:backpack" + icon: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + voidSlots: [I; ] + } + } + id: "sns:leather_sack" + } id: "7FA5B6354A49C396" shape: "octagon" size: 2.0d @@ -548,8 +545,8 @@ type: "item" }] title: "{quests.tfg_tips.tungstensteel_backpack.title}" - x: 19.5d - y: 2.0d + x: 22.964285714285722d + y: 2.0357142857142847d } { dependencies: ["74AE7DB845B88CF3"] @@ -1476,7 +1473,7 @@ type: "item" }] title: "{quests.tfg_tips.fishing_net.title}" - x: -5.5d + x: -3.0d y: 7.0d } { @@ -1497,8 +1494,8 @@ type: "item" }] title: "{quests.tfg_tips.cane.title}" - x: -3.5d - y: 7.0d + x: -2.5d + y: 8.5d } { dependencies: ["72B3EA6588E18CCC"] @@ -2340,8 +2337,8 @@ type: "item" }] title: "{quests.tfg_tips.digger_helmet.title}" - x: -2.5d - y: 8.5d + x: -6.0d + y: 7.0d } { dependencies: ["72B3EA6588E18CCC"] @@ -2579,6 +2576,193 @@ x: -2.5d y: 0.5d } + { + dependencies: ["7FA5B6354A49C396"] + description: ["{quests.tfg_tips.first_sacks.desc}"] + id: "509C064AA92FD78F" + subtitle: "{quests.tfg_tips.first_sacks.subtitle}" + tasks: [ + { + id: "5166FB8DE88DF0CA" + item: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + voidSlots: [I; ] + weight: 0b + } + } + id: "sns:leather_sack" + } + optional_task: true + type: "item" + } + { + id: "064BB0E0D6295650" + item: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + voidSlots: [I; ] + weight: 0b + } + } + id: "sns:burlap_sack" + } + optional_task: true + type: "item" + } + ] + title: "{quests.tfg_tips.first_sacks.title}" + x: 11.0d + y: 1.0d + } + { + dependencies: ["7178843BCD50A012"] + description: ["{quests.tfg_tips.frame_pack.desc}"] + id: "5443F4F5AE53B91A" + shape: "octagon" + size: 2.0d + subtitle: "{quests.tfg_tips.frame_pack.subtitle}" + tasks: [{ + id: "54D2B434FC11CEB6" + item: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + voidSlots: [I; ] + weight: 0b + } + } + id: "sns:frame_pack" + } + type: "item" + }] + title: "{quests.tfg_tips.frame_pack.title}" + x: 16.0d + y: -0.5d + } + { + dependencies: ["509C064AA92FD78F"] + description: ["{quests.tfg_tips.special_sacks.desc}"] + id: "21C58B2541BFA2EE" + shape: "heart" + subtitle: "{quests.tfg_tips.special_sacks.subtitle}" + tasks: [ + { + id: "174C280F11DC3D85" + item: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + voidSlots: [I; ] + weight: 0b + } + } + id: "sns:seed_pouch" + } + optional_task: true + type: "item" + } + { + id: "3B5EC702928D4E22" + item: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + voidSlots: [I; ] + weight: 0b + } + } + id: "sns:ore_sack" + } + optional_task: true + type: "item" + } + ] + title: "{quests.tfg_tips.special_sacks.title}" + x: 12.5d + y: 1.0d + } + { + dependencies: ["7FA5B6354A49C396"] + description: ["{quests.tfg_tips.toolbox.desc}"] + icon: "create:brown_toolbox" + id: "1652649B64E7C04C" + subtitle: "{quests.tfg_tips.toolbox.subtitle}" + tasks: [{ + id: "7712BDD1CF0760F5" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(create:toolboxes)" + } + } + title: "{quests.tasktype.item.any} #create:toolboxes" + type: "item" + }] + title: "{quests.tfg_tips.toolbox.title}" + x: 9.0d + y: 5.0d + } + { + dependencies: ["7FA5B6354A49C396"] + description: ["{quests.tfg_tips.straw_basket.desc}"] + id: "67F40A90844EC0FC" + subtitle: "{quests.tfg_tips.straw_basket.subtitle}" + tasks: [{ + id: "542549225517097C" + item: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + voidSlots: [I; ] + weight: 0b + } + } + id: "sns:straw_basket" + } + type: "item" + }] + title: "{quests.tfg_tips.straw_basket.title}" + x: 9.0d + y: -1.0d + } + { + dependencies: ["150B7C5CD152E1BA"] + description: ["{quests.tfg_tips.hiking.desc}"] + icon: { + Count: 1 + id: "sns:hiking_boots" + tag: { + Damage: 0 + } + } + id: "21042F13F754E6E6" + subtitle: "{quests.tfg_tips.hiking.subtitle}" + tasks: [{ + id: "263569419A799471" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(sns:hiking_boots)item(sns:steel_toe_hiking_boots)item(sns:black_steel_toe_hiking_boots)item(sns:blue_steel_toe_hiking_boots)item(sns:red_steel_toe_hiking_boots))" + } + } + title: "{quests.tfg_tips.hiking.task}" + type: "item" + }] + title: "{quests.tfg_tips.hiking.title}" + x: -3.0d + y: 10.0d + } ] subtitle: ["{quests.tfg_tips.tools_tips.subtitle}"] title: "Tips - Tools" diff --git a/config/ftbquests/quests/chapters/tips__transportation.snbt b/config/ftbquests/quests/chapters/tips__transportation.snbt index 0f959f3f6..a88a4b21f 100644 --- a/config/ftbquests/quests/chapters/tips__transportation.snbt +++ b/config/ftbquests/quests/chapters/tips__transportation.snbt @@ -968,7 +968,7 @@ type: "item" }] title: "{quests.tfg_tips.supply_cart.title}" - x: 6.0d + x: 4.5d y: -1.5d } { @@ -999,7 +999,7 @@ } ] title: "{quests.tfg_tips.equines.title}" - x: 5.0d + x: 6.5d y: -1.5d } { @@ -1020,7 +1020,7 @@ type: "item" }] title: "{quests.tfg_tips.animal_cart.title}" - x: 7.0d + x: 5.5d y: -1.5d } { @@ -1041,7 +1041,7 @@ type: "item" }] title: "{quests.tfg_tips.plow.title}" - x: 8.0d + x: 8.5d y: -1.5d } { @@ -1418,6 +1418,40 @@ x: 18.0d y: -2.0d } + { + dependencies: ["05528D09F7EE6E33"] + description: ["{quests.tfg_tips.horseshoes.desc}"] + icon: { + Count: 1 + ForgeCaps: { + "tfc:item_heat": { + heat: 0.0f + ticks: 0L + } + } + id: "sns:metal/horseshoes/steel" + tag: { + Damage: 0 + } + } + id: "40566F6665A095C6" + subtitle: "{quests.tfg_tips.horseshoes.subtitle}" + tasks: [{ + id: "75C43AA489BAE404" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(sns:metal/horseshoes/steel)item(sns:metal/horseshoes/black_steel)item(sns:metal/horseshoes/blue_steel)item(sns:metal/horseshoes/red_steel))" + } + } + title: "{quests.tfg_tips.horseshoes.task}" + type: "item" + }] + title: "{quests.tfg_tips.horseshoes.title}" + x: 7.5d + y: -1.5d + } ] subtitle: ["{quests.tfg_tips.transportation_tips.subtitle}"] title: "Tips - Transportation" diff --git a/config/gtceu.yaml b/config/gtceu.yaml index 2e7586643..9a896aede 100644 --- a/config/gtceu.yaml +++ b/config/gtceu.yaml @@ -400,15 +400,15 @@ client: # 3 - left-bottom corner # 4 - right-bottom corner # Default: 1 - hudLocation: 1 + hudLocation: 4 # Horizontal offset of HUD. # Default: 0 - hudOffsetX: 0 + hudOffsetX: 3 # Vertical offset of HUD. # Default: 0 - hudOffsetY: 0 + hudOffsetY: 3 renderer: # Render fluids in multiblocks that support them? diff --git a/config/lodestone-client.toml b/config/lodestone-client.toml new file mode 100644 index 000000000..0f1521a9c --- /dev/null +++ b/config/lodestone-client.toml @@ -0,0 +1,23 @@ + +[graphics] + #Should lodestone use experimental fabulous graphics layering? You pretty much never wanna turn this on at the moment unless you're a developer. + experimental_fabulous_layering = false + + [graphics.particle] + #Should particles render on the delayed buffer? This means they will properly render after clouds & water do, but could cause issues with mods like sodium. + buffer_particles = true + + [graphics.fire] + #Downwards offset of Minecraft's first-person fire overlay. Higher numbers cause it to visually display lower and free up more screen space. + #Range: 0.0 ~ 1.0 + fire_overlay_offset = 0.0 + +[screenshake] + #Intensity of screenshake. Higher numbers increase amplitude. Disable to turn off screenshake. + #Range: 0.0 ~ 5.0 + screenshake_intensity = 1.0 + +[screen_particles] + #Are screen particles enabled? + enable_screen_particles = true + diff --git a/config/mod-director/ftb.bundle.json b/config/mod-director/ftb.bundle.json new file mode 100644 index 000000000..c188bdec5 --- /dev/null +++ b/config/mod-director/ftb.bundle.json @@ -0,0 +1,40 @@ +{ + "curse": [ + { + "addonId": 289412, + "fileId": 6829212 + }, + { + "addonId": 404468, + "fileId": 6130786 + }, + { + "addonId": 314906, + "fileId": 6431735 + }, + { + "addonId": 404465, + "fileId": 6807424 + }, + { + "addonId": 314905, + "fileId": 6522073 + }, + { + "addonId": 943925, + "fileId": 6466153 + }, + { + "addonId": 889915, + "fileId": 6402486 + }, + { + "addonId": 410811, + "fileId": 6555287 + }, + { + "addonId": 622737, + "fileId": 4834403 + } + ] +} \ No newline at end of file diff --git a/config/sns-client.toml b/config/sns-client.toml new file mode 100644 index 000000000..70356c31a --- /dev/null +++ b/config/sns-client.toml @@ -0,0 +1,8 @@ +#Swaps the enchant glint from when auto pickup is enabled to when it's disabled +voidGlint = true +#When enabled sacks will display their contents like how TFC vessels do +displayItemContentsAsImages = true +#Config for which hiking boots model is used. FANCY for the full 3D model, NO_FLOOF for only toes and VANILLA for the vanilla style model +#Allowed Values: FANCY, NO_FLOOF, VANILLA +bootModelType = "FANCY" + diff --git a/config/sns-common.toml b/config/sns-common.toml new file mode 100644 index 000000000..1df959fd7 --- /dev/null +++ b/config/sns-common.toml @@ -0,0 +1,3 @@ +#Do pick block for Item Container. Server will trump client config! +doPickBlock = true + diff --git a/config/soulbinding-common.toml b/config/soulbinding-common.toml new file mode 100644 index 000000000..8f89ce0dd --- /dev/null +++ b/config/soulbinding-common.toml @@ -0,0 +1,60 @@ + +["Professions that can sell Binding Chains"] + Armorer = false + Butcher = false + Cartographer = false + Cleric = false + Farmer = false + Fisherman = false + Fletcher = false + Leatherworker = false + Librarian = false + Mason = false + Shepherd = false + Toolsmith = false + Weaponsmith = false + +["Profession Settings"] + #Range: 0 ~ 5 + "Profession Level needed to sell Binding Chains" = 1 + #Range: 0 ~ 999999 + "Max Binding Chains that a Villager can sell per day" = 10 + #Item Needed must be lowercase and spelt correctly. If not, the Binding Chains WILL NOT appear in trades. + "Item needed for Trade" = "minecraft:emerald" + #Range: 0 ~ 64 + "Amount of Trade Items Needed" = 16 + +["Wandering Trader Settings"] + "Wandering Trader can Sell Binding Chains" = true + #The Wandering Trader randomly picks a few trades from the Generic Trade List and a single trade from Rare List. + "Binding Chains are in the Rare List" = true + "Binding Chains are in the Generic List" = false + #Range: 0 ~ 999999 + "Max Binding Chains that the Trader can sell" = 3 + #Item Needed must be lowercase and spelt correctly. If not, the Binding Chains WILL NOT appear in trades. + "Item needed for Trade" = "minecraft:emerald" + #Range: 0 ~ 64 + "Amount of Trade Items Needed" = 16 + +["Anvil Settings"] + #The way that the Anvil is coded requires at least 1 Experience Level to successfully alter an item outside of Creative Mode! + #Range: 1 ~ 999999 + "Experience Levels Needed to Attach Binding Chains to an Item" = 1 + +["Drop Settings"] + #Chances are set as decimals. 1.0 is the same as 100%, 0.01 is the same as 1% + #Range: 0.0 ~ 1.0 + "Chance for the Witch to drop Binding Chains" = 0.0 + #Range: 0.0 ~ 1.0 + "Chance for the Evoker to drop Binding Chains" = 0.0 + #Range: 0.0 ~ 1.0 + "Chance for the Piglin Brute to drop Binding Chains" = 0.0 + +["Misc Settings"] + "Binding Chains will Bind and Greatly SLOW Mobs when tossed to them" = true + #Chances are set as decimals. 1.0 is the same as 100%, 0.01 is the same as 1% + #Range: 0.0 ~ 1.0 + "Chance for the Bound Mob to drop Binding Chains when killed" = 1.0 + "Binding Chains can be used as Piglin Currency" = false + "The Binding Chains ICON has a Foil Effect making it shimmer as if it is enchanted" = true + diff --git a/config/tfg-client.toml b/config/tfg-client.toml new file mode 100644 index 000000000..cfae85505 --- /dev/null +++ b/config/tfg-client.toml @@ -0,0 +1,8 @@ + +[propick_vein_rendering] + # + # + #1 in N chance for the precise xray ore prospector particles to appear per block. Set to 0 to disable. Default: 5 + #Range: 0 ~ 1000 + PreciseOreProspectorParticleChance = 5 + diff --git a/config/tfg-common.toml b/config/tfg-common.toml index 58a16f7ed..235020b09 100644 --- a/config/tfg-common.toml +++ b/config/tfg-common.toml @@ -1,5 +1,7 @@ -#Should be create compat enabled? -createCompat = true -#Should be tfc ambiental compat enabled? -tfcAmbientalCompat = true + +[general] + #Should be create compat enabled? + createCompat = true + #Should be tfc ambiental compat enabled? + tfcAmbientalCompat = true diff --git a/config/xaerominimap_entities.json b/config/xaerominimap_entities.json index db393cd4d..76801ed2f 100644 --- a/config/xaerominimap_entities.json +++ b/config/xaerominimap_entities.json @@ -10,8 +10,8 @@ "name": "gui.xaero_entity_category_root", "protection": true, "settingOverrides": { - "displayHeight": 0.0, "displayed": true, + "displayHeight": 0.0, "heightBasedFade": true, "renderOrder": 0.0, "color": 13.0, @@ -22,8 +22,8 @@ "startFadingAt": 0.0, "renderOverMinimapFrame": 1.0, "icons": 1.0, - "heightLimit": 20.0, "names": 0.0, + "heightLimit": 20.0, "iconScale": 1.0 }, "subCategories": [ diff --git a/config/xenon++.toml b/config/xenon++.toml deleted file mode 100644 index 5e3011163..000000000 --- a/config/xenon++.toml +++ /dev/null @@ -1,131 +0,0 @@ - -[xenonextras] - - [xenonextras.general] - #Set Fullscreen mode - #Borderless let you change between screens more faster and move your mouse across monitors - #Allowed Values: WINDOWED, BORDERLESS, FULLSCREEN - fullscreen = "WINDOWED" - #Configure FPS Display mode - #Complete mode gives you min FPS count and average count - #Allowed Values: OFF, SIMPLE, ADVANCED, FRAMETIME - fpsDisplay = "ADVANCED" - #Configure FPS Display gravity - #Places counter on specified corner of your screen - #Allowed Values: LEFT, CENTER, RIGHT - fpsDisplayGravity = "LEFT" - #Shows GPU and memory usage onto FPS display - #Allowed Values: OFF, ON, RAM - fpsDisplaySystem = "OFF" - #Configure FPS Display margin - #Give some space between corner and text - #Range: 0 ~ 48 - fpsDisplayMargin = 12 - #Toggle FPS Display shadow - #In case sometimes you can't see the text - fpsDisplayShadow = false - - [xenonextras.quality] - #Toggle fog feature - #Fog was a vanilla feature, toggling off may increases performance - fog = true - #Raise clouds - #Modify clouds height perfect for a adaptative world experience - #Range: 0 ~ 512 - cloudsHeight = 192 - #Chunks fade in speed - #This option doesn't affect performance, just changes speed - #Allowed Values: OFF, FAST, SLOW - chunkFadeSpeed = "SLOW" - - [xenonextras.quality.darkness] - #Configure Darkness Mode - #Each config changes what is considered 'true darkness' - #Allowed Values: TOTAL_DARKNESS, PITCH_BLACK, DARK, DIM, OFF - mode = "OFF" - #Toggle Darkness on Overworld dimension - enableOnOverworld = true - #Toggle Darkness on Nether dimension - enableOnNether = false - #Configure fog brightness on nether when darkness is enabled - #Range: 0.0 ~ 1.0 - netherFogBright = 0.5 - #Toggle Darkness on End dimension - enableOnEnd = false - #Configure fog brightness on nether when darkness is enabled - #Range: 0.0 ~ 1.0 - endFogBright = 0.5 - #Toggle Darkness default mode for modded dimensions - valueByDefault = false - #List of all dimensions to use True Darkness - #This option overrides 'valueByDefault' state - dimensionWhitelist = [] - #Toggle darkness when dimension has no SkyLight - enableOnNoSkyLight = false - #Disables all bright sources of darkness like moon or fog - #Only affects darkness effect - enableBlockLightOnly = false - #Toggles if moon phases affects darkness in the overworld - affectedByMoonPhase = true - #Configure max moon brightness level with darkness - #Range: 0.0 ~ 1.0 - fullMoonBright = 0.25 - #Configure min moon brightness level with darkness - #Range: 0.0 ~ 1.0 - newMoonBright = 0.0 - - [xenonextras.performance] - #Toggles JREI item rendering until searching - #Increases performance a little bit and cleans your screen when you don't want to use it - hideJREI = false - #Toggles Minecraft Fonts shadows - #Depending of the case may increase performance - #Gives a flat style text - fontShadows = true - - [xenonextras.performance.distanceCulling] - - [xenonextras.performance.distanceCulling.tileEntities] - #Toggles distance culling for Block Entities - #Maybe you use another mod for that :( - enable = true - #Configure horizontal max distance before cull Block entities - #Value is squared, default was 64^2 (or 64x64) - #Range: > 0 - cullingMaxDistanceX = 4096 - #Configure vertical max distance before cull Block entities - #Value is raw - #Range: 0 ~ 512 - cullingMaxDistanceY = 32 - #List of all Block Entities to be ignored by distance culling - #Uses ResourceLocation to identify it - #Example 1: "minecraft:chest" - Ignores chests only - #Example 2: "ae2:*" - ignores all Block entities from Applied Energetics 2 - whitelist = ["waterframes:*"] - - [xenonextras.performance.distanceCulling.entities] - #Toggles distance culling for entities - enable = true - #Configure horizontal max distance before cull entities - #Value is squared, default was 64^2 (or 64x64) - #Range: > 0 - cullingMaxDistanceX = 4096 - #Configure vertical max distance before cull entities - #Value is raw - #Range: 0 ~ 512 - cullingMaxDistanceY = 32 - #Configure modifier applied to hostile entities - #Value is raw, 50% - 200% - #Range: 25 ~ 200 - hostileEntityModifier = 100 - #List of all Entities to be ignored by distance culling - #Uses ResourceLocation to identify it - #Example 1: "minecraft:bat" - Ignores bats only - #Example 2: "alexsmobs:*" - ignores all entities for alexmobs mod - whitelist = ["minecraft:ghast", "minecraft:ender_dragon", "iceandfire:*", "create:*"] - - [xenonextras.others] - #Configure if borderless fullscreen option should be attached to F11 or replace vanilla fullscreen - #Allowed Values: ATTACH, REPLACE, OFF - borderlessAttachModeOnF11 = "ATTACH" - diff --git a/config/xenon-mixins.properties b/config/xenon-mixins.properties deleted file mode 100644 index 923d9581a..000000000 --- a/config/xenon-mixins.properties +++ /dev/null @@ -1,6 +0,0 @@ -# This is the configuration file for Xenon. -# -# You can find information on editing this file and all the available options here: -# https://github.com/jellysquid3/sodium-fabric/wiki/Configuration-File -# -# By default, this file will be empty except for this notice. diff --git a/config/xenon-options.json b/config/xenon-options.json deleted file mode 100644 index 2a49be477..000000000 --- a/config/xenon-options.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "quality": { - "weather_quality": "DEFAULT", - "leaves_quality": "DEFAULT", - "enable_vignette": true, - "use_quad_normals_for_shading": false - }, - "advanced": { - "enable_memory_tracing": false, - "use_advanced_staging_buffers": true, - "disable_incompatible_mod_warnings": false, - "cpu_render_ahead_limit": 3 - }, - "performance": { - "chunk_builder_threads": 0, - "always_defer_chunk_updates_v2": true, - "animate_only_visible_textures": true, - "use_entity_culling": true, - "leaf_culling_quality": "SOLID_AGGRESSIVE", - "use_fog_occlusion": true, - "use_block_face_culling": true, - "use_compact_vertex_format": true, - "use_translucent_face_sorting_v2": true, - "use_no_error_g_l_context": true - }, - "notifications": { - "force_disable_donation_prompts": false, - "has_cleared_donation_button": false, - "has_seen_donation_prompt": false - } -} \ No newline at end of file diff --git a/defaultconfigs/create_factory_logistics-server.toml b/defaultconfigs/create_factory_logistics-server.toml index 2a226105b..7219c8531 100644 --- a/defaultconfigs/create_factory_logistics-server.toml +++ b/defaultconfigs/create_factory_logistics-server.toml @@ -2,7 +2,7 @@ factoryGaugeCascadeRequest = true #Capacity of the jar in millibuckets #Range: 1 ~ 999999999 -jarCapacity = 1000 +jarCapacity = 8000 #Whether jar packager (bottler) should pick output tanks over combined. Useful if you want to keep basin inputs intact jarPackagerPrefersOutputs = true diff --git a/defaultconfigs/sns-server.toml b/defaultconfigs/sns-server.toml new file mode 100644 index 000000000..c4cf88814 --- /dev/null +++ b/defaultconfigs/sns-server.toml @@ -0,0 +1,264 @@ + +["Container Item Config"] + + ["Container Item Config"."Straw Basket"] + #Determines if this container will automatically pickup items + doPickup = true + #Determines if this container can void items on pickup + doVoiding = true + #Determines if this container can transfer items in an inventory + doInventoryTransfer = true + #Controls the amount of slots this container has + #Range: 1 ~ 27 + slotCount = 4 + #Item stack max for the type of container + #Range: 1 ~ 512 + slotCap = 32 + #The maximum item size allowed in the container + #Allowed Values: TINY, VERY_SMALL, SMALL, NORMAL, LARGE, VERY_LARGE, HUGE + allowedSize = "NORMAL" + + ["Container Item Config"."Leather Sack"] + #Determines if this container will automatically pickup items + doPickup = false + #Determines if this container can void items on pickup + doVoiding = false + #Determines if this container can transfer items in an inventory + doInventoryTransfer = true + #Controls the amount of slots this container has + #Range: 1 ~ 27 + slotCount = 4 + #Item stack max for the type of container + #Range: 1 ~ 512 + slotCap = 64 + #The maximum item size allowed in the container + #Allowed Values: TINY, VERY_SMALL, SMALL, NORMAL, LARGE, VERY_LARGE, HUGE + allowedSize = "VERY_LARGE" + + ["Container Item Config"."Burlap Sack"] + #Determines if this container will automatically pickup items + doPickup = true + #Determines if this container can void items on pickup + doVoiding = true + #Determines if this container can transfer items in an inventory + doInventoryTransfer = false + #Controls the amount of slots this container has + #Range: 1 ~ 27 + slotCount = 8 + #Item stack max for the type of container + #Range: 1 ~ 512 + slotCap = 48 + #The maximum item size allowed in the container + #Allowed Values: TINY, VERY_SMALL, SMALL, NORMAL, LARGE, VERY_LARGE, HUGE + allowedSize = "NORMAL" + + ["Container Item Config"."Ore Sack"] + #Determines if this container will automatically pickup items + doPickup = true + #Determines if this container can void items on pickup + doVoiding = false + #Determines if this container can transfer items in an inventory + doInventoryTransfer = true + #Controls the amount of slots this container has + #Range: 1 ~ 27 + slotCount = 9 + #Item stack max for the type of container + #Range: 1 ~ 512 + slotCap = 512 + #The maximum item size allowed in the container + #Allowed Values: TINY, VERY_SMALL, SMALL, NORMAL, LARGE, VERY_LARGE, HUGE + allowedSize = "SMALL" + + ["Container Item Config"."Seed Pouch"] + #Determines if this container will automatically pickup items + doPickup = true + #Determines if this container can void items on pickup + doVoiding = false + #Determines if this container can transfer items in an inventory + doInventoryTransfer = true + #Controls the amount of slots this container has + #Range: 1 ~ 27 + slotCount = 27 + #Item stack max for the type of container + #Range: 1 ~ 512 + slotCap = 128 + #The maximum item size allowed in the container + #Allowed Values: TINY, VERY_SMALL, SMALL, NORMAL, LARGE, VERY_LARGE, HUGE + allowedSize = "SMALL" + + ["Container Item Config"."Frame Pack"] + #Determines if this container will automatically pickup items + doPickup = false + #Determines if this container can void items on pickup + doVoiding = false + #Determines if this container can transfer items in an inventory + doInventoryTransfer = false + #Controls the amount of slots this container has + #Range: 1 ~ 27 + slotCount = 18 + #Item stack max for the type of container + #Range: 1 ~ 512 + slotCap = 64 + #The maximum item size allowed in the container + #Allowed Values: TINY, VERY_SMALL, SMALL, NORMAL, LARGE, VERY_LARGE, HUGE + allowedSize = "VERY_LARGE" + + ["Container Item Config"."Lunch Box"] + #Determines if this container will automatically pickup items + doPickup = false + #Determines if this container can void items on pickup + doVoiding = false + #Determines if this container can transfer items in an inventory + doInventoryTransfer = true + #Controls the amount of slots this container has + #Range: 1 ~ 27 + slotCount = 8 + #Item stack max for the type of container + #Range: 1 ~ 512 + slotCap = 4 + #The maximum item size allowed in the container + #Allowed Values: TINY, VERY_SMALL, SMALL, NORMAL, LARGE, VERY_LARGE, HUGE + allowedSize = "NORMAL" + + ["Container Item Config".Quiver] + #Determines if this container will automatically pickup items + doPickup = true + #Determines if this container can void items on pickup + doVoiding = false + #Determines if this container can transfer items in an inventory + doInventoryTransfer = false + #Controls the amount of slots this container has + #Range: 1 ~ 27 + slotCount = 8 + #Item stack max for the type of container + #Range: 1 ~ 512 + slotCap = 32 + #The maximum item size allowed in the container + #Allowed Values: TINY, VERY_SMALL, SMALL, NORMAL, LARGE, VERY_LARGE, HUGE + allowedSize = "VERY_LARGE" + +["Boot config"] + #The amount of steps taken before one point of durability is lost + #Range: > 0 + bootsStepPerDamage = 500 + + ["Boot config"."Hiking Boots"] + #The movement speed bonus these boots provide + #Range: 0.0 ~ 1024.0 + movementSpeed = 0.05 + #The step height bonus these boots provide + #Range: 0.0 ~ 512.0 + stepHeight = 0.0 + #The extra fall distance in blocks before you begin taking fall damage + #Range: 0.0 ~ 64.0 + fallPadding = 0.5 + + ["Boot config"."Steel Toe Boots"] + #The movement speed bonus these boots provide + #Range: 0.0 ~ 1024.0 + movementSpeed = 0.1 + #The step height bonus these boots provide + #Range: 0.0 ~ 512.0 + stepHeight = 0.5 + #The extra fall distance in blocks before you begin taking fall damage + #Range: 0.0 ~ 64.0 + fallPadding = 1.0 + + ["Boot config"."Black Steel Toe Boots"] + #The movement speed bonus these boots provide + #Range: 0.0 ~ 1024.0 + movementSpeed = 0.15 + #The step height bonus these boots provide + #Range: 0.0 ~ 512.0 + stepHeight = 0.5 + #The extra fall distance in blocks before you begin taking fall damage + #Range: 0.0 ~ 64.0 + fallPadding = 2.0 + + ["Boot config"."Blue Steel Toe Boots"] + #The movement speed bonus these boots provide + #Range: 0.0 ~ 1024.0 + movementSpeed = 0.2 + #The step height bonus these boots provide + #Range: 0.0 ~ 512.0 + stepHeight = 0.5 + #The extra fall distance in blocks before you begin taking fall damage + #Range: 0.0 ~ 64.0 + fallPadding = 5.0 + + ["Boot config"."Red Steel Toe Boots"] + #The movement speed bonus these boots provide + #Range: 0.0 ~ 1024.0 + movementSpeed = 0.2 + #The step height bonus these boots provide + #Range: 0.0 ~ 512.0 + stepHeight = 0.5 + #The extra fall distance in blocks before you begin taking fall damage + #Range: 0.0 ~ 64.0 + fallPadding = 5.0 + +["Horseshoes config"] + #The amount of steps taken before one point of durability is lost + #Range: > 0 + horseshoesStepsPerDamage = 500 + + ["Horseshoes config"."Steel Horseshoes"] + #The movement speed bonus horseshoes provide + #Range: 0.0 ~ 1024.0 + movementSpeed = 0.05 + #The fall distance bonus horseshoes provide + #Range: 0.0 ~ 64.0 + bonusFallDistance = 2.0 + #The step height bonus these horseshoes provide + #Range: 0.0 ~ 512.0 + stepHeightBonus = 0.0 + + ["Horseshoes config"."Black Steel Horseshoes"] + #The movement speed bonus horseshoes provide + #Range: 0.0 ~ 1024.0 + movementSpeed = 0.1 + #The fall distance bonus horseshoes provide + #Range: 0.0 ~ 64.0 + bonusFallDistance = 2.0 + #The step height bonus these horseshoes provide + #Range: 0.0 ~ 512.0 + stepHeightBonus = 0.0 + + ["Horseshoes config"."Blue Steel Horseshoes"] + #The movement speed bonus horseshoes provide + #Range: 0.0 ~ 1024.0 + movementSpeed = 0.2 + #The fall distance bonus horseshoes provide + #Range: 0.0 ~ 64.0 + bonusFallDistance = 5.0 + #The step height bonus these horseshoes provide + #Range: 0.0 ~ 512.0 + stepHeightBonus = 1.0 + + ["Horseshoes config"."Red Steel Horseshoes"] + #The movement speed bonus horseshoes provide + #Range: 0.0 ~ 1024.0 + movementSpeed = 0.2 + #The fall distance bonus horseshoes provide + #Range: 0.0 ~ 64.0 + bonusFallDistance = 5.0 + #The step height bonus these horseshoes provide + #Range: 0.0 ~ 512.0 + stepHeightBonus = 1.0 + +["Global config"] + #Global control for automatic pickup, this will not force enable for every type + doPickup = true + #A global toggle for item voiding, this will not force enable for every type + doVoiding = true + #This allows other containers such as vessels to support the pick block search + allPickBlock = false + #This allows containers to have items inserted and extracted from them via the inventory like vanilla Bundles + enableContainerInventoryInteraction = true + #The modifier for the 'Lunchbox' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay. + #Range: 0.0 ~ 1.7976931348623157E308 + traitLunchboxModifier = 0.6 + #The maximum size of an entity which mob nets can capture. This is not directly related to TFC's animal size stat. + #Range: 0.0 ~ 1.7976931348623157E308 + maximumNetCaptureSize = 0.5 + diff --git a/defaultconfigs/sophisticatedbackpacks-server.toml b/defaultconfigs/sophisticatedbackpacks-server.toml index c937a3214..9584e4406 100644 --- a/defaultconfigs/sophisticatedbackpacks-server.toml +++ b/defaultconfigs/sophisticatedbackpacks-server.toml @@ -26,7 +26,7 @@ [server.leatherBackpack] #Number of inventory slots in the backpack #Range: 1 ~ 144 - inventorySlotCount = 27 + inventorySlotCount = 36 #Number of upgrade slots in the backpack #Range: 0 ~ 10 upgradeSlotCount = 1 diff --git a/defaultconfigs/wan_ancient_beasts-server.toml b/defaultconfigs/wan_ancient_beasts-server.toml index 272020a11..a2a84888a 100644 --- a/defaultconfigs/wan_ancient_beasts-server.toml +++ b/defaultconfigs/wan_ancient_beasts-server.toml @@ -48,7 +48,7 @@ damage = 10.0 #Crusher armor [default: 20] #Range: 0.0 ~ 30.0 - armor = 35.0 + armor = 30.0 #Crusher armor toughness [default: 4] #Range: 0.0 ~ 20.0 armorToughness = 6.0 diff --git a/kubejs/assets/ad_astra/lang/en_us.json b/kubejs/assets/ad_astra/lang/en_us.json index f4e59e414..c1ac1eb95 100644 --- a/kubejs/assets/ad_astra/lang/en_us.json +++ b/kubejs/assets/ad_astra/lang/en_us.json @@ -106,6 +106,7 @@ "block.ad_astra.polished_glacio_stone_slab": "Polished Phonolite Slab", "block.ad_astra.polished_glacio_stone_stairs": "Polished Phonolite Stairs", "entity.ad_astra.corrupted_lunarian": "Lunar Zombie", + "entity.ad_astra.martian_raptor": "Skeletal Raptor", "entity.ad_astra.tier_1_rocket": "R-Aluminosteel Rocket", "entity.ad_astra.tier_2_rocket": "ASM 4914 Titanium Rocket", "entity.ad_astra.tier_3_rocket": "45-Ti Tungstensteel Rocket", diff --git a/kubejs/assets/ad_astra/lang/ru_ru.json b/kubejs/assets/ad_astra/lang/ru_ru.json new file mode 100644 index 000000000..3edae10ab --- /dev/null +++ b/kubejs/assets/ad_astra/lang/ru_ru.json @@ -0,0 +1,178 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.ad_astra.oxygen_distributor": "Система подачи исскуственного воздуха", + "block.ad_astra.moon_sand": "Лунный песок", + "block.ad_astra.moon_stone": "Анортозит", + "block.ad_astra.moon_cobblestone": "Анортозитовый булыжник", + "block.ad_astra.moon_cobblestone_slab": "Плита из анортозитового булыжника", + "block.ad_astra.moon_cobblestone_stairs": "Ступеньки из анортозитового булыжника", + "block.ad_astra.moon_pillar": "Анортозитовая колонна", + "block.ad_astra.moon_stone_brick_slab": "Плита из анортозитовых кирпичей", + "block.ad_astra.moon_stone_brick_stairs": "Ступеньки из анортозитовых кирпичей", + "block.ad_astra.moon_stone_brick_wall": "Ограда из анортозитовых кирпичей", + "block.ad_astra.moon_stone_bricks": "Анортозитовые кирпичи", + "block.ad_astra.moon_stone_slab": "Анортозитовая плита", + "block.ad_astra.moon_stone_stairs": "Анортозитовые ступеньки", + "block.ad_astra.chiseled_moon_stone_bricks": "Резные анортозитовые кирпичи", + "block.ad_astra.chiseled_moon_stone_slab": "Плита из резных анортозитовых кирпичей", + "block.ad_astra.chiseled_moon_stone_stairs": "Ступеньки из резных анортозитовых кирпичей", + "block.ad_astra.cracked_moon_stone_bricks": "Потрескавшиеся анортозитовые кирпичи", + "block.ad_astra.polished_moon_stone": "Гладкий анортозит", + "block.ad_astra.polished_moon_stone_slab": "Плита из гладкого анортозита", + "block.ad_astra.polished_moon_stone_stairs": "Ступеньки из гладкого анортозита", + "block.ad_astra.sky_stone": "Метеорит", + "block.ad_astra.moon_deepslate": "Норит", + "block.ad_astra.cheese_block": "Лунный сыр", + "block.ad_astra.moon_cheese_ore": "Сыр (Анортозитовая руда)", + "block.ad_astra.mars_sand": "Аргиллитовый песок", + "block.ad_astra.mars_stone": "Аргиллит", + "block.ad_astra.mars_cobblestone": "Аргиллитовый булыжник", + "block.ad_astra.mars_cobblestone_slab": "Плита из аргиллитового булыжника", + "block.ad_astra.mars_cobblestone_stairs": "Ступеньки из аргиллитового булыжника", + "block.ad_astra.mars_pillar": "Аргиллитовая колонна", + "block.ad_astra.mars_stone_brick_slab": "Плита из аргиллитовых кирпичей", + "block.ad_astra.mars_stone_brick_stairs": "Ступеньки из аргиллитовых кирпичей", + "block.ad_astra.mars_stone_brick_wall": "Ограда из аргиллитовых кирпичей", + "block.ad_astra.mars_stone_bricks": "Аргиллитовые кирпичи", + "block.ad_astra.mars_stone_slab": "Аргиллитовая плита", + "block.ad_astra.mars_stone_stairs": "Аргиллитовые ступеньки", + "block.ad_astra.chiseled_mars_stone_bricks": "Резные аргиллитовые кирпичи", + "block.ad_astra.chiseled_mars_stone_slab": "Плита из резных аргиллитовых кирпичей", + "block.ad_astra.chiseled_mars_stone_stairs": "Ступеньки из резных аргиллитовых кирпичей", + "block.ad_astra.cracked_mars_stone_bricks": "Потрескавшиеся аргиллитовые кирпичи", + "block.ad_astra.polished_mars_stone": "Гладкий аргиллит", + "block.ad_astra.polished_mars_stone_slab": "Плита из гладкого аргиллита", + "block.ad_astra.polished_mars_stone_stairs": "Ступеньки из гладкого аргиллита", + "block.ad_astra.conglomerate": "Марсианский конгломерат", + "block.ad_astra.polished_conglomerate": "Гладкий марсианский когломерат", + "block.ad_astra.venus_sand": "Трахитовый песок", + "block.ad_astra.venus_stone": "Трахит", + "block.ad_astra.venus_cobblestone": "Трахитовый булыжник", + "block.ad_astra.venus_cobblestone_slab": "Плита из трахитового булыжника", + "block.ad_astra.venus_cobblestone_stairs": "Ступеньки из трахитового булыжника", + "block.ad_astra.venus_pillar": "Трахитовая колонна", + "block.ad_astra.venus_stone_brick_slab": "Плита из трахитовых кирпичей", + "block.ad_astra.venus_stone_brick_stairs": "Ступеньки из трахитовых кирпичей", + "block.ad_astra.venus_stone_brick_wall": "Ограда из трахитовых кирпичей", + "block.ad_astra.venus_stone_bricks": "Трахитовые кирпичи", + "block.ad_astra.venus_stone_slab": "Трахитовая плита", + "block.ad_astra.venus_stone_stairs": "Трахитовые ступеньки", + "block.ad_astra.chiseled_venus_stone_bricks": "Резные трахитовые кирпичи", + "block.ad_astra.chiseled_venus_stone_slab": "Плита из резных трахитовых кирпичей", + "block.ad_astra.chiseled_venus_stone_stairs": "Ступеньки из резных трахитовых кирпичей", + "block.ad_astra.cracked_venus_stone_bricks": "Потрескавшиеся трахитовые кирпичи", + "block.ad_astra.polished_venus_stone": "Гладкий трахит", + "block.ad_astra.polished_venus_stone_slab": "Плита из гладкого трахита", + "block.ad_astra.polished_venus_stone_stairs": "Ступеньки из гладкого трахита", + "block.ad_astra.venus_sandstone": "Трахитовый песчаник", + "block.ad_astra.venus_sandstone_bricks": "Кирпичи из трахитового песчаника", + "block.ad_astra.venus_sandstone_brick_slab": "Плита из трахитового песчаника", + "block.ad_astra.venus_sandstone_brick_stairs": "Ступеньки из трахитового песчаника", + "block.ad_astra.cracked_venus_sandstone_bricks": "Потрескавшиеся кирпичи из трахитового песчаника", + "block.ad_astra.mercury_stone": "Коматиит", + "block.ad_astra.mercury_cobblestone": "Коматиитовый булыжник", + "block.ad_astra.mercury_cobblestone_slab": "Плита из коматиитового булыжника", + "block.ad_astra.mercury_cobblestone_stairs": "Ступеньки из коматиитового булыжника", + "block.ad_astra.mercury_pillar": "Коматиитовая колонна", + "block.ad_astra.mercury_stone_brick_slab": "Плита из коматиитовых кирпичей", + "block.ad_astra.mercury_stone_brick_stairs": "Ступеньки из коматиитовых кирпичей", + "block.ad_astra.mercury_stone_brick_wall": "Ограда из коматиитовых кирпичей", + "block.ad_astra.mercury_stone_bricks": "Коматиитовые кирпичи", + "block.ad_astra.mercury_stone_slab": "Коматиитовая плита", + "block.ad_astra.mercury_stone_stairs": "Коматиитовые ступеньки", + "block.ad_astra.chiseled_mercury_stone_bricks": "Резные коматиитовые кирпичи", + "block.ad_astra.chiseled_mercury_stone_slab": "Плита из резных коматиитовых кирпичей", + "block.ad_astra.chiseled_mercury_stone_stairs": "Ступеньки из резных коматиитовых кирпичей", + "block.ad_astra.cracked_mercury_stone_bricks": "Потрескавшиеся коматиитовые кирпичи", + "block.ad_astra.polished_mercury_stone": "Гладкий коматиит", + "block.ad_astra.polished_mercury_stone_slab": "Плита из гладкого коматиита", + "block.ad_astra.polished_mercury_stone_stairs": "Ступеньки из гладкого коматиита", + "block.ad_astra.glacio_stone": "Фонолит", + "block.ad_astra.glacio_cobblestone": "Фонолитовый булыжник", + "block.ad_astra.glacio_cobblestone_slab": "Плита из фонолитового булыжника", + "block.ad_astra.glacio_cobblestone_stairs": "Ступеньки из фонолитового булыжника", + "block.ad_astra.glacio_pillar": "Фонолитовая колонна", + "block.ad_astra.glacio_stone_brick_slab": "Плита из фонолитовых кирпичей", + "block.ad_astra.glacio_stone_brick_stairs": "Ступеньки из фонолитовых кирпичей", + "block.ad_astra.glacio_stone_brick_wall": "Ограда из фонолитовых кирпичей", + "block.ad_astra.glacio_stone_bricks": "Фонолитовые кирпичи", + "block.ad_astra.glacio_stone_slab": "Фонолитовая плита", + "block.ad_astra.glacio_stone_stairs": "Фонолитовые ступеньки", + "block.ad_astra.chiseled_glacio_stone_bricks": "Резные фонолитовые кирпичи", + "block.ad_astra.chiseled_glacio_stone_slab": "Плита из резных фонолитовых кирпичей", + "block.ad_astra.chiseled_glacio_stone_stairs": "Ступеньки из резных фонолитовых кирпичей", + "block.ad_astra.cracked_glacio_stone_bricks": "Потрескавшиеся фонолитовые кирпичи", + "block.ad_astra.polished_glacio_stone": "Гладкий фонолит", + "block.ad_astra.polished_glacio_stone_slab": "Плита из гладкого фонолита", + "block.ad_astra.polished_glacio_stone_stairs": "Ступеньки из гладкого фонолита", + "entity.ad_astra.corrupted_lunarian": "Лунный зомби", + "entity.ad_astra.tier_1_rocket": "Красная алюминиево-стальная ракета", + "entity.ad_astra.tier_2_rocket": "ASM 4914 Titanium Rocket", + "entity.ad_astra.tier_3_rocket": "45-Ti Tungstensteel Rocket", + "entity.ad_astra.tier_1_rover": "Вездеход", + "fluid_type.ad_astra.oxygen": "Искуственный воздух", + "item.ad_astra.steel_cable": "Обычный RF кабель", + "item.ad_astra.desh_cable": "Улучшенный RF кабель", + "item.ad_astra.tier_1_rocket": "Красная алюминиево-стальная ракета", + "item.ad_astra.tier_2_rocket": "ASM 4914 Titanium Rocket", + "item.ad_astra.tier_3_rocket": "45-Ti Tungstensteel Rocket", + "item.ad_astra.oxygen_bucket": "Ведро с искуственным воздухом", + "item.ad_astra.tier_1_rover": "Вездеход", + "item.ad_astra.photovoltaic_etrium_cell": "Улучшенная фотоэлектрическая ячейка", + "item.ad_astra.photovoltaic_vesnium_cell": "Энергетическая фотоэлектрическая ячейка", + "item.ad_astra.ostrum_tank": "Острумовый бустер бак", + "item.ad_astra.steel_engine": "Ракетный двигатель (Сталь)", + "item.ad_astra.desh_engine": "Ракетный двигатель (Деш)", + "item.ad_astra.ostrum_engine": "Ракетный двигатель (Острум)", + "item.ad_astra.netherite_space_helmet": "§bКосмический шлем из вольфармовой стали", + "item.ad_astra.netherite_space_suit": "§bКосмический костюм из вольфармовой стали", + "item.ad_astra.netherite_space_pants": "§bКосмические штаны из вольфармовой стали", + "item.ad_astra.netherite_space_boots": "§bКосмические ботинки из вольфармовой стали", + "item.ad_astra.cheese": "Лунный сыр", + "tagprefix.moon_stone": "Anorthosite %s Ore", + "tagprefix.moon_deepslate": "Norite %s Ore", + "tagprefix.mars_stone": "Argillite %s Ore", + "tagprefix.venus_stone": "Trachyte %s Ore", + "tagprefix.mercury_stone": "Komatiite %s Ore", + "tagprefix.glacio_stone": "Phonolite %s Ore", + "info.ad_astra.solar_panel": "Генерирует энергию от солнца в течение дня. Обратите внимание, что вырабатываемая энергия зависит от планеты.", + "tooltip.ad_astra.energy": "%s FE / %s FE", + "tooltip.ad_astra.energy_generation_per_tick": "Генерирует %s FE в тик", + "tooltip.ad_astra.energy_in": "Вход: %s FE/t", + "tooltip.ad_astra.energy_out": "Выход: %s FE/t", + "tooltip.ad_astra.energy_per_tick": "%s FE/t", + "tooltip.ad_astra.energy_transfer_tick": "Передаёт: %s FE/t", + "tooltip.ad_astra.energy_use_per_tick": "Использует %s FE в тик", + "tooltip.ad_astra.max_energy_in": "Максимальный вход: %s FE/t", + "tooltip.ad_astra.max_energy_out": "Максимальный выход: %s FE/t", + "tooltip.ad_astra.max_generation": "Максимум: %s FE/t", + "tooltip.ad_astra.max_fluid_in": "Максимальный вход: %s mB/t", + "tooltip.ad_astra.max_fluid_out": "Максимальный выход: %s mB/t", + "tooltip.ad_astra.fluid": "%s mB / %s mB %s", + "tooltip.ad_astra.fluid_generation_per_iteration": "Генерирует %s mB за итерацию", + "tooltip.ad_astra.fluid_in": "Вход: %s mB/t", + "tooltip.ad_astra.fluid_out": "Выход: %s mB/t", + "tooltip.ad_astra.fluid_per_tick": "%s mB/t", + "tooltip.ad_astra.fluid_transfer_tick": "Передаёт: %s mB/t", + "tooltip.ad_astra.fluid_use_per_iteration": "Использует %s mB за итерацию", + "block.ad_astra.calorite_block": "Калорит (Блок)", + "item.ad_astra.calorite_ingot": "Калорит (Слиток)", + "item.ad_astra.calorite_nugget": "Калорит (Самородок)", + "item.ad_astra.calorite_plate": "Калорит (Пластина)", + "item.ad_astra.raw_calorite": "Сырье (Калорит)", + "block.ad_astra.desh_block": "Деш (Блок)", + "item.ad_astra.desh_ingot": "Деш (Слиток)", + "item.ad_astra.desh_nugget": "Деш (Самородок)", + "item.ad_astra.desh_plate": "Деш (Пластина)", + "item.ad_astra.raw_desh": "Сырье (Деш)", + "block.ad_astra.etrium_block": "Этриум (Блок)", + "item.ad_astra.etrium_ingot": "Этриум (Слиток)", + "item.ad_astra.etrium_nugget": "Этриум (Самородок)", + "item.ad_astra.etrium_plate": "Этриум (Пластина)", + "item.ad_astra.etrium_rod": "Этриум (Стержень)", + "block.ad_astra.ostrum_block": "Острум (Блок)", + "item.ad_astra.ostrum_ingot": "Острум (Слиток)", + "item.ad_astra.ostrum_nugget": "Острум (Самородок)", + "item.ad_astra.ostrum_plate": "Острум (Пластина)", + "item.ad_astra.raw_ostrum": "Сырье (Острум)" +} \ No newline at end of file diff --git a/kubejs/assets/ad_astra/lang/uk_ua.json b/kubejs/assets/ad_astra/lang/uk_ua.json index c5bdba5dd..0bfb420c7 100644 --- a/kubejs/assets/ad_astra/lang/uk_ua.json +++ b/kubejs/assets/ad_astra/lang/uk_ua.json @@ -2,7 +2,7 @@ "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", "block.ad_astra.oxygen_distributor": "Розподілювач повітря", "block.ad_astra.moon_sand": "Місячний пісок", - "block.ad_astra.moon_stone": "Сирий анортозит", + "block.ad_astra.moon_stone": "Необроблений Анортозит", "block.ad_astra.moon_cobblestone": "Анортоцитовий брук", "block.ad_astra.moon_cobblestone_slab": "Анортоцитова бруківна плита", "block.ad_astra.moon_cobblestone_stairs": "Анортоцитові бруківні сходи", @@ -21,11 +21,11 @@ "block.ad_astra.polished_moon_stone_slab": "Оброблена анортизована плита", "block.ad_astra.polished_moon_stone_stairs": "Оброблена анортизовані сходи", "block.ad_astra.sky_stone": "Метеорит", - "block.ad_astra.moon_deepslate": "Сирий норит", + "block.ad_astra.moon_deepslate": "Необроблений Норит", "block.ad_astra.cheese_block": "Місячний сирний блок", "block.ad_astra.moon_cheese_ore": "Анортоцитовий сирна руда", "block.ad_astra.mars_sand": "Аргілітовий пісок", - "block.ad_astra.mars_stone": "Сирий аргіліт", + "block.ad_astra.mars_stone": "Необроблений Аргіліт", "block.ad_astra.mars_cobblestone": "Аргілітовий брук", "block.ad_astra.mars_cobblestone_slab": "Аргілітова бруківна плита", "block.ad_astra.mars_cobblestone_stairs": "Аргілітові бруківні сходи", @@ -46,7 +46,7 @@ "block.ad_astra.conglomerate": "Марсіанський конгломерат", "block.ad_astra.polished_conglomerate": "Оброблений марсіанський конгломерат", "block.ad_astra.venus_sand": "Трахітовий пісок", - "block.ad_astra.venus_stone": "Сирий трахіт", + "block.ad_astra.venus_stone": "Необроблений Трахіт", "block.ad_astra.venus_cobblestone": "Трахітовий брук", "block.ad_astra.venus_cobblestone_slab": "Трахітова бруківна плита", "block.ad_astra.venus_cobblestone_stairs": "Trachyte Cobble Stairs", @@ -69,7 +69,7 @@ "block.ad_astra.venus_sandstone_brick_slab": "Плита з цегли з трахітового пісковику", "block.ad_astra.venus_sandstone_brick_stairs": "Сходи з цегли з трахітового пісковику", "block.ad_astra.cracked_venus_sandstone_bricks": "Тріскана цегла з трахітового пісковику", - "block.ad_astra.mercury_stone": "Сирий Коматіїт", + "block.ad_astra.mercury_stone": "Необроблений Коматіїт", "block.ad_astra.mercury_cobblestone": "Коматієва бруківка", "block.ad_astra.mercury_cobblestone_slab": "Коматієва бруківна плита", "block.ad_astra.mercury_cobblestone_stairs": "Коматієві бруківні сходи", @@ -87,7 +87,7 @@ "block.ad_astra.polished_mercury_stone": "Оброблений коматіїт", "block.ad_astra.polished_mercury_stone_slab": "Оброблена коматієва плита", "block.ad_astra.polished_mercury_stone_stairs": "Оброблені коматієві сходи", - "block.ad_astra.glacio_stone": "Сирий Фоноліт", + "block.ad_astra.glacio_stone": "Необроблений Фоноліт", "block.ad_astra.glacio_cobblestone": "Фонолітова бруківка", "block.ad_astra.glacio_cobblestone_slab": "Фонолітова бруківна плита", "block.ad_astra.glacio_cobblestone_stairs": "Фонолітові бруківні сходи", @@ -106,19 +106,20 @@ "block.ad_astra.polished_glacio_stone_slab": "Оброблена фонолітова плита", "block.ad_astra.polished_glacio_stone_stairs": "Оброблені Фонолітові сходи", "entity.ad_astra.corrupted_lunarian": "Місячний Зомбі", + "entity.ad_astra.martian_raptor": "Скелет Раптора", "entity.ad_astra.tier_1_rocket": "R-Алюміносталева Ракета", "entity.ad_astra.tier_2_rocket": "Титанова ракета ASM 4914", "entity.ad_astra.tier_3_rocket": "Ракета з вольфрамової сталі 45-Ti", "entity.ad_astra.tier_1_rover": "Ровер", "fluid_type.ad_astra.oxygen": "Придатне Повітря", "item.ad_astra.steel_cable": "Базовий RF Кабель", - "item.ad_astra.desh_cable": "Покращений RF Кабель", + "item.ad_astra.desh_cable": "Вдосконалений RF Кабель", "item.ad_astra.tier_1_rocket": "R-Алюміносталева Ракета", "item.ad_astra.tier_2_rocket": "Титанова ракета ASM 4914", "item.ad_astra.tier_3_rocket": "Ракета з вольфрамової сталі 45-Ti", "item.ad_astra.oxygen_bucket": "Відро з Дихальним Повітрям", "item.ad_astra.tier_1_rover": "Ровер", - "item.ad_astra.photovoltaic_etrium_cell": "Передова фотоелементна капсула", + "item.ad_astra.photovoltaic_etrium_cell": "Вдосконалена Фотоелементна Капсула", "item.ad_astra.photovoltaic_vesnium_cell": "Енергетична фотоелементна капсула", "item.ad_astra.ostrum_tank": "Остромовий прискорювальний бак", "item.ad_astra.steel_engine": "Ракетний двигун зі сталі", diff --git a/kubejs/assets/ad_astra/lang/zh_cn.json b/kubejs/assets/ad_astra/lang/zh_cn.json new file mode 100644 index 000000000..4028a26e9 --- /dev/null +++ b/kubejs/assets/ad_astra/lang/zh_cn.json @@ -0,0 +1,159 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.ad_astra.oxygen_distributor": "可呼吸空气分配器", + "block.ad_astra.moon_sand": "月沙", + "block.ad_astra.moon_stone": "天然斜长岩", + "block.ad_astra.moon_cobblestone": "斜长岩圆石", + "block.ad_astra.moon_cobblestone_slab": "斜长岩圆石台阶", + "block.ad_astra.moon_cobblestone_stairs": "斜长岩圆石楼梯", + "block.ad_astra.moon_pillar": "斜长岩柱", + "block.ad_astra.moon_stone_brick_slab": "斜长岩砖台阶", + "block.ad_astra.moon_stone_brick_stairs": "斜长岩砖楼梯", + "block.ad_astra.moon_stone_brick_wall": "斜长岩砖墙", + "block.ad_astra.moon_stone_bricks": "斜长岩砖", + "block.ad_astra.moon_stone_slab": "斜长岩台阶", + "block.ad_astra.moon_stone_stairs": "斜长岩楼梯", + "block.ad_astra.chiseled_moon_stone_bricks": "雕纹斜长岩砖", + "block.ad_astra.chiseled_moon_stone_slab": "雕纹斜长岩台阶", + "block.ad_astra.chiseled_moon_stone_stairs": "雕纹斜长岩楼梯", + "block.ad_astra.cracked_moon_stone_bricks": "裂纹斜长岩砖", + "block.ad_astra.polished_moon_stone": "磨制斜长岩", + "block.ad_astra.polished_moon_stone_slab": "磨制斜长岩台阶", + "block.ad_astra.polished_moon_stone_stairs": "磨制斜长岩楼梯", + "block.ad_astra.sky_stone": "陨石", + "block.ad_astra.moon_deepslate": "天然苏长岩", + "block.ad_astra.cheese_block": "月球奶酪块", + "block.ad_astra.moon_cheese_ore": "斜长岩奶酪矿", + "block.ad_astra.mars_sand": "泥板岩沙", + "block.ad_astra.mars_stone": "天然泥岩", + "block.ad_astra.mars_cobblestone": "泥岩圆石", + "block.ad_astra.mars_cobblestone_slab": "泥岩圆石台阶", + "block.ad_astra.mars_cobblestone_stairs": "泥岩圆石楼梯", + "block.ad_astra.mars_pillar": "泥岩柱", + "block.ad_astra.mars_stone_brick_slab": "泥岩砖台阶", + "block.ad_astra.mars_stone_brick_stairs": "泥岩砖楼梯", + "block.ad_astra.mars_stone_brick_wall": "泥岩砖墙", + "block.ad_astra.mars_stone_bricks": "泥岩砖", + "block.ad_astra.mars_stone_slab": "泥岩台阶", + "block.ad_astra.mars_stone_stairs": "泥岩楼梯", + "block.ad_astra.chiseled_mars_stone_bricks": "雕纹泥岩砖", + "block.ad_astra.chiseled_mars_stone_slab": "雕纹泥岩台阶", + "block.ad_astra.chiseled_mars_stone_stairs": "雕纹泥岩楼梯", + "block.ad_astra.cracked_mars_stone_bricks": "裂纹泥岩砖", + "block.ad_astra.polished_mars_stone": "磨制泥岩", + "block.ad_astra.polished_mars_stone_slab": "磨制泥岩台阶", + "block.ad_astra.polished_mars_stone_stairs": "磨制泥岩楼梯", + "block.ad_astra.conglomerate": "火星砾岩", + "block.ad_astra.polished_conglomerate": "磨制火星砾岩", + "block.ad_astra.venus_sand": "粗面岩沙", + "block.ad_astra.venus_stone": "天然粗面岩", + "block.ad_astra.venus_cobblestone": "粗面岩圆石", + "block.ad_astra.venus_cobblestone_slab": "粗面岩圆石台阶", + "block.ad_astra.venus_cobblestone_stairs": "粗面岩圆石楼梯", + "block.ad_astra.venus_pillar": "粗面岩柱", + "block.ad_astra.venus_stone_brick_slab": "粗面岩砖台阶", + "block.ad_astra.venus_stone_brick_stairs": "粗面岩砖楼梯", + "block.ad_astra.venus_stone_brick_wall": "粗面岩砖墙", + "block.ad_astra.venus_stone_bricks": "粗面岩砖", + "block.ad_astra.venus_stone_slab": "粗面岩台阶", + "block.ad_astra.venus_stone_stairs": "粗面岩楼梯", + "block.ad_astra.chiseled_venus_stone_bricks": "雕纹粗面岩砖", + "block.ad_astra.chiseled_venus_stone_slab": "雕纹粗面岩台阶", + "block.ad_astra.chiseled_venus_stone_stairs": "雕纹粗面岩楼梯", + "block.ad_astra.cracked_venus_stone_bricks": "裂纹粗面岩砖", + "block.ad_astra.polished_venus_stone": "磨制粗面岩", + "block.ad_astra.polished_venus_stone_slab": "磨制粗面岩台阶", + "block.ad_astra.polished_venus_stone_stairs": "磨制粗面岩楼梯", + "block.ad_astra.venus_sandstone": "粗面岩砂岩", + "block.ad_astra.venus_sandstone_bricks": "粗面岩砂岩砖", + "block.ad_astra.venus_sandstone_brick_slab": "粗面岩砂岩砖台阶", + "block.ad_astra.venus_sandstone_brick_stairs": "粗面岩砂岩砖楼梯", + "block.ad_astra.cracked_venus_sandstone_bricks": "裂纹粗面岩砂岩砖", + "block.ad_astra.mercury_stone": "天然科马提岩", + "block.ad_astra.mercury_cobblestone": "科马提岩圆石", + "block.ad_astra.mercury_cobblestone_slab": "科马提岩圆石台阶", + "block.ad_astra.mercury_cobblestone_stairs": "科马提岩圆石楼梯", + "block.ad_astra.mercury_pillar": "科马提岩柱", + "block.ad_astra.mercury_stone_brick_slab": "科马提岩砖台阶", + "block.ad_astra.mercury_stone_brick_stairs": "科马提岩砖楼梯", + "block.ad_astra.mercury_stone_brick_wall": "科马提岩砖墙", + "block.ad_astra.mercury_stone_bricks": "科马提岩砖", + "block.ad_astra.mercury_stone_slab": "科马提岩台阶", + "block.ad_astra.mercury_stone_stairs": "科马提岩楼梯", + "block.ad_astra.chiseled_mercury_stone_bricks": "雕纹科马提岩砖", + "block.ad_astra.chiseled_mercury_stone_slab": "雕纹科马提岩台阶", + "block.ad_astra.chiseled_mercury_stone_stairs": "雕纹科马提岩楼梯", + "block.ad_astra.cracked_mercury_stone_bricks": "裂纹科马提岩砖", + "block.ad_astra.polished_mercury_stone": "磨制科马提岩", + "block.ad_astra.polished_mercury_stone_slab": "磨制科马提岩台阶", + "block.ad_astra.polished_mercury_stone_stairs": "磨制科马提岩楼梯", + "block.ad_astra.glacio_stone": "天然响岩", + "block.ad_astra.glacio_cobblestone": "响岩圆石", + "block.ad_astra.glacio_cobblestone_slab": "响岩圆石台阶", + "block.ad_astra.glacio_cobblestone_stairs": "响岩圆石楼梯", + "block.ad_astra.glacio_pillar": "响岩柱", + "block.ad_astra.glacio_stone_brick_slab": "响岩砖台阶", + "block.ad_astra.glacio_stone_brick_stairs": "响岩砖楼梯", + "block.ad_astra.glacio_stone_brick_wall": "响岩砖墙", + "block.ad_astra.glacio_stone_bricks": "响岩砖", + "block.ad_astra.glacio_stone_slab": "响岩台阶", + "block.ad_astra.glacio_stone_stairs": "响岩楼梯", + "block.ad_astra.chiseled_glacio_stone_bricks": "雕纹响岩砖", + "block.ad_astra.chiseled_glacio_stone_slab": "雕纹响岩台阶", + "block.ad_astra.chiseled_glacio_stone_stairs": "雕纹响岩楼梯", + "block.ad_astra.cracked_glacio_stone_bricks": "裂纹响岩砖", + "block.ad_astra.polished_glacio_stone": "磨制响岩", + "block.ad_astra.polished_glacio_stone_slab": "磨制响岩台阶", + "block.ad_astra.polished_glacio_stone_stairs": "磨制响岩楼梯", + "entity.ad_astra.corrupted_lunarian": "月球僵尸", + "entity.ad_astra.tier_1_rocket": "R型铝钢火箭", + "entity.ad_astra.tier_2_rocket": "ASM 4914 钛合金火箭", + "entity.ad_astra.tier_3_rocket": "45-Ti 钨钢火箭", + "entity.ad_astra.tier_1_rover": "漫游车", + "entity.ad_astra.martian_raptor": "骷髅迅猛龙", + "fluid_type.ad_astra.oxygen": "可呼吸空气", + "item.ad_astra.steel_cable": "基础RF电缆", + "item.ad_astra.desh_cable": "高级RF电缆", + "item.ad_astra.tier_1_rocket": "R型铝钢火箭", + "item.ad_astra.tier_2_rocket": "ASM 4914 钛合金火箭", + "item.ad_astra.tier_3_rocket": "45-Ti 钨钢火箭", + "item.ad_astra.oxygen_bucket": "可呼吸空气桶", + "item.ad_astra.tier_1_rover": "漫游车", + "item.ad_astra.photovoltaic_etrium_cell": "高级光伏板", + "item.ad_astra.photovoltaic_vesnium_cell": "高能光伏板", + "item.ad_astra.ostrum_tank": "紫金助推油箱", + "item.ad_astra.steel_engine": "钢制火箭引擎", + "item.ad_astra.desh_engine": "戴斯火箭引擎", + "item.ad_astra.ostrum_engine": "紫金火箭引擎", + "item.ad_astra.netherite_space_helmet": "§b钨钢航天面罩", + "item.ad_astra.netherite_space_suit": "§b钨钢太空服", + "item.ad_astra.netherite_space_pants": "§b钨钢太空裤", + "item.ad_astra.netherite_space_boots": "§b钨钢太空靴", + "item.ad_astra.cheese": "月球奶酪", + "tagprefix.moon_stone": "斜长岩%s矿石", + "tagprefix.moon_deepslate": "苏长岩%s矿石", + "tagprefix.mars_stone": "泥岩%s矿石", + "tagprefix.venus_stone": "粗面岩%s矿石", + "tagprefix.mercury_stone": "科马提岩%s矿石", + "tagprefix.glacio_stone": "响岩%s矿石", + "info.ad_astra.solar_panel": "白天利用阳光产生能量。注意:能量产量取决于所在星球的环境条件。", + "tooltip.ad_astra.energy": "%s FE / %s FE", + "tooltip.ad_astra.energy_generation_per_tick": "产生 %s FE/t", + "tooltip.ad_astra.energy_in": "输入:%s FE/t", + "tooltip.ad_astra.energy_out": "输出:%s FE/t", + "tooltip.ad_astra.energy_per_tick": "%s FE/t", + "tooltip.ad_astra.energy_transfer_tick": "传输:%s FE/t", + "tooltip.ad_astra.energy_use_per_tick": "消耗 %s FE/t", + "tooltip.ad_astra.max_energy_in": "最大输入:%s FE/t", + "tooltip.ad_astra.max_energy_out": "最大输出:%s FE/t", + "tooltip.ad_astra.max_generation": "最大:%s FE/t", + "tooltip.ad_astra.max_fluid_in": "最大输入:%s mB/t", + "tooltip.ad_astra.max_fluid_out": "最大输出:%s mB/t", + "tooltip.ad_astra.fluid": "%s mB / %s mB %s", + "tooltip.ad_astra.fluid_generation_per_iteration": "每次迭代产生 %s mB", + "tooltip.ad_astra.fluid_in": "输入:%s mB/t", + "tooltip.ad_astra.fluid_out": "输出:%s mB/t", + "tooltip.ad_astra.fluid_per_tick": "%s mB/t", + "tooltip.ad_astra.fluid_transfer_tick": "传输:%s mB/t", + "tooltip.ad_astra.fluid_use_per_iteration": "每次迭代消耗 %s mB" +} \ No newline at end of file diff --git a/kubejs/assets/ad_astra/textures/entity/mob/martian_raptor.png b/kubejs/assets/ad_astra/textures/entity/mob/martian_raptor.png new file mode 100644 index 000000000..0b0bf64e2 Binary files /dev/null and b/kubejs/assets/ad_astra/textures/entity/mob/martian_raptor.png differ diff --git a/kubejs/assets/ae2/lang/zh_cn.json b/kubejs/assets/ae2/lang/zh_cn.json new file mode 100644 index 000000000..d02af0331 --- /dev/null +++ b/kubejs/assets/ae2/lang/zh_cn.json @@ -0,0 +1,6 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "gui.ae2.inWorldCraftingPresses": "压印模板可通过破坏神秘方块获得,而神秘方块位于月球陨石的中心。", + "gui.advanced_ae.AdvPatternProvider": "", + "gui.expandedae.exp_pattern_provider": "" +} \ No newline at end of file diff --git a/kubejs/assets/beneath/lang/ru_ru.json b/kubejs/assets/beneath/lang/ru_ru.json new file mode 100644 index 000000000..f5fec52b4 --- /dev/null +++ b/kubejs/assets/beneath/lang/ru_ru.json @@ -0,0 +1,59 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.beneath.blackstone_pebble": "Камешек пироксенита", + "block.beneath.blackstone_aqueduct": "Пироксенитовый акведук", + "block.beneath.loose_blackstone": "Камешек пироксенита", + "block.beneath.ore.nether_cursecoal": "Антрацит (Мигматитовая руда)", + "block.beneath.ore.nether_cursecoal.prospected": "Антрацит", + "block.beneath.cursecoal_pile": "Кучка Антрацита", + "block.beneath.ore.blackstone_sylvite": "Сильвит (Пироксенитовая руда)", + "block.beneath.crackrack": "Кератофир", + "block.beneath.soul_clay": "Грязевая глина", + "block.beneath.glowstone_spike": "Светокаменный сталагмит", + "block.beneath.sulfur": "Кучка серы", + "block.beneath.burpflower": "Рыгоцвет", + "block.beneath.unposter": "Грибница", + "block.beneath.hellforge": "Адская кузня", + "block.beneath.hellforge_side": "Адская кузня", + "block.beneath.crop.gleamflower": "Светоцвет", + "block.beneath.gleamflower": "Светоцвет", + "beneath.creative_tab.beneath": "Бездна: Предметы", + "beneath.block_entity.hellforge": "Адская кузня", + "beneath.screen.juicer": "Соковыжималка", + "beneath.screen.juicer.mushrooms": "Накорми меня грибами!", + "item.beneath.cursed_hide": "Лаванепроницаемая шкура", + "item.beneath.blackstone_brick": "Пироксенитовый кирпич", + "item.beneath.cursecoal": "Антрацит", + "item.beneath.crackrack_rock": "Камешек кератофира", + "item.beneath.juicer.filled": "Соковыжималка (%s)", + "item.beneath.juicer": "Соковыжималка", + "item.beneath.spawn_egg.red_elk": "Яйцо призыва красного лося", + "item.beneath.seeds.gleamflower": "Семена светоцвета", + "entity.beneath.leviathan_fireball": "Leviathan Fireball", + "entity.beneath.blaze_leviathan": "Blaze Leviathan", + "entity.beneath.red_elk": "Красный лось", + "death.attack.beneath.sulfur": "%1$s добывал серу железным инструментом и взорвал себя.", + "death.attack.beneath.sulfur.player": "%1$s добывал серу железным инструментом и взорвал себя, пытаясь убежать от %2$s.", + "block.beneath.mushroom.button": "Пуговичный гриб", + "item.beneath.food.button": "Пуговичный гриб", + "block.beneath.mushroom.chantrelle": "Лисичка", + "item.beneath.food.chantrelle": "Лисичка", + "block.beneath.mushroom.death_cap": "Бледная поганка", + "item.beneath.food.death_cap": "Бледная поганка", + "block.beneath.mushroom.destroying_angels": "Мухомор весенний", + "item.beneath.food.destroying_angels": "Мухомор весенний", + "block.beneath.mushroom.fools_funnel": "Говорушка красноватая", + "item.beneath.food.fools_funnel": "Говорушка красноватая", + "block.beneath.mushroom.oyster": "Устричный гриб", + "item.beneath.food.oyster": "Устричный гриб", + "block.beneath.mushroom.parasol": "Гриб-зонтик", + "item.beneath.food.parasol": "Гриб-зонтик", + "block.beneath.mushroom.portobello": "Шампиньон", + "item.beneath.food.portobello": "Шампиньон", + "block.beneath.mushroom.shittake": "Шиитаке", + "item.beneath.food.shittake": "Шиитаке", + "block.beneath.mushroom.sulfur_tuft": "Гифолома пучковая", + "item.beneath.food.sulfur_tuft": "Гифолома пучковая", + "block.beneath.hellbricks": "Адские кирпичи", + "item.beneath.ghost_pepper": "Призрачный перец" +} \ No newline at end of file diff --git a/kubejs/assets/beneath/lang/zh_cn.json b/kubejs/assets/beneath/lang/zh_cn.json new file mode 100644 index 000000000..07463cb13 --- /dev/null +++ b/kubejs/assets/beneath/lang/zh_cn.json @@ -0,0 +1,21 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.beneath.blackstone_pebble": "松散辉石岩", + "block.beneath.blackstone_aqueduct": "辉石岩引水桥", + "block.beneath.loose_blackstone": "松散辉石岩", + "block.beneath.ore.nether_cursecoal": "无烟煤矿石", + "block.beneath.ore.nether_cursecoal.prospected": "无烟煤", + "block.beneath.cursecoal_pile": "无烟煤堆", + "block.beneath.ore.blackstone_sylvite": "钾石盐矿石", + "block.beneath.crackrack": "角斑岩", + "block.beneath.soul_clay": "泥泞黏土", + "block.beneath.wood.fallen_leaves.crimson": "绯红瓣叶落叶", + "block.beneath.wood.leaves.crimson": "绯红瓣叶", + "block.beneath.wood.fallen_leaves.warped": "诡异瓣叶落叶", + "block.beneath.wood.leaves.warped": "诡异瓣叶", + "item.beneath.cursed_hide": "耐火皮革", + "item.beneath.blackstone_brick": "辉石岩砖", + "item.beneath.cursecoal": "无烟煤", + "item.beneath.crackrack_rock": "角斑岩", + "item.beneath.loose_blackstone": "松散辉石岩" +} \ No newline at end of file diff --git a/kubejs/assets/betterend/blockstates/cave_bush.json b/kubejs/assets/betterend/blockstates/cave_bush.json index 3153315ea..ca13d9ffc 100644 --- a/kubejs/assets/betterend/blockstates/cave_bush.json +++ b/kubejs/assets/betterend/blockstates/cave_bush.json @@ -1,10 +1,10 @@ { "variants": { "": [ - { "model": "betterend:block/cave_bush_01", "weight": 4 }, + { "model": "betterend:block/cave_bush_01", "weight": 2 }, { "model": "betterend:block/cave_bush_02" }, - { "model": "betterend:block/cave_bush_03", "weight": 2 }, - { "model": "betterend:block/cave_bush_04", "weight": 2 } + { "model": "betterend:block/cave_bush_03" }, + { "model": "betterend:block/cave_bush_04" } ] } } diff --git a/kubejs/assets/betterend/blockstates/cave_grass.json b/kubejs/assets/betterend/blockstates/cave_grass.json index 7d18af28c..f615de18f 100644 --- a/kubejs/assets/betterend/blockstates/cave_grass.json +++ b/kubejs/assets/betterend/blockstates/cave_grass.json @@ -8,7 +8,11 @@ { "model": "betterend:block/cave_grass_05" }, { "model": "betterend:block/cave_grass_06" }, { "model": "betterend:block/cave_grass_07" }, - { "model": "betterend:block/cave_grass_08" } + { "model": "betterend:block/cave_grass_08" }, + { "model": "betterend:block/cave_grass_09" }, + { "model": "betterend:block/cave_grass_10" }, + { "model": "betterend:block/cave_grass_11" }, + { "model": "betterend:block/cave_grass_12" } ] } } diff --git a/kubejs/assets/betterend/blockstates/chorus_grass.json b/kubejs/assets/betterend/blockstates/chorus_grass.json index f9b90232d..1d38ad3ec 100644 --- a/kubejs/assets/betterend/blockstates/chorus_grass.json +++ b/kubejs/assets/betterend/blockstates/chorus_grass.json @@ -8,7 +8,9 @@ { "model": "betterend:block/chorus_grass_05" }, { "model": "betterend:block/chorus_grass_06" }, { "model": "betterend:block/chorus_grass_07" }, - { "model": "betterend:block/chorus_grass_08" } + { "model": "betterend:block/chorus_grass_08" }, + { "model": "betterend:block/chorus_grass_09" }, + { "model": "betterend:block/chorus_grass_10" } ] } } diff --git a/kubejs/assets/betterend/blockstates/clawfern.json b/kubejs/assets/betterend/blockstates/clawfern.json index f4c0ab349..d03877e01 100644 --- a/kubejs/assets/betterend/blockstates/clawfern.json +++ b/kubejs/assets/betterend/blockstates/clawfern.json @@ -2,7 +2,9 @@ "variants": { "": [ { "model": "betterend:block/clawfern_01" }, - { "model": "betterend:block/clawfern_02" } + { "model": "betterend:block/clawfern_02" }, + { "model": "betterend:block/clawfern_03" }, + { "model": "betterend:block/clawfern_04" } ] } } diff --git a/kubejs/assets/betterend/blockstates/globulagus.json b/kubejs/assets/betterend/blockstates/globulagus.json index fb41e3241..2f55e586b 100644 --- a/kubejs/assets/betterend/blockstates/globulagus.json +++ b/kubejs/assets/betterend/blockstates/globulagus.json @@ -4,7 +4,9 @@ { "model": "betterend:block/globulagus_01" }, { "model": "betterend:block/globulagus_02" }, { "model": "betterend:block/globulagus_03" }, - { "model": "betterend:block/globulagus_04" } + { "model": "betterend:block/globulagus_04" }, + { "model": "betterend:block/globulagus_05" }, + { "model": "betterend:block/globulagus_06" } ] } } diff --git a/kubejs/assets/betterend/blockstates/inflexia.json b/kubejs/assets/betterend/blockstates/inflexia.json index 2f13df959..7a3bcee0b 100644 --- a/kubejs/assets/betterend/blockstates/inflexia.json +++ b/kubejs/assets/betterend/blockstates/inflexia.json @@ -1,7 +1,10 @@ { "variants": { - "": { - "model": "betterend:block/inflexia" - } + "": [ + { "model": "betterend:block/inflexia_1" }, + { "model": "betterend:block/inflexia_2" }, + { "model": "betterend:block/inflexia_3" }, + { "model": "betterend:block/inflexia_4" } + ] } } \ No newline at end of file diff --git a/kubejs/assets/betterend/blockstates/lacugrove.json b/kubejs/assets/betterend/blockstates/lacugrove.json new file mode 100644 index 000000000..4132397f2 --- /dev/null +++ b/kubejs/assets/betterend/blockstates/lacugrove.json @@ -0,0 +1,10 @@ +{ + "variants": { + "": [ + { "model": "betterend:block/lacugrove", "y": 0 }, + { "model": "betterend:block/lacugrove", "y": 90 }, + { "model": "betterend:block/lacugrove", "y": 180 }, + { "model": "betterend:block/lacugrove", "y": 270 } + ] + } +} diff --git a/kubejs/assets/betterend/blockstates/lamellarium.json b/kubejs/assets/betterend/blockstates/lamellarium.json index 7cf50cdd6..70d644c38 100644 --- a/kubejs/assets/betterend/blockstates/lamellarium.json +++ b/kubejs/assets/betterend/blockstates/lamellarium.json @@ -4,7 +4,9 @@ { "model": "betterend:block/lamellarium_01" }, { "model": "betterend:block/lamellarium_02" }, { "model": "betterend:block/lamellarium_03" }, - { "model": "betterend:block/lamellarium_04" } + { "model": "betterend:block/lamellarium_04" }, + { "model": "betterend:block/lamellarium_05" }, + { "model": "betterend:block/lamellarium_06" } ] } } diff --git a/kubejs/assets/betterend/blockstates/lanceleaf.json b/kubejs/assets/betterend/blockstates/lanceleaf.json index 223cd09cf..35c30c34b 100644 --- a/kubejs/assets/betterend/blockstates/lanceleaf.json +++ b/kubejs/assets/betterend/blockstates/lanceleaf.json @@ -1,27 +1,9 @@ { "variants": { - "rotation=0,shape=top": { "model": "betterend:block/lanceleaf_leaf_top" }, - "rotation=0,shape=pre_top": { "model": "betterend:block/lanceleaf_leaf_pre_top" }, - "rotation=0,shape=middle": { "model": "betterend:block/lanceleaf_leaf_middle" }, - "rotation=0,shape=pre_bottom": { "model": "betterend:block/lanceleaf_leaf_pre_bottom" }, - "rotation=0,shape=bottom": { "model": "betterend:block/lanceleaf_leaf_bottom" }, - - "rotation=1,shape=top": { "model": "betterend:block/lanceleaf_leaf_top", "y": 90 }, - "rotation=1,shape=pre_top": { "model": "betterend:block/lanceleaf_leaf_pre_top", "y": 90 }, - "rotation=1,shape=middle": { "model": "betterend:block/lanceleaf_leaf_middle", "y": 90 }, - "rotation=1,shape=pre_bottom": { "model": "betterend:block/lanceleaf_leaf_pre_bottom", "y": 90 }, - "rotation=1,shape=bottom": { "model": "betterend:block/lanceleaf_leaf_bottom", "y": 90 }, - - "rotation=2,shape=top": { "model": "betterend:block/lanceleaf_leaf_top", "y": 180 }, - "rotation=2,shape=pre_top": { "model": "betterend:block/lanceleaf_leaf_pre_top", "y": 180 }, - "rotation=2,shape=middle": { "model": "betterend:block/lanceleaf_leaf_middle", "y": 180 }, - "rotation=2,shape=pre_bottom": { "model": "betterend:block/lanceleaf_leaf_pre_bottom", "y": 180 }, - "rotation=2,shape=bottom": { "model": "betterend:block/lanceleaf_leaf_bottom", "y": 180 }, - - "rotation=3,shape=top": { "model": "betterend:block/lanceleaf_leaf_top", "y": 270 }, - "rotation=3,shape=pre_top": { "model": "betterend:block/lanceleaf_leaf_pre_top", "y": 270 }, - "rotation=3,shape=middle": { "model": "betterend:block/lanceleaf_leaf_middle", "y": 270 }, - "rotation=3,shape=pre_bottom": { "model": "betterend:block/lanceleaf_leaf_pre_bottom", "y": 270 }, - "rotation=3,shape=bottom": { "model": "betterend:block/lanceleaf_leaf_bottom", "y": 270 } + "height=0": { "model": "betterend:block/lanceleaf_leaf_bottom" }, + "height=1": { "model": "betterend:block/lanceleaf_leaf_pre_bottom" }, + "height=2": { "model": "betterend:block/lanceleaf_leaf_middle" }, + "height=3": { "model": "betterend:block/lanceleaf_leaf_pre_top" }, + "height=4": { "model": "betterend:block/lanceleaf_leaf_top" } } } diff --git a/kubejs/assets/betterend/blockstates/lanceleaf_seed.json b/kubejs/assets/betterend/blockstates/lanceleaf_seed.json deleted file mode 100644 index 59db3a5d2..000000000 --- a/kubejs/assets/betterend/blockstates/lanceleaf_seed.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "variants": { - "age=0": { "model": "betterend:block/lanceleaf_seed_0" }, - "age=1": { "model": "betterend:block/lanceleaf_seed_1" }, - "age=2": { "model": "betterend:block/lanceleaf_seed_2" }, - "age=3": { "model": "betterend:block/lanceleaf_seed_3" } - } -} diff --git a/kubejs/assets/betterend/blockstates/lanceleaf_small.json b/kubejs/assets/betterend/blockstates/lanceleaf_small.json new file mode 100644 index 000000000..9a95704b6 --- /dev/null +++ b/kubejs/assets/betterend/blockstates/lanceleaf_small.json @@ -0,0 +1,10 @@ +{ + "variants": { + "": [ + { "model": "betterend:block/lanceleaf_seed_0" }, + { "model": "betterend:block/lanceleaf_seed_1" }, + { "model": "betterend:block/lanceleaf_seed_2" }, + { "model": "betterend:block/lanceleaf_seed_3" } + ] + } +} diff --git a/kubejs/assets/betterend/blockstates/large_amaranita_mushroom.json b/kubejs/assets/betterend/blockstates/large_amaranita_mushroom.json index 6fbef92b0..a169a659d 100644 --- a/kubejs/assets/betterend/blockstates/large_amaranita_mushroom.json +++ b/kubejs/assets/betterend/blockstates/large_amaranita_mushroom.json @@ -1,7 +1,9 @@ { "variants": { - "shape=top": { "model": "betterend:block/large_amaranita_cap" }, - "shape=middle": { "model": "betterend:block/large_amaranita_stem" }, - "shape=bottom": { "model": "betterend:block/large_amaranita_roots" } + "height=0": { "model": "betterend:block/large_amaranita_roots" }, + "height=1": { "model": "betterend:block/large_amaranita_stem" }, + "height=2": { "model": "betterend:block/large_amaranita_cap" }, + "height=3": { "model": "" }, + "height=4": { "model": "" } } } diff --git a/kubejs/assets/betterend/blockstates/lucernia_leaves.json b/kubejs/assets/betterend/blockstates/lucernia_leaves.json new file mode 100644 index 000000000..f77a5f66b --- /dev/null +++ b/kubejs/assets/betterend/blockstates/lucernia_leaves.json @@ -0,0 +1,10 @@ +{ + "variants": { + "": [ + { "model": "betterend:block/lucernia_leaves_1" }, + { "model": "betterend:block/lucernia_leaves_2" }, + { "model": "betterend:block/lucernia_leaves_3" }, + { "model": "betterend:block/lucernia_leaves_4" } + ] + } +} diff --git a/kubejs/assets/betterend/blockstates/lucernia_outer_leaves.json b/kubejs/assets/betterend/blockstates/lucernia_outer_leaves.json new file mode 100644 index 000000000..0b599ece9 --- /dev/null +++ b/kubejs/assets/betterend/blockstates/lucernia_outer_leaves.json @@ -0,0 +1,12 @@ +{ + "variants": { + "": [ + { "model": "betterend:block/lucernia_outer_leaves_1" }, + { "model": "betterend:block/lucernia_outer_leaves_2" }, + { "model": "betterend:block/lucernia_outer_leaves_3" }, + { "model": "betterend:block/lucernia_outer_leaves_4" }, + { "model": "betterend:block/lucernia_outer_leaves_5" }, + { "model": "betterend:block/lucernia_outer_leaves_6" } + ] + } +} diff --git a/kubejs/assets/betterend/blockstates/vaiolush_fern.json b/kubejs/assets/betterend/blockstates/vaiolush_fern.json index a058f6831..8c5d1aa50 100644 --- a/kubejs/assets/betterend/blockstates/vaiolush_fern.json +++ b/kubejs/assets/betterend/blockstates/vaiolush_fern.json @@ -4,7 +4,9 @@ { "model": "betterend:block/vaiolush_fern_01" }, { "model": "betterend:block/vaiolush_fern_02" }, { "model": "betterend:block/vaiolush_fern_03" }, - { "model": "betterend:block/vaiolush_fern_04" } + { "model": "betterend:block/vaiolush_fern_04" }, + { "model": "betterend:block/vaiolush_fern_05" }, + { "model": "betterend:block/vaiolush_fern_06" } ] } } diff --git a/kubejs/assets/betterend/lang/en_us.json b/kubejs/assets/betterend/lang/en_us.json index e11658dc2..94bc9cf20 100644 --- a/kubejs/assets/betterend/lang/en_us.json +++ b/kubejs/assets/betterend/lang/en_us.json @@ -15,7 +15,9 @@ "block.betterend.bolux_mushroom_wild": "Wild Bolux Mushroom Colony", "block.betterend.bolux_mushroom_dead": "Dead Bolux Mushroom Colony", "block.betterend.bushy_grass": "Novagrass", - "block.betterend.cave_bush": "Carmine Bush", + "block.betterend.bulb_moss": "Bulb Moss", + "block.betterend.cave_bush": "Carmine Lamella", + "block.betterend.cave_bush_fallen": "Small Carmine Lamella", "block.betterend.cave_grass": "Vermilligma", "block.betterend.cave_pumpkin": "Bulbkin", "block.betterend.cave_pumpkin_wild": "Wild Bulbkin Stem", @@ -48,10 +50,14 @@ "block.betterend.hydralux": "Hydralux", "block.betterend.hydralux_sapling": "Hydralux Sprout", "block.betterend.inflexia": "Inflexia", + "block.betterend.lacugrove": "Lacugrove Algae", "block.betterend.lamellarium": "Lamellarium", "block.betterend.lanceleaf": "Lanceleaf", - "block.betterend.lanceleaf_seed": "Lanceleaf Dagger", + "block.betterend.lanceleaf_small": "Lanceleaf Dagger", "block.betterend.large_amaranita_mushroom": "Large Amaranita Mushroom", + "block.betterend.lucernia_leaves": "Lucernia Lamella", + "block.betterend.lucernia_leaves_fallen": "Small Lucernia Lamella", + "block.betterend.lucernia_outer_leaves": "Lucernia Hyphae", "block.betterend.lutebus": "Lutebus", "block.betterend.magnula": "Magnula", "block.betterend.nightshade_moss": "Nox Moss", diff --git a/kubejs/assets/betterend/lang/ru_ru.json b/kubejs/assets/betterend/lang/ru_ru.json new file mode 100644 index 000000000..d37b6161a --- /dev/null +++ b/kubejs/assets/betterend/lang/ru_ru.json @@ -0,0 +1,94 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.betterend.aeridium": "Аэридиум", + "block.betterend.amaranita_stem": "Стебель амаранита", + "block.betterend.amber_grass": "Янтарная трава", + "block.betterend.amber_root_wild": "Дикорастущие янтарные ростки", + "block.betterend.amber_root_dead": "Погибшие янтарные ростки", + "block.betterend.amber_root": "Янтарные ростки", + "block.betterend.aurant_polypore": "Аурантовый трутовик", + "block.betterend.blooming_cooksonia": "Цветущая куксония", + "block.betterend.blossom_berry": "Цветущая ягода", + "block.betterend.blossom_berry_wild": "Дикорастущая цветущая ягода", + "block.betterend.blossom_berry_dead": "Погибшая цветущая ягода", + "block.betterend.bolux_mushroom": "Колония грибов болюкс", + "block.betterend.bolux_mushroom_wild": "Дикорастущая колония грибов болюкс", + "block.betterend.bolux_mushroom_dead": "Погибшая колония грибов болюкс", + "block.betterend.bushy_grass": "Новотрава", + "block.betterend.cave_bush": "Карминовый куст", + "block.betterend.cave_grass": "Вермиллигма", + "block.betterend.cave_pumpkin": "Булбкин", + "block.betterend.cave_pumpkin_wild": "Дикорастущий стебель булбкин", + "block.betterend.cave_pumpkin_dead": "Погибший стебель булбкин", + "block.betterend.cave_pumpkin_plant": "Стебель булбкина", + "block.betterend.charnia_cyan": "Циановая чарния", + "block.betterend.charnia_green": "Зелёная чарния", + "block.betterend.charnia_light_blue": "Голубая чарния", + "block.betterend.charnia_orange": "Оранжевая чарния", + "block.betterend.charnia_purple": "Пурпурная чарния", + "block.betterend.charnia_red": "Красная чарния", + "block.betterend.chorus_grass": "Трава хоруса", + "block.betterend.chorus_lily": "Лилия хоруса", + "block.betterend.chorus_mushroom": "Колония грибов чашцелий", + "block.betterend.chorus_mushroom_wild": "Дикорастущая колония грибов чашцелий", + "block.betterend.chorus_mushroom_dead": "Погибшая колония грибов чашцелий", + "block.betterend.clawfern": "Когтелист", + "block.betterend.crystal_grass": "Кристальная трава", + "block.betterend.end_lily": "Лилия деймоса", + "block.betterend.end_lily_seed": "Отросток лилии деймоса", + "block.betterend.end_lotus_flower": "Цветок фобоса лотоса", + "block.betterend.end_lotus_leaf": "Лист фобоса лотоса", + "block.betterend.end_lotus_stem": "Стебель фобоса лотоса", + "block.betterend.end_lotus_seed": "Отросток фобоса лотоса", + "block.betterend.filalux_wings": "Филалюксовые крылья", + "block.betterend.flamaea": "Гриб фламея", + "block.betterend.flammalix": "Гриб фламмаликс", + "block.betterend.fracturn": "Фрактюрн", + "block.betterend.globulagus": "Глобулагус", + "block.betterend.hydralux": "Гидралюкс", + "block.betterend.hydralux_sapling": "Отросток гидралюкса", + "block.betterend.inflexia": "Инфлексия", + "block.betterend.lamellarium": "Ламеллариум", + "block.betterend.lanceleaf": "Ланцелист", + "block.betterend.lanceleaf_small": "Кинжал ланцелиста", + "block.betterend.large_amaranita_mushroom": "Большой гриб амаранит", + "block.betterend.lutebus": "Лютебус", + "block.betterend.magnula": "Магнула", + "block.betterend.nightshade_moss": "Мох нокс", + "block.betterend.orango": "Оранго", + "block.betterend.pond_anemone": "Анемон", + "block.betterend.purple_polypore": "Пурпурный трутовик", + "block.betterend.rubinea": "Рубинея", + "block.betterend.ruscus": "Трава руксус", + "block.betterend.salteago": "Сальтеаго", + "block.betterend.shadow_berry": "Нокс-ягода", + "block.betterend.shadow_berry_wild": "Дикорастущая нокс-ягода", + "block.betterend.shadow_berry_dead": "Погибшая нокс-ягода", + "block.betterend.small_amaranita_mushroom": "Маленький гриб амаранит", + "block.betterend.twisted_moss": "Закрученный мох", + "block.betterend.twisted_umbrella_moss": "Закрученный зонтичный мох", + "block.betterend.twisted_umbrella_moss_tall": "Закрученный зонтичный мох", + "block.betterend.twisted_vine": "Закрученная лоза", + "block.betterend.umbrella_moss": "Зонтичный мох", + "block.betterend.umbrella_moss_tall": "Зонтичный мох", + "block.betterend.vaiolush_fern": "Пышнопёрый папоротник", + "item.betterend.amber_root_product": "Янтарные ростки", + "item.betterend.amber_root_seeds": "Семена янтарных ростков", + "item.betterend.blossom_berry_product": "Цветущая ягода", + "item.betterend.blossom_berry_seeds": "Семена цветущей ягоды", + "item.betterend.bolux_mushroom_cooked": "Приготовленный гриб болюкс", + "item.betterend.bolux_mushroom_product": "Гриб болюкс", + "item.betterend.bolux_mushroom_seeds": "Споры гриба болюкса", + "item.betterend.cave_pumpkin_chunks": "Булбкиная мякоть", + "item.betterend.cave_pumpkin_product": "Булбкин", + "item.betterend.cave_pumpkin_plant_seeds": "Семена булбкина", + "item.betterend.cave_pumpkin_pie_dough": "Тесто для булбкиного пирога", + "item.betterend.cave_pumpkin_pie_raw": "Несъедобный булбкиный пирог", + "item.betterend.cave_pumpkin_pie": "Булбкиный пирог", + "item.betterend.chorus_mushroom_cooked": "Приготовленный гриб чашцелий", + "item.betterend.chorus_mushroom_product": "Гриб чашцелий", + "item.betterend.chorus_mushroom_seeds": "Споры гриба чашцелия", + "item.betterend.shadow_berry_cooked": "Приготовленная нокс-ягода", + "item.betterend.shadow_berry_product": "Нокс-ягода", + "item.betterend.shadow_berry_seeds": "Семена нокс-ягоды" +} \ No newline at end of file diff --git a/kubejs/assets/betterend/lang/uk_ua.json b/kubejs/assets/betterend/lang/uk_ua.json index d3c47af1c..b564fcfa8 100644 --- a/kubejs/assets/betterend/lang/uk_ua.json +++ b/kubejs/assets/betterend/lang/uk_ua.json @@ -15,7 +15,8 @@ "block.betterend.bolux_mushroom_wild": "Дика колонія грибів Болукса", "block.betterend.bolux_mushroom_dead": "Мертва колонія грибів Болукса", "block.betterend.bushy_grass": "Новаграс", - "block.betterend.cave_bush": "Кущ Карміну", + "block.betterend.cave_bush": "Карминова Ламель", + "block.betterend.cave_bush_fallen": "Мала Карминова Ламель", "block.betterend.cave_grass": "Вермілігма", "block.betterend.cave_pumpkin": "Балбкін", "block.betterend.cave_pumpkin_wild": "Стебло дикого Булбкіна", @@ -50,8 +51,11 @@ "block.betterend.inflexia": "Інфлексія", "block.betterend.lamellarium": "Ламелларіум", "block.betterend.lanceleaf": "Ланцелист", - "block.betterend.lanceleaf_seed": "Кинджал Ланцелиста", + "block.betterend.lanceleaf_small": "Кинджал Ланцелиста", "block.betterend.large_amaranita_mushroom": "Великий гриб Амараніта", + "block.betterend.lucernia_leaves": "Ламель Люцернії", + "block.betterend.lucernia_leaves_fallen": "Мала Ламель Люцернії", + "block.betterend.lucernia_outer_leaves": "Гіфи Люцернії", "block.betterend.lutebus": "Лутебус", "block.betterend.magnula": "Магнула", "block.betterend.nightshade_moss": "Мох Нокс", @@ -72,17 +76,23 @@ "block.betterend.umbrella_moss": "Парасолькоподібний мох", "block.betterend.umbrella_moss_tall": "Парасолькоподібний мох", "block.betterend.vaiolush_fern": "Папороть Вайолаш", - "item.create.netherite_diving_helmet.tooltip.summary": "Разом з _Blue Steel Backtank_, це може захистити вас від _extreme heat_. Щоб бути ефективними, _Legs and Feet_ повинні бути вкриті _Blue Steel Diving Equipment_, також.", - "item.create.netherite_backtank": "Бактанк із Синьої Сталі", - "item.create.netherite_diving_helmet": "Шолом для Дайвінгу із Синьої Сталі", - "item.create.netherite_diving_boots": "Черевики для Дайвінгу із Синьої Сталі", - "item.create.copper_sheet": "Мідна пластина", - "item.create.brass_sheet": "Латунна пластина", - "item.create.golden_sheet": "Золотий лист", - "item.create.crushed_raw_gold": "Очищена Золота Руда", - "item.create.crushed_raw_copper": "Очищена Мідна Руда", - "item.create.crushed_raw_zinc": "Очищена Цинкова Руда", - "item.create.crushed_raw_silver": "Очищена Срібна Руда", - "item.create.crushed_raw_tin": "Очищена Олов'яна Руда", - "item.create.crushed_raw_lead": "Очищена Свинцева Руда" + "item.betterend.amber_root_product": "Бурштинові паростки", + "item.betterend.amber_root_seeds": "Насіння Бурштинових Паростків", + "item.betterend.blossom_berry_product": "Цвіт ягод", + "item.betterend.blossom_berry_seeds": "Насіння Ягід Квітучого Куща", + "item.betterend.bolux_mushroom_cooked": "Приготований Гриб Болукс", + "item.betterend.bolux_mushroom_product": "Гриб Болукс", + "item.betterend.bolux_mushroom_seeds": "Спори гриба Болукс", + "item.betterend.cave_pumpkin_chunks": "Шматки Балбкина", + "item.betterend.cave_pumpkin_product": "Балбкін", + "item.betterend.cave_pumpkin_plant_seeds": "Насіння Балбкина", + "item.betterend.cave_pumpkin_pie_dough": "Тісто для Пирога з Бульбкина", + "item.betterend.cave_pumpkin_pie_raw": "Сирий Пиріг з Бульбкина", + "item.betterend.cave_pumpkin_pie": "Пиріг із Балбкина", + "item.betterend.chorus_mushroom_cooked": "Приготований гриб Чалмі", + "item.betterend.chorus_mushroom_product": "Гриб Чалмі", + "item.betterend.chorus_mushroom_seeds": "Спори гриба Чалмі", + "item.betterend.shadow_berry_cooked": "Приготована ягода Нокс", + "item.betterend.shadow_berry_product": "Ягода Нокс", + "item.betterend.shadow_berry_seeds": "Насіння яглди Нокс" } \ No newline at end of file diff --git a/kubejs/assets/betterend/lang/zh_cn.json b/kubejs/assets/betterend/lang/zh_cn.json new file mode 100644 index 000000000..b96247b0e --- /dev/null +++ b/kubejs/assets/betterend/lang/zh_cn.json @@ -0,0 +1,100 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.betterend.aeridium": "空界草", + "block.betterend.amaranita_stem": "紫荆菌柄", + "block.betterend.amber_grass": "琥珀草", + "block.betterend.amber_root_wild": "野生琥珀根", + "block.betterend.amber_root_dead": "枯萎的琥珀根", + "block.betterend.amber_root": "琥珀根", + "block.betterend.aurant_polypore": "金橙孔菌", + "block.betterend.blooming_cooksonia": "盛放的库克逊蕨", + "block.betterend.blossom_berry": "百花果", + "block.betterend.blossom_berry_wild": "野生百花果", + "block.betterend.blossom_berry_dead": "枯萎的百花果", + "block.betterend.bolux_mushroom": "波鲁克斯菌丛", + "block.betterend.bolux_mushroom_wild": "野生波鲁克斯菌丛", + "block.betterend.bolux_mushroom_dead": "枯萎的波鲁克斯菌丛", + "block.betterend.bushy_grass": "新星草", + "block.betterend.cave_bush": "朱红瓣叶", + "block.betterend.cave_grass": "朱砂藓", + "block.betterend.cave_pumpkin": "球茎南瓜", + "block.betterend.cave_pumpkin_wild": "野生球茎藤", + "block.betterend.cave_pumpkin_dead": "枯萎的球茎藤", + "block.betterend.cave_pumpkin_plant": "球茎藤", + "block.betterend.charnia_cyan": "青碧查尼藻", + "block.betterend.charnia_green": "翠绿查尼藻", + "block.betterend.charnia_light_blue": "水蓝查尼藻", + "block.betterend.charnia_orange": "橙黄查尼藻", + "block.betterend.charnia_purple": "紫晶查尼藻", + "block.betterend.charnia_red": "赤焰查尼藻", + "block.betterend.chorus_grass": "紫颂草", + "block.betterend.chorus_lily": "紫颂百合", + "block.betterend.chorus_mushroom": "查尔米菌丛", + "block.betterend.chorus_mushroom_wild": "野生查尔米菌丛", + "block.betterend.chorus_mushroom_dead": "枯萎的查尔米菌丛", + "block.betterend.clawfern": "兽爪蕨", + "block.betterend.crystal_grass": "晶光草", + "block.betterend.end_lily": "戴摩斯花", + "block.betterend.end_lily_seed": "戴摩斯花苗", + "block.betterend.end_lotus_flower": "福柏斯莲", + "block.betterend.end_lotus_leaf": "福柏斯莲叶", + "block.betterend.end_lotus_stem": "福柏斯莲茎", + "block.betterend.end_lotus_seed": "福柏斯莲苗", + "block.betterend.filalux_wings": "丝光翅叶", + "block.betterend.flamaea": "焰心菇", + "block.betterend.flammalix": "焰顶菇", + "block.betterend.fracturn": "碎晶蕨", + "block.betterend.globulagus": "球囊藻", + "block.betterend.hydralux": "水光莲", + "block.betterend.hydralux_sapling": "水光莲苗", + "block.betterend.inflexia": "曲枝草", + "block.betterend.lamellarium": "叠层藻", + "block.betterend.lanceleaf": "矛叶草", + "block.betterend.lanceleaf_small": "矛叶刃", + "block.betterend.large_amaranita_mushroom": "大紫荆菇", + "block.betterend.lutebus": "琉特草", + "block.betterend.magnula": "磁光草", + "block.betterend.nightshade_moss": "夜影苔", + "block.betterend.orango": "橙光菇", + "block.betterend.pond_anemone": "水葵", + "block.betterend.purple_polypore": "紫孔菌", + "block.betterend.rubinea": "红玉草", + "block.betterend.ruscus": "假叶草", + "block.betterend.salteago": "盐晶草", + "block.betterend.shadow_berry": "夜影浆果", + "block.betterend.shadow_berry_wild": "野生夜影浆果", + "block.betterend.shadow_berry_dead": "枯萎的夜影浆果", + "block.betterend.small_amaranita_mushroom": " 赤星青茎菇", + "block.betterend.twisted_moss": "缠结苔", + "block.betterend.twisted_umbrella_moss": "缠结伞苔", + "block.betterend.twisted_umbrella_moss_tall": "高缠结伞苔", + "block.betterend.twisted_vine": "缠结藤", + "block.betterend.umbrella_moss": "伞苔", + "block.betterend.umbrella_moss_tall": "高伞苔", + "block.betterend.vaiolush_fern": "幽蓝蕨", + "block.betterend.cave_bush_fallen": "小型朱红瓣叶", + "block.betterend.lucernia_leaves": "卢瑟尼亚瓣叶", + "block.betterend.lucernia_leaves_fallen": "小型卢瑟尼亚瓣叶", + "block.betterend.lucernia_outer_leaves": "卢瑟尼亚菌核", + "block.betterend.bulb_moss": "球茎苔", + "block.betterend.lacugrove": "泊林木海藻", + "item.betterend.amber_root_product": "琥珀新芽", + "item.betterend.amber_root_seeds": "琥珀新芽种子", + "item.betterend.blossom_berry_product": "百花果", + "item.betterend.blossom_berry_seeds": "百花果树种", + "item.betterend.bolux_mushroom_cooked": "熟波鲁克斯菌", + "item.betterend.bolux_mushroom_product": "波鲁克斯菌", + "item.betterend.bolux_mushroom_seeds": "波鲁克斯菌孢子", + "item.betterend.cave_pumpkin_chunks": "球茎南瓜块", + "item.betterend.cave_pumpkin_product": "球茎南瓜", + "item.betterend.cave_pumpkin_plant_seeds": "球茎南瓜种子", + "item.betterend.cave_pumpkin_pie_dough": "球茎南瓜派面团", + "item.betterend.cave_pumpkin_pie_raw": "生球茎南瓜派", + "item.betterend.cave_pumpkin_pie": "球茎南瓜派", + "item.betterend.chorus_mushroom_cooked": "熟查尔米菌", + "item.betterend.chorus_mushroom_product": "查尔米菌", + "item.betterend.chorus_mushroom_seeds": "查尔米菌孢子", + "item.betterend.shadow_berry_cooked": "熟夜影浆果", + "item.betterend.shadow_berry_product": "夜影浆果", + "item.betterend.shadow_berry_seeds": "夜影浆果种子" +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/cave_grass_09.json b/kubejs/assets/betterend/models/block/cave_grass_09.json new file mode 100644 index 000000000..618a68dc6 --- /dev/null +++ b/kubejs/assets/betterend/models/block/cave_grass_09.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cross", + "textures": { + "cross": "betterend:block/cave_grass_potted" + } +} diff --git a/kubejs/assets/betterend/models/block/cave_grass_10.json b/kubejs/assets/betterend/models/block/cave_grass_10.json new file mode 100644 index 000000000..618a68dc6 --- /dev/null +++ b/kubejs/assets/betterend/models/block/cave_grass_10.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cross", + "textures": { + "cross": "betterend:block/cave_grass_potted" + } +} diff --git a/kubejs/assets/betterend/models/block/cave_grass_11.json b/kubejs/assets/betterend/models/block/cave_grass_11.json new file mode 100644 index 000000000..8d7051abf --- /dev/null +++ b/kubejs/assets/betterend/models/block/cave_grass_11.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/cross_inverted", + "textures": { + "cross": "betterend:block/cave_grass_potted" + } +} diff --git a/kubejs/assets/betterend/models/block/cave_grass_12.json b/kubejs/assets/betterend/models/block/cave_grass_12.json new file mode 100644 index 000000000..8d7051abf --- /dev/null +++ b/kubejs/assets/betterend/models/block/cave_grass_12.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/cross_inverted", + "textures": { + "cross": "betterend:block/cave_grass_potted" + } +} diff --git a/kubejs/assets/betterend/models/block/chorus_grass_09.json b/kubejs/assets/betterend/models/block/chorus_grass_09.json new file mode 100644 index 000000000..f7a83d0c4 --- /dev/null +++ b/kubejs/assets/betterend/models/block/chorus_grass_09.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cross", + "textures": { + "cross": "betterend:block/chorus_grass_potted" + } +} diff --git a/kubejs/assets/betterend/models/block/chorus_grass_10.json b/kubejs/assets/betterend/models/block/chorus_grass_10.json new file mode 100644 index 000000000..08172f7d2 --- /dev/null +++ b/kubejs/assets/betterend/models/block/chorus_grass_10.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/crop_block", + "textures": { + "texture": "betterend:block/chorus_grass_potted" + } +} diff --git a/kubejs/assets/betterend/models/block/clawfern_03.json b/kubejs/assets/betterend/models/block/clawfern_03.json new file mode 100644 index 000000000..9ac28aa57 --- /dev/null +++ b/kubejs/assets/betterend/models/block/clawfern_03.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cross", + "textures": { + "cross": "betterend:block/clawfern_potted" + } +} diff --git a/kubejs/assets/betterend/models/block/clawfern_04.json b/kubejs/assets/betterend/models/block/clawfern_04.json new file mode 100644 index 000000000..c2df60cad --- /dev/null +++ b/kubejs/assets/betterend/models/block/clawfern_04.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/cross_inverted", + "textures": { + "cross": "betterend:block/clawfern_potted" + } +} diff --git a/kubejs/assets/betterend/models/block/globulagus_05.json b/kubejs/assets/betterend/models/block/globulagus_05.json new file mode 100644 index 000000000..c028d9afb --- /dev/null +++ b/kubejs/assets/betterend/models/block/globulagus_05.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cross", + "textures": { + "cross": "betterend:block/globulagus_potted" + } +} diff --git a/kubejs/assets/betterend/models/block/globulagus_06.json b/kubejs/assets/betterend/models/block/globulagus_06.json new file mode 100644 index 000000000..b6821ea3e --- /dev/null +++ b/kubejs/assets/betterend/models/block/globulagus_06.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/cross_inverted", + "textures": { + "cross": "betterend:block/globulagus_potted" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/inflexia.json b/kubejs/assets/betterend/models/block/inflexia_1.json similarity index 100% rename from kubejs/assets/betterend/models/block/inflexia.json rename to kubejs/assets/betterend/models/block/inflexia_1.json diff --git a/kubejs/assets/betterend/models/block/inflexia_2.json b/kubejs/assets/betterend/models/block/inflexia_2.json new file mode 100644 index 000000000..8262d772e --- /dev/null +++ b/kubejs/assets/betterend/models/block/inflexia_2.json @@ -0,0 +1,8 @@ +{ + "parent": "betterend:block/cross_inverted", + "render_type": "cutout_mipped", + "textures": { + "cross": "betterend:block/inflexia", + "particle": "betterend:block/inflexia" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/inflexia_3.json b/kubejs/assets/betterend/models/block/inflexia_3.json new file mode 100644 index 000000000..2dc943f68 --- /dev/null +++ b/kubejs/assets/betterend/models/block/inflexia_3.json @@ -0,0 +1,8 @@ +{ + "parent": "betterend:block/cross_inverted", + "render_type": "cutout_mipped", + "textures": { + "cross": "betterend:block/inflexia_potted", + "particle": "betterend:block/inflexia_potted" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/inflexia_4.json b/kubejs/assets/betterend/models/block/inflexia_4.json new file mode 100644 index 000000000..d8d503b87 --- /dev/null +++ b/kubejs/assets/betterend/models/block/inflexia_4.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cross", + "render_type": "cutout_mipped", + "textures": { + "cross": "betterend:block/inflexia_potted", + "particle": "betterend:block/inflexia_potted" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/lacugrove.json b/kubejs/assets/betterend/models/block/lacugrove.json new file mode 100644 index 000000000..fc3dd601f --- /dev/null +++ b/kubejs/assets/betterend/models/block/lacugrove.json @@ -0,0 +1,37 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "betterend:block/lacugrove_leaves", + "layer0": "betterend:block/lacugrove_leaves" + }, + "elements": [ + { + "from": [ -0.02, 0.05, -0.02 ], + "to": [ 16.02, 0.05, 16.02 ], + "faces": { + "up": { + "uv": [ 0, 0, 16, 16 ], + "texture": "#layer0" + }, + "down": { + "uv": [ 0, 16, 16, 0 ], + "texture": "#layer0" + } + } + }, + { + "from": [ 1, 1, 1 ], + "to": [ 15, 1, 15 ], + "faces": { + "up": { + "uv": [ 16, 16, 0, 0 ], + "texture": "#layer0" + }, + "down": { + "uv": [ 16, 0, 0, 16 ], + "texture": "#layer0" + } + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/lamellarium_05.json b/kubejs/assets/betterend/models/block/lamellarium_05.json new file mode 100644 index 000000000..d36584d82 --- /dev/null +++ b/kubejs/assets/betterend/models/block/lamellarium_05.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cross", + "textures": { + "cross": "betterend:block/lamellarium_potted" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/lamellarium_06.json b/kubejs/assets/betterend/models/block/lamellarium_06.json new file mode 100644 index 000000000..5b97b6c2d --- /dev/null +++ b/kubejs/assets/betterend/models/block/lamellarium_06.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/cross_inverted", + "textures": { + "cross": "betterend:block/lamellarium_potted" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/lanceleaf_seed_0.json b/kubejs/assets/betterend/models/block/lanceleaf_seed_0.json index 4ca789a35..7b9518807 100644 --- a/kubejs/assets/betterend/models/block/lanceleaf_seed_0.json +++ b/kubejs/assets/betterend/models/block/lanceleaf_seed_0.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/cross", "textures": { - "texture": "betterend:block/lanceleaf_seed_0" + "cross": "betterend:block/lanceleaf_seed_0" } } \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/lanceleaf_seed_1.json b/kubejs/assets/betterend/models/block/lanceleaf_seed_1.json index 342f6cbf6..6e83b3114 100644 --- a/kubejs/assets/betterend/models/block/lanceleaf_seed_1.json +++ b/kubejs/assets/betterend/models/block/lanceleaf_seed_1.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/cross", "textures": { - "texture": "betterend:block/lanceleaf_seed_1" + "cross": "betterend:block/lanceleaf_seed_1" } } \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/lanceleaf_seed_2.json b/kubejs/assets/betterend/models/block/lanceleaf_seed_2.json index 10ca2a8a8..d81890c46 100644 --- a/kubejs/assets/betterend/models/block/lanceleaf_seed_2.json +++ b/kubejs/assets/betterend/models/block/lanceleaf_seed_2.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/cross", "textures": { - "texture": "betterend:block/lanceleaf_seed_2" + "cross": "betterend:block/lanceleaf_seed_2" } } \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/lanceleaf_seed_3.json b/kubejs/assets/betterend/models/block/lanceleaf_seed_3.json index faae17be0..2f70d6dd9 100644 --- a/kubejs/assets/betterend/models/block/lanceleaf_seed_3.json +++ b/kubejs/assets/betterend/models/block/lanceleaf_seed_3.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/cross", "textures": { - "texture": "betterend:block/lanceleaf_seed_3" + "cross": "betterend:block/lanceleaf_seed_3" } } \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/lucernia_leaves_1.json b/kubejs/assets/betterend/models/block/lucernia_leaves_1.json new file mode 100644 index 000000000..8622ebb51 --- /dev/null +++ b/kubejs/assets/betterend/models/block/lucernia_leaves_1.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "betterend:block/lucernia_leaves_1" + } +} diff --git a/kubejs/assets/betterend/models/block/lucernia_leaves_2.json b/kubejs/assets/betterend/models/block/lucernia_leaves_2.json new file mode 100644 index 000000000..3eccb21b2 --- /dev/null +++ b/kubejs/assets/betterend/models/block/lucernia_leaves_2.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "betterend:block/lucernia_leaves_2" + } +} diff --git a/kubejs/assets/betterend/models/block/lucernia_leaves_3.json b/kubejs/assets/betterend/models/block/lucernia_leaves_3.json new file mode 100644 index 000000000..d522ecc20 --- /dev/null +++ b/kubejs/assets/betterend/models/block/lucernia_leaves_3.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "betterend:block/lucernia_leaves_3" + } +} diff --git a/kubejs/assets/betterend/models/block/lucernia_leaves_4.json b/kubejs/assets/betterend/models/block/lucernia_leaves_4.json new file mode 100644 index 000000000..de57ae628 --- /dev/null +++ b/kubejs/assets/betterend/models/block/lucernia_leaves_4.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "betterend:block/lucernia_leaves_4" + } +} diff --git a/kubejs/assets/betterend/models/block/lucernia_outer_leaves_1.json b/kubejs/assets/betterend/models/block/lucernia_outer_leaves_1.json new file mode 100644 index 000000000..7a945d3ea --- /dev/null +++ b/kubejs/assets/betterend/models/block/lucernia_outer_leaves_1.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cross", + "textures": { + "cross": "betterend:block/lucernia_outer_leaves_1" + } +} diff --git a/kubejs/assets/betterend/models/block/lucernia_outer_leaves_2.json b/kubejs/assets/betterend/models/block/lucernia_outer_leaves_2.json new file mode 100644 index 000000000..75bd603b6 --- /dev/null +++ b/kubejs/assets/betterend/models/block/lucernia_outer_leaves_2.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/cross_inverted", + "textures": { + "cross": "betterend:block/lucernia_outer_leaves_1" + } +} diff --git a/kubejs/assets/betterend/models/block/lucernia_outer_leaves_3.json b/kubejs/assets/betterend/models/block/lucernia_outer_leaves_3.json new file mode 100644 index 000000000..d06c662b4 --- /dev/null +++ b/kubejs/assets/betterend/models/block/lucernia_outer_leaves_3.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cross", + "textures": { + "cross": "betterend:block/lucernia_outer_leaves_2" + } +} diff --git a/kubejs/assets/betterend/models/block/lucernia_outer_leaves_4.json b/kubejs/assets/betterend/models/block/lucernia_outer_leaves_4.json new file mode 100644 index 000000000..de40ca546 --- /dev/null +++ b/kubejs/assets/betterend/models/block/lucernia_outer_leaves_4.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/cross_inverted", + "textures": { + "cross": "betterend:block/lucernia_outer_leaves_2" + } +} diff --git a/kubejs/assets/betterend/models/block/lucernia_outer_leaves_5.json b/kubejs/assets/betterend/models/block/lucernia_outer_leaves_5.json new file mode 100644 index 000000000..9e4542777 --- /dev/null +++ b/kubejs/assets/betterend/models/block/lucernia_outer_leaves_5.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cross", + "textures": { + "cross": "betterend:block/lucernia_outer_leaves_3" + } +} diff --git a/kubejs/assets/betterend/models/block/lucernia_outer_leaves_6.json b/kubejs/assets/betterend/models/block/lucernia_outer_leaves_6.json new file mode 100644 index 000000000..eb37c1c14 --- /dev/null +++ b/kubejs/assets/betterend/models/block/lucernia_outer_leaves_6.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/cross_inverted", + "textures": { + "cross": "betterend:block/lucernia_outer_leaves_3" + } +} diff --git a/kubejs/assets/betterend/models/block/vaiolush_fern_05.json b/kubejs/assets/betterend/models/block/vaiolush_fern_05.json new file mode 100644 index 000000000..5a915f548 --- /dev/null +++ b/kubejs/assets/betterend/models/block/vaiolush_fern_05.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cross", + "textures": { + "cross": "betterend:block/vaiolush_fern_potted" + } +} diff --git a/kubejs/assets/betterend/models/block/vaiolush_fern_06.json b/kubejs/assets/betterend/models/block/vaiolush_fern_06.json new file mode 100644 index 000000000..253271cee --- /dev/null +++ b/kubejs/assets/betterend/models/block/vaiolush_fern_06.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/cross_inverted", + "textures": { + "cross": "betterend:block/vaiolush_fern_potted" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/item/cave_bush_fallen.json b/kubejs/assets/betterend/models/item/cave_bush_fallen.json new file mode 100644 index 000000000..c643bf9ac --- /dev/null +++ b/kubejs/assets/betterend/models/item/cave_bush_fallen.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "betterend:block/cave_bush_leaves_1" + } +} diff --git a/kubejs/assets/betterend/models/item/lacugrove.json b/kubejs/assets/betterend/models/item/lacugrove.json new file mode 100644 index 000000000..68a19bcd5 --- /dev/null +++ b/kubejs/assets/betterend/models/item/lacugrove.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "betterend:block/lacugrove_leaves" + } +} diff --git a/kubejs/assets/betterend/models/item/lanceleaf.json b/kubejs/assets/betterend/models/item/lanceleaf.json new file mode 100644 index 000000000..05ee66024 --- /dev/null +++ b/kubejs/assets/betterend/models/item/lanceleaf.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "betterend:block/lanceleaf_seed_3" + } +} diff --git a/kubejs/assets/betterend/models/item/lanceleaf_small.json b/kubejs/assets/betterend/models/item/lanceleaf_small.json new file mode 100644 index 000000000..54bd97b03 --- /dev/null +++ b/kubejs/assets/betterend/models/item/lanceleaf_small.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "betterend:block/lanceleaf_seed_0" + } +} diff --git a/kubejs/assets/betterend/models/item/large_amaranita_mushroom.json b/kubejs/assets/betterend/models/item/large_amaranita_mushroom.json new file mode 100644 index 000000000..c3933abf8 --- /dev/null +++ b/kubejs/assets/betterend/models/item/large_amaranita_mushroom.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "betterend:block/large_amaranita_cap_side" + } +} diff --git a/kubejs/assets/betterend/models/item/lucernia_leaves.json b/kubejs/assets/betterend/models/item/lucernia_leaves.json new file mode 100644 index 000000000..974abc519 --- /dev/null +++ b/kubejs/assets/betterend/models/item/lucernia_leaves.json @@ -0,0 +1,3 @@ +{ + "parent": "betterend:block/lucernia_leaves_1" +} diff --git a/kubejs/assets/betterend/models/item/lucernia_leaves_fallen.json b/kubejs/assets/betterend/models/item/lucernia_leaves_fallen.json new file mode 100644 index 000000000..a19282676 --- /dev/null +++ b/kubejs/assets/betterend/models/item/lucernia_leaves_fallen.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "betterend:block/lucernia_leaves_1" + } +} diff --git a/kubejs/assets/betterend/models/item/lucernia_outer_leaves.json b/kubejs/assets/betterend/models/item/lucernia_outer_leaves.json new file mode 100644 index 000000000..b2d7674e7 --- /dev/null +++ b/kubejs/assets/betterend/models/item/lucernia_outer_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "betterend:block/lucernia_outer_leaves_3" + } +} diff --git a/kubejs/assets/betterend/textures/block/amaranita_fur.png b/kubejs/assets/betterend/textures/block/amaranita_fur.png new file mode 100644 index 000000000..ba1cf0c8b Binary files /dev/null and b/kubejs/assets/betterend/textures/block/amaranita_fur.png differ diff --git a/kubejs/assets/betterend/textures/block/amber_root_potted.png b/kubejs/assets/betterend/textures/block/amber_root_potted.png new file mode 100644 index 000000000..e20493d58 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/amber_root_potted.png differ diff --git a/kubejs/assets/betterend/textures/block/ancient_emerald_ice.png b/kubejs/assets/betterend/textures/block/ancient_emerald_ice.png new file mode 100644 index 000000000..611ad6c07 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/ancient_emerald_ice.png differ diff --git a/kubejs/assets/betterend/textures/block/aurora_crystal.png b/kubejs/assets/betterend/textures/block/aurora_crystal.png new file mode 100644 index 000000000..0f71be6d1 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/aurora_crystal.png differ diff --git a/kubejs/assets/betterend/textures/block/blooming_cooksonia_potted.png b/kubejs/assets/betterend/textures/block/blooming_cooksonia_potted.png new file mode 100644 index 000000000..ae6147498 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/blooming_cooksonia_potted.png differ diff --git a/kubejs/assets/betterend/textures/block/cave_grass_potted.png b/kubejs/assets/betterend/textures/block/cave_grass_potted.png new file mode 100644 index 000000000..bf379c2ad Binary files /dev/null and b/kubejs/assets/betterend/textures/block/cave_grass_potted.png differ diff --git a/kubejs/assets/betterend/textures/block/chorus_grass_potted.png b/kubejs/assets/betterend/textures/block/chorus_grass_potted.png new file mode 100644 index 000000000..7c51f013a Binary files /dev/null and b/kubejs/assets/betterend/textures/block/chorus_grass_potted.png differ diff --git a/kubejs/assets/betterend/textures/block/chorus_mushroom_potted.png b/kubejs/assets/betterend/textures/block/chorus_mushroom_potted.png new file mode 100644 index 000000000..1e7559cdc Binary files /dev/null and b/kubejs/assets/betterend/textures/block/chorus_mushroom_potted.png differ diff --git a/kubejs/assets/betterend/textures/block/clawfern_potted.png b/kubejs/assets/betterend/textures/block/clawfern_potted.png new file mode 100644 index 000000000..6ea0d05f5 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/clawfern_potted.png differ diff --git a/kubejs/assets/betterend/textures/block/dragon_tree_leaves.png b/kubejs/assets/betterend/textures/block/dragon_tree_leaves.png new file mode 100644 index 000000000..ae764ead3 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/dragon_tree_leaves.png differ diff --git a/kubejs/assets/betterend/textures/block/fracturn_potted.png b/kubejs/assets/betterend/textures/block/fracturn_potted.png new file mode 100644 index 000000000..bc5a54098 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/fracturn_potted.png differ diff --git a/kubejs/assets/betterend/textures/block/globulagus_potted.png b/kubejs/assets/betterend/textures/block/globulagus_potted.png new file mode 100644 index 000000000..f9fe85fd2 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/globulagus_potted.png differ diff --git a/kubejs/assets/betterend/textures/block/helix_tree_sapling.png b/kubejs/assets/betterend/textures/block/helix_tree_sapling.png new file mode 100644 index 000000000..911be1e24 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/helix_tree_sapling.png differ diff --git a/kubejs/assets/betterend/textures/block/inflexia_potted.png b/kubejs/assets/betterend/textures/block/inflexia_potted.png new file mode 100644 index 000000000..ad36f2640 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/inflexia_potted.png differ diff --git a/kubejs/assets/betterend/textures/block/ivis_moss.png b/kubejs/assets/betterend/textures/block/ivis_moss.png new file mode 100644 index 000000000..0e5a2142c Binary files /dev/null and b/kubejs/assets/betterend/textures/block/ivis_moss.png differ diff --git a/kubejs/assets/betterend/textures/block/ivis_vine.png b/kubejs/assets/betterend/textures/block/ivis_vine.png new file mode 100644 index 000000000..323b26ece Binary files /dev/null and b/kubejs/assets/betterend/textures/block/ivis_vine.png differ diff --git a/kubejs/assets/betterend/textures/block/ivis_vine_bottom.png b/kubejs/assets/betterend/textures/block/ivis_vine_bottom.png new file mode 100644 index 000000000..673924dea Binary files /dev/null and b/kubejs/assets/betterend/textures/block/ivis_vine_bottom.png differ diff --git a/kubejs/assets/betterend/textures/block/ivis_vine_roots.png b/kubejs/assets/betterend/textures/block/ivis_vine_roots.png new file mode 100644 index 000000000..133a13873 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/ivis_vine_roots.png differ diff --git a/kubejs/assets/betterend/textures/block/jungle_grass_potted.png b/kubejs/assets/betterend/textures/block/jungle_grass_potted.png new file mode 100644 index 000000000..621001439 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/jungle_grass_potted.png differ diff --git a/kubejs/assets/betterend/textures/block/lacugrove_leaves.png b/kubejs/assets/betterend/textures/block/lacugrove_leaves.png new file mode 100644 index 000000000..38a70f346 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lacugrove_leaves.png differ diff --git a/kubejs/assets/betterend/textures/block/lamellarium_potted.png b/kubejs/assets/betterend/textures/block/lamellarium_potted.png new file mode 100644 index 000000000..fa7d7bfa8 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lamellarium_potted.png differ diff --git a/kubejs/assets/betterend/textures/block/lucernia_leaves_1.png b/kubejs/assets/betterend/textures/block/lucernia_leaves_1.png new file mode 100644 index 000000000..a2c3f619b Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lucernia_leaves_1.png differ diff --git a/kubejs/assets/betterend/textures/block/lucernia_leaves_2.png b/kubejs/assets/betterend/textures/block/lucernia_leaves_2.png new file mode 100644 index 000000000..d597885d3 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lucernia_leaves_2.png differ diff --git a/kubejs/assets/betterend/textures/block/lucernia_leaves_3.png b/kubejs/assets/betterend/textures/block/lucernia_leaves_3.png new file mode 100644 index 000000000..53a8b142b Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lucernia_leaves_3.png differ diff --git a/kubejs/assets/betterend/textures/block/lucernia_leaves_4.png b/kubejs/assets/betterend/textures/block/lucernia_leaves_4.png new file mode 100644 index 000000000..6331bbcc6 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lucernia_leaves_4.png differ diff --git a/kubejs/assets/betterend/textures/block/lucernia_outer_leaves_1.png b/kubejs/assets/betterend/textures/block/lucernia_outer_leaves_1.png new file mode 100644 index 000000000..544e3d7b1 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lucernia_outer_leaves_1.png differ diff --git a/kubejs/assets/betterend/textures/block/lucernia_outer_leaves_2.png b/kubejs/assets/betterend/textures/block/lucernia_outer_leaves_2.png new file mode 100644 index 000000000..1159b21f2 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lucernia_outer_leaves_2.png differ diff --git a/kubejs/assets/betterend/textures/block/lucernia_outer_leaves_3.png b/kubejs/assets/betterend/textures/block/lucernia_outer_leaves_3.png new file mode 100644 index 000000000..9239b981d Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lucernia_outer_leaves_3.png differ diff --git a/kubejs/assets/betterend/textures/block/lumecorn_big_petal.png b/kubejs/assets/betterend/textures/block/lumecorn_big_petal.png new file mode 100644 index 000000000..a3de184ec Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lumecorn_big_petal.png differ diff --git a/kubejs/assets/betterend/textures/block/lumecorn_leaf_1.png b/kubejs/assets/betterend/textures/block/lumecorn_leaf_1.png new file mode 100644 index 000000000..40a46a12d Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lumecorn_leaf_1.png differ diff --git a/kubejs/assets/betterend/textures/block/lumecorn_leaf_2.png b/kubejs/assets/betterend/textures/block/lumecorn_leaf_2.png new file mode 100644 index 000000000..c56fb8164 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lumecorn_leaf_2.png differ diff --git a/kubejs/assets/betterend/textures/block/lumecorn_light_1.png b/kubejs/assets/betterend/textures/block/lumecorn_light_1.png new file mode 100644 index 000000000..f192caf1b Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lumecorn_light_1.png differ diff --git a/kubejs/assets/betterend/textures/block/lumecorn_light_bottom.png b/kubejs/assets/betterend/textures/block/lumecorn_light_bottom.png new file mode 100644 index 000000000..eac95c928 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lumecorn_light_bottom.png differ diff --git a/kubejs/assets/betterend/textures/block/lumecorn_light_middle.png b/kubejs/assets/betterend/textures/block/lumecorn_light_middle.png new file mode 100644 index 000000000..673422806 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lumecorn_light_middle.png differ diff --git a/kubejs/assets/betterend/textures/block/lumecorn_light_top.png b/kubejs/assets/betterend/textures/block/lumecorn_light_top.png new file mode 100644 index 000000000..ea76ef219 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lumecorn_light_top.png differ diff --git a/kubejs/assets/betterend/textures/block/lumecorn_light_top_middle.png b/kubejs/assets/betterend/textures/block/lumecorn_light_top_middle.png new file mode 100644 index 000000000..ab20ad70b Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lumecorn_light_top_middle.png differ diff --git a/kubejs/assets/betterend/textures/block/lumecorn_roots.png b/kubejs/assets/betterend/textures/block/lumecorn_roots.png new file mode 100644 index 000000000..73990ff8c Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lumecorn_roots.png differ diff --git a/kubejs/assets/betterend/textures/block/lumecorn_stem.png b/kubejs/assets/betterend/textures/block/lumecorn_stem.png new file mode 100644 index 000000000..4441c1506 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lumecorn_stem.png differ diff --git a/kubejs/assets/betterend/textures/block/pythadendron_leaves.png b/kubejs/assets/betterend/textures/block/pythadendron_leaves.png new file mode 100644 index 000000000..770229ac5 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/pythadendron_leaves.png differ diff --git a/kubejs/assets/betterend/textures/block/shadow_plant.png b/kubejs/assets/betterend/textures/block/shadow_plant.png new file mode 100644 index 000000000..bd812aac7 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/shadow_plant.png differ diff --git a/kubejs/assets/betterend/textures/block/shadow_plant_potted.png b/kubejs/assets/betterend/textures/block/shadow_plant_potted.png new file mode 100644 index 000000000..797bb5678 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/shadow_plant_potted.png differ diff --git a/kubejs/assets/betterend/textures/block/tail_moss.png b/kubejs/assets/betterend/textures/block/tail_moss.png new file mode 100644 index 000000000..be639ec74 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/tail_moss.png differ diff --git a/kubejs/assets/betterend/textures/block/tenanea_flowers.png b/kubejs/assets/betterend/textures/block/tenanea_flowers.png new file mode 100644 index 000000000..5280ebaa7 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/tenanea_flowers.png differ diff --git a/kubejs/assets/betterend/textures/block/tenanea_flowers_bottom.png b/kubejs/assets/betterend/textures/block/tenanea_flowers_bottom.png new file mode 100644 index 000000000..76c3e0e68 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/tenanea_flowers_bottom.png differ diff --git a/kubejs/assets/betterend/textures/block/tenanea_flowers_stem.png b/kubejs/assets/betterend/textures/block/tenanea_flowers_stem.png new file mode 100644 index 000000000..511d81d23 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/tenanea_flowers_stem.png differ diff --git a/kubejs/assets/betterend/textures/block/tenanea_flowers_stem_bottom.png b/kubejs/assets/betterend/textures/block/tenanea_flowers_stem_bottom.png new file mode 100644 index 000000000..82e3bcb83 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/tenanea_flowers_stem_bottom.png differ diff --git a/kubejs/assets/betterend/textures/block/tenanea_flowers_top.png b/kubejs/assets/betterend/textures/block/tenanea_flowers_top.png new file mode 100644 index 000000000..8845c5285 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/tenanea_flowers_top.png differ diff --git a/kubejs/assets/betterend/textures/block/tenanea_flowers_top_stem.png b/kubejs/assets/betterend/textures/block/tenanea_flowers_top_stem.png new file mode 100644 index 000000000..7ea07eb65 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/tenanea_flowers_top_stem.png differ diff --git a/kubejs/assets/betterend/textures/block/tenanea_leaves.png b/kubejs/assets/betterend/textures/block/tenanea_leaves.png new file mode 100644 index 000000000..8bb1150d7 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/tenanea_leaves.png differ diff --git a/kubejs/assets/betterend/textures/block/twisted_vine.png b/kubejs/assets/betterend/textures/block/twisted_vine.png new file mode 100644 index 000000000..940357484 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/twisted_vine.png differ diff --git a/kubejs/assets/betterend/textures/block/twisted_vine_bottom.png b/kubejs/assets/betterend/textures/block/twisted_vine_bottom.png new file mode 100644 index 000000000..44dfe5ad5 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/twisted_vine_bottom.png differ diff --git a/kubejs/assets/betterend/textures/block/twisted_vine_roots.png b/kubejs/assets/betterend/textures/block/twisted_vine_roots.png new file mode 100644 index 000000000..a68c549b7 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/twisted_vine_roots.png differ diff --git a/kubejs/assets/betterend/textures/block/vaiolush_fern_potted.png b/kubejs/assets/betterend/textures/block/vaiolush_fern_potted.png new file mode 100644 index 000000000..2797cacff Binary files /dev/null and b/kubejs/assets/betterend/textures/block/vaiolush_fern_potted.png differ diff --git a/kubejs/assets/constructionwand/lang/ru_ru.json b/kubejs/assets/constructionwand/lang/ru_ru.json new file mode 100644 index 000000000..626dd468a --- /dev/null +++ b/kubejs/assets/constructionwand/lang/ru_ru.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.", + "item.constructionwand.stone_wand": "Жезл из меди", + "item.constructionwand.iron_wand": "Жезл из кованого железа", + "item.constructionwand.diamond_wand": "Жезл из синей стали", + "item.constructionwand.infinity_wand": "Умный жезл из титана" +} \ No newline at end of file diff --git a/kubejs/assets/constructionwand/lang/zh_cn.json b/kubejs/assets/constructionwand/lang/zh_cn.json new file mode 100644 index 000000000..67c983b3c --- /dev/null +++ b/kubejs/assets/constructionwand/lang/zh_cn.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.", + "item.constructionwand.stone_wand": "铜质手杖", + "item.constructionwand.iron_wand": "锻铁手杖", + "item.constructionwand.diamond_wand": "蓝钢手杖", + "item.constructionwand.infinity_wand": "钛合金智能手杖" +} \ No newline at end of file diff --git a/kubejs/assets/create/lang/ru_ru.json b/kubejs/assets/create/lang/ru_ru.json index 7833589af..0e68f675f 100644 --- a/kubejs/assets/create/lang/ru_ru.json +++ b/kubejs/assets/create/lang/ru_ru.json @@ -1,5 +1,8 @@ { "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.create.netherite_backtank": "Баллон (Синяя сталь)", + "block.create.dark_oak_window": "Гикорное окно", + "block.create.dark_oak_window_pane": "Гикорная оконная панель", "block.create.andesite_bars": "Металлические прутья", "block.create.andesite_belt_funnel": "Металлический конвейерный шлюз", "block.create.andesite_casing": "Металлический корпус", @@ -12,11 +15,79 @@ "block.create.andesite_pillar": "Металлическая колонна", "block.create.andesite_scaffolding": "Металлические подмостки", "block.create.andesite_tunnel": "Металлический туннель", + "block.create.cut_deepslate": "Резной мигматит", + "block.create.cut_deepslate_stairs": "Ступеньки из резного мигматита", + "block.create.cut_deepslate_slab": "Плита из резного мигматита", + "block.create.cut_deepslate_wall": "Ограда из резного мигматита", + "block.create.polished_cut_deepslate": "Полированный резной мигматит", + "block.create.polished_cut_deepslate_stairs": "Ступеньки из полированного резного мигматита", + "block.create.polished_cut_deepslate_slab": "Плита из полированного резного мигматита", + "block.create.polished_cut_deepslate_wall": "Ограда из полированного резного мигматита", + "block.create.cut_deepslate_bricks": "Резные мигматитовые кирпичи", + "block.create.cut_deepslate_brick_stairs": "Ступеньки из резного мигматитового кирпича", + "block.create.cut_deepslate_brick_slab": "Плита из резного мигматитового кирпича", + "block.create.cut_deepslate_brick_wall": "Ограда из резного мигматитового кирпича", + "block.create.small_deepslate_bricks": "Мелкие мигматитовые кирпичи", + "block.create.small_deepslate_brick_stairs": "Ступеньки из мелкого мигматитового кирпича", + "block.create.small_deepslate_brick_slab": "Плита из мелкого мигматитового кирпича", + "block.create.small_deepslate_brick_wall": "Ограда из мелкого мигматитового кирпича", + "block.create.layered_deepslate": "Слоистый мигматит", + "block.create.deepslate_pillar": "Мигматитовая колонна", + "block.create.cut_dripstone": "Резной травертин", + "block.create.cut_dripstone_stairs": "Ступеньки из резного травертина", + "block.create.cut_dripstone_slab": "Плита из резного травертина", + "block.create.cut_dripstone_wall": "Ограда из резного травертина", + "block.create.polished_cut_dripstone": "Полированный резной травертин", + "block.create.polished_cut_dripstone_stairs": "Ступеньки из полированного резного травертина", + "block.create.polished_cut_dripstone_slab": "Плита из полированного резного травертина", + "block.create.polished_cut_dripstone_wall": "Ограда из полированного резного травертина", + "block.create.cut_dripstone_bricks": "Резные травертиновые кирпичи", + "block.create.cut_dripstone_brick_stairs": "Ступеньки из резного травертинового кирпича", + "block.create.cut_dripstone_brick_slab": "Плита из резного травертинового кирпича", + "block.create.cut_dripstone_brick_wall": "Ограда из резного травертинового кирпича", + "block.create.small_dripstone_bricks": "Мелкие травертиновые кирпичи", + "block.create.small_dripstone_brick_stairs": "Ступеньки из мелкого травертинового кирпича", + "block.create.small_dripstone_brick_slab": "Плита из мелкого травертинового кирпича", + "block.create.small_dripstone_brick_wall": "Ограда из мелкого травертинового кирпича", + "block.create.layered_dripstone": "Слоистый травертин", + "block.create.dripstone_pillar": "Травертиновая колонна", + "block.create.cut_granite": "Резной кремнистый сланец", + "block.create.cut_granite_stairs": "Ступеньки из резного кремнистого сланца", + "block.create.cut_granite_slab": "Плита из резного кремнистого сланца", + "block.create.cut_granite_wall": "Ограда из резного кремнистого сланца", + "block.create.polished_cut_granite": "Полированный резной кремнистый сланец", + "block.create.polished_cut_granite_stairs": "Полированные ступеньки из резного кремнистого сланца", + "block.create.polished_cut_granite_slab": "Полированная плита из резного кремнистого сланца", + "block.create.polished_cut_granite_wall": "Полированная ограда из резного кремнистого сланца", + "block.create.cut_granite_bricks": "Резные кремнисто-сланцевые кирпичи", + "block.create.cut_granite_brick_stairs": "Ступеньки из резного кремнисто-сланцевого кирпича", + "block.create.cut_granite_brick_slab": "Плита из резного кремнисто-сланцевого кирпича", + "block.create.cut_granite_brick_wall": "Ограда из резного кремнисто-сланцевого кирпича", + "block.create.small_granite_bricks": "Мелкие кремнисто-сланцевые кирпичи", + "block.create.small_granite_brick_stairs": "Ступеньки из мелкого кремнисто-сланцевого кирпича", + "block.create.small_granite_brick_slab": "Плита из мелкого кремнисто-сланцевого кирпича", + "block.create.small_granite_brick_wall": "Ограда из мелкого кремнисто-сланцевого кирпича", + "block.create.layered_granite": "Слоистый кремнистый сланец", + "block.create.granite_pillar": "Колонна из кремнистого сланца", + "item.create.netherite_diving_helmet.tooltip.summary": "Вместе с _баллоном из синей стали_, защищает от _экстремальной жары_. Для полной защиты, _ноги и ступни_ также должны быть в _дайверском снаряжением из синей стали_.", + "item.create.netherite_backtank": "Баллон (Синяя сталь)", + "item.create.netherite_diving_helmet": "Лаволазный шлем из синей стали", + "item.create.netherite_diving_boots": "Лаволазные ботинки из синей стали", + "item.create.copper_sheet": "Медная пластина", + "item.create.brass_sheet": "Латунная пластина", + "item.create.golden_sheet": "Золотая пластина", + "item.create.crushed_raw_gold": "Очищенное рудное золото", + "item.create.crushed_raw_copper": "Очищенная рудная медь ", + "item.create.crushed_raw_zinc": "Очищенный рудный цинк", + "item.create.crushed_raw_silver": "Очищенное рудное серебро", + "item.create.crushed_raw_tin": "Очищенное рудное олово", + "item.create.crushed_raw_lead": "Очищенный рудный свинец", "create.ponder.andesite_tunnel.header": "Использованием металлических туннелей", "create.ponder.andesite_tunnel.text_1": "Металлические туннели могут быть использованы, чтобы накрывать конвейеры", "create.ponder.andesite_tunnel.text_2": "Всегда, когда у металлического туннеля есть доступный выход сбоку...", "create.ponder.belt_casing.text_1": "Латунный или металлический корпус можно использовать для украшения конвейеров", "create.ponder.brass_funnel.text_1": "Металлический шлюз может извлекать только один предмет за раз", "create.ponder.cogwheel_casing.text_1": "Латунный или металлический корпус можно использовать для украшения шестерней", - "create.ponder.shaft_casing.text_1": "Латунный или металлический корпус можно использовать для украшения валов" + "create.ponder.shaft_casing.text_1": "Латунный или металлический корпус можно использовать для украшения валов", + "block.create.track": "Ж/д путь" } \ No newline at end of file diff --git a/kubejs/assets/create/lang/zh_cn.json b/kubejs/assets/create/lang/zh_cn.json new file mode 100644 index 000000000..0942b6f95 --- /dev/null +++ b/kubejs/assets/create/lang/zh_cn.json @@ -0,0 +1,100 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.create.netherite_backtank": "蓝钢背罐", + "block.create.industrial_iron_block": "工业钢块", + "block.create.weathered_iron_block": "风化钢块", + "block.create.industrial_iron_window": "工业钢窗户", + "block.create.weathered_iron_window": "锈蚀的工业钢窗户", + "block.create.industrial_iron_window_pane": "工业钢窗户板", + "block.create.weathered_iron_window_pane": "锈蚀的工业钢窗户板", + "block.create.dark_oak_window": "山核桃木窗户", + "block.create.dark_oak_window_pane": "山核桃木窗户板", + "block.create.cherry_window": "无花果木窗户", + "block.create.cherry_window_pane": "无花果木窗户板", + "block.create.andesite_bars": "金属栏杆", + "block.create.andesite_belt_funnel": "金属传送带漏斗", + "block.create.andesite_casing": "金属外壳", + "block.create.andesite_door": "金属门", + "block.create.andesite_encased_cogwheel": "金属齿轮箱", + "block.create.andesite_encased_large_cogwheel": "金属大齿轮箱", + "block.create.andesite_encased_shaft": "金属传动轴箱", + "block.create.andesite_funnel": "金属漏斗", + "block.create.andesite_ladder": "金属梯子", + "block.create.andesite_scaffolding": "金属脚手架", + "block.create.andesite_tunnel": "金属隧道", + "block.create.andesite_table_cloth": "金属桌面", + "block.create.cut_deepslate": "切制混合岩", + "block.create.cut_deepslate_stairs": "切制混合岩楼梯", + "block.create.cut_deepslate_slab": "切制混合岩台阶", + "block.create.cut_deepslate_wall": "切制混合岩墙", + "block.create.polished_cut_deepslate": "磨制切制混合岩", + "block.create.polished_cut_deepslate_stairs": "磨制切制混合岩楼梯", + "block.create.polished_cut_deepslate_slab": "磨制切制混合岩台阶", + "block.create.polished_cut_deepslate_wall": "磨制切制混合岩墙", + "block.create.cut_deepslate_bricks": "切制混合岩砖", + "block.create.cut_deepslate_brick_stairs": "切制混合岩砖楼梯", + "block.create.cut_deepslate_brick_slab": "切制混合岩砖台阶", + "block.create.cut_deepslate_brick_wall": "切制混合岩砖墙", + "block.create.small_deepslate_bricks": "小型混合岩砖", + "block.create.small_deepslate_brick_stairs": "小型混合岩砖楼梯", + "block.create.small_deepslate_brick_slab": "小型混合岩砖台阶", + "block.create.small_deepslate_brick_wall": "小型混合岩砖墙", + "block.create.layered_deepslate": "层叠混合岩", + "block.create.deepslate_pillar": "混合岩柱", + "block.create.cut_dripstone": "切制石灰华", + "block.create.cut_dripstone_stairs": "切制石灰华楼梯", + "block.create.cut_dripstone_slab": "切制石灰华台阶", + "block.create.cut_dripstone_wall": "切制石灰华墙", + "block.create.polished_cut_dripstone": "磨制切制石灰华", + "block.create.polished_cut_dripstone_stairs": "磨制切制石灰华楼梯", + "block.create.polished_cut_dripstone_slab": "磨制切制石灰华台阶", + "block.create.polished_cut_dripstone_wall": "磨制切制石灰华墙", + "block.create.cut_dripstone_bricks": "切制石灰华砖", + "block.create.cut_dripstone_brick_stairs": "切制石灰华砖楼梯", + "block.create.cut_dripstone_brick_slab": "切制石灰华砖台阶", + "block.create.cut_dripstone_brick_wall": "切制石灰华砖墙", + "block.create.small_dripstone_bricks": "小型石灰华砖", + "block.create.small_dripstone_brick_stairs": "小型石灰华砖楼梯", + "block.create.small_dripstone_brick_slab": "小型石灰华砖台阶", + "block.create.small_dripstone_brick_wall": "小型石灰华砖墙", + "block.create.layered_dripstone": "层叠石灰华", + "block.create.dripstone_pillar": "石灰华柱", + "block.create.cut_granite": "切制燧石", + "block.create.cut_granite_stairs": "切制燧石楼梯", + "block.create.cut_granite_slab": "切制燧石台阶", + "block.create.cut_granite_wall": "切制燧石墙", + "block.create.polished_cut_granite": "磨制切制燧石", + "block.create.polished_cut_granite_stairs": "磨制切制燧石楼梯", + "block.create.polished_cut_granite_slab": "磨制切制燧石台阶", + "block.create.polished_cut_granite_wall": "磨制切制燧石墙", + "block.create.cut_granite_bricks": "切制燧石砖", + "block.create.cut_granite_brick_stairs": "切制燧石砖楼梯", + "block.create.cut_granite_brick_slab": "切制燧石砖台阶", + "block.create.cut_granite_brick_wall": "切制燧石砖墙", + "block.create.small_granite_bricks": "小型燧石砖", + "block.create.small_granite_brick_stairs": "小型燧石砖楼梯", + "block.create.small_granite_brick_slab": "小型燧石砖台阶", + "block.create.small_granite_brick_wall": "小型燧石砖墙", + "block.create.layered_granite": "层叠燧石", + "block.create.granite_pillar": "燧石柱", + "item.create.netherite_diving_helmet.tooltip.summary": "当和_蓝钢背罐_一起装备时,它将保护您免受_极端高温_的伤害。当然,为了您的人身安全,_腿部和脚部_也必须穿上_蓝钢潜水装备_。", + "item.create.netherite_backtank": "蓝钢背罐", + "item.create.netherite_diving_helmet": "蓝钢潜水头盔", + "item.create.netherite_diving_boots": "蓝钢潜水靴", + "item.create.copper_sheet": "铜板", + "item.create.brass_sheet": "黄铜板", + "item.create.golden_sheet": "金板", + "item.create.crushed_raw_gold": "纯净金矿石", + "item.create.crushed_raw_copper": "纯净铜矿石", + "item.create.crushed_raw_zinc": "纯净锌矿石", + "item.create.crushed_raw_silver": "纯净银矿石", + "item.create.crushed_raw_tin": "纯净锡矿石", + "item.create.crushed_raw_lead": "纯净铅矿石", + "create.ponder.andesite_tunnel.header": "使用金属隧道", + "create.ponder.andesite_tunnel.text_1": "金属隧道可以覆盖在传送带上", + "create.ponder.andesite_tunnel.text_2": "当金属隧道存在侧向连接时...", + "create.ponder.belt_casing.text_1": "黄铜机壳或金属机壳可用于装饰机械传送带", + "create.ponder.brass_funnel.text_1": "金属漏斗一次只能提取出一个物品", + "create.ponder.cogwheel_casing.text_1": "黄铜机壳或金属机壳可用于装饰齿轮", + "create.ponder.shaft_casing.text_1": "黄铜机壳或金属机壳可用于装饰传动轴" +} \ No newline at end of file diff --git a/kubejs/assets/createdeco/lang/ru_ru.json b/kubejs/assets/createdeco/lang/ru_ru.json new file mode 100644 index 000000000..25273cde9 --- /dev/null +++ b/kubejs/assets/createdeco/lang/ru_ru.json @@ -0,0 +1,155 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.createdeco.andesite_bars": "Прутья из оловянного сплава", + "block.createdeco.andesite_bars_overlay": "Прутья с панелью из оловянного сплава", + "block.createdeco.andesite_window": "Окно из оловянного сплава", + "block.createdeco.andesite_window_pane": "Оконная панель из оловянного сплава", + "block.createdeco.andesite_mesh_fence": "Сетчатый забор из оловянного сплава", + "block.createdeco.andesite_catwalk": "Мостик из оловянного сплава", + "block.createdeco.andesite_catwalk_stairs": "Решётчатая лестница из оловянного сплава", + "block.createdeco.andesite_catwalk_railing": "Перила из оловянного сплава", + "block.createdeco.andesite_support_wedge": "Опорный угол из оловянного сплава", + "block.createdeco.andesite_hull": "Цилиндр из оловянного сплава", + "block.createdeco.andesite_support": "Опора из оловянного сплава", + "block.createdeco.yellow_andesite_lamp": "Жёлтый светильник из оловянного сплава", + "block.createdeco.red_andesite_lamp": "Красный светильник из оловянного сплава", + "block.createdeco.blue_andesite_lamp": "Голубой светильник из оловянного сплава", + "block.createdeco.green_andesite_lamp": "Зелёный светильник из оловянного сплава", + "block.createdeco.andesite_sheet_metal": "Блок из пластин оловянного сплава", + "block.createdeco.andesite_door": "Дверь из оловянного сплава", + "block.createdeco.locked_andesite_door": "Запертая дверь из оловянного сплава", + "block.createdeco.andesite_trapdoor": "Люк из оловянного сплава", + "block.createdeco.andesite_facade": "Сетчатая панель из оловянного сплава", + "block.createdeco.iron_bars": "Прутья из кованого железа", + "block.createdeco.iron_bars_overlay": "Прутья с панелью из кованого железа", + "block.createdeco.iron_window": "Окно из кованого железа", + "block.createdeco.iron_window_pane": "Оконная панель из кованого железа", + "block.createdeco.iron_mesh_fence": "Сетчатый забор из кованого железа", + "block.createdeco.iron_catwalk": "Мостик из кованого железа", + "block.createdeco.iron_catwalk_stairs": "Решётчатая лестница из кованого железа", + "block.createdeco.iron_catwalk_railing": "Перила из кованого железа", + "block.createdeco.iron_support_wedge": "Опорный угол из кованого железа", + "block.createdeco.iron_hull": "Цилиндр из кованого железа", + "block.createdeco.iron_support": "Опора из кованого железа", + "block.createdeco.yellow_iron_lamp": "Жёлтый светильник из кованого железа", + "block.createdeco.red_iron_lamp": "Красный светильник из кованого железа", + "block.createdeco.blue_iron_lamp": "Голубой светильник из кованого железа", + "block.createdeco.green_iron_lamp": "Зелёный светильник из кованого железа", + "block.createdeco.iron_sheet_metal": "Блок из пластин кованого железа", + "block.createdeco.iron_door": "Дверь из кованого железа", + "block.createdeco.locked_iron_door": "Запертая дверь из кованого железа", + "block.createdeco.iron_trapdoor": "Люк из кованого железа", + "block.createdeco.iron_facade": "Сетчатая панель из кованого железа", + "block.createdeco.iron_coinstack": "Стопка монет из кованого железа", + "block.createdeco.netherite_coinstack": "Стопка монет из синей стали", + "block.createdeco.industrial_iron_coinstack": "Стопка монет из стали", + "block.createdeco.industrial_iron_bars": "Прутья из стали", + "block.createdeco.industrial_iron_bars_overlay": "Прутья с панелью из стали", + "block.createdeco.industrial_iron_window": "Окно из стали", + "block.createdeco.industrial_iron_window_pane": "Оконная панель из стали", + "block.createdeco.industrial_iron_mesh_fence": "Сетчатый забор из стали", + "block.createdeco.industrial_iron_catwalk": "Мостик из стали", + "block.createdeco.industrial_iron_catwalk_stairs": "Решётчатая лестница из стали", + "block.createdeco.industrial_iron_catwalk_railing": "Перила из стали", + "block.createdeco.industrial_iron_support_wedge": "Опорный угол из стали", + "block.createdeco.industrial_iron_hull": "Цилиндр из стали", + "block.createdeco.industrial_iron_support": "Опора из стали", + "block.createdeco.yellow_industrial_iron_lamp": "Жёлтый светильник из стали", + "block.createdeco.red_industrial_iron_lamp": "Красный светильник из стали", + "block.createdeco.blue_industrial_iron_lamp": "Голубой светильник из стали", + "block.createdeco.green_industrial_iron_lamp": "Зелёный светильник из стали", + "block.createdeco.industrial_iron_sheet_metal": "Блок из пластин стали", + "block.createdeco.industrial_iron_door": "Дверь из стали", + "block.createdeco.locked_industrial_iron_door": "Запертая дверь из стали", + "block.createdeco.industrial_iron_trapdoor": "Люк из стали", + "block.createdeco.industrial_iron_ladder": "Лестница из стали", + "block.createdeco.industrial_iron_facade": "Сетчатая панель из стали", + "block.createdeco.corner_red_bricks": "Цельные кирпичи", + "block.createdeco.corner_red_brick_slab": "Плита из цельных кирпичей", + "block.createdeco.corner_red_brick_stairs": "Ступеньки из цельных кирпичей", + "block.createdeco.corner_red_brick_wall": "Ограда из цельных кирпичей", + "block.createdeco.corner_blue_brick_slab": "Плита из цельных синих кирпичей", + "block.createdeco.corner_blue_brick_stairs": "Ступеньки из цельных синих кирпичей", + "block.createdeco.corner_blue_brick_wall": "Ограда из цельных синих кирпичей", + "block.createdeco.corner_blue_bricks": "Цельные синие кирпичи", + "block.createdeco.corner_dean_brick_slab": "Плита из цельных жёлтых кирпичей", + "block.createdeco.corner_dean_brick_stairs": "Ступеньки из цельных жёлтых кирпичей", + "block.createdeco.corner_dean_brick_wall": "Ограда из цельных жёлтых кирпичей", + "block.createdeco.corner_dean_bricks": "Цельные жёлтые кирпичи", + "block.createdeco.corner_dusk_brick_slab": "Плита из цельных чёрных кирпичей", + "block.createdeco.corner_dusk_brick_stairs": "Ступеньки из цельных чёрных кирпичей", + "block.createdeco.corner_dusk_brick_wall": "Ограда из цельных чёрных кирпичей", + "block.createdeco.corner_dusk_bricks": "Цельные чёрные кирпичи", + "block.createdeco.corner_pearl_brick_slab": "Плита из цельных белых кирпичей", + "block.createdeco.corner_pearl_brick_stairs": "Ступеньки из цельных белых кирпичей", + "block.createdeco.corner_pearl_brick_wall": "Ограда из цельных белых кирпичей", + "block.createdeco.corner_pearl_bricks": "Цельные белые кирпичи", + "block.createdeco.corner_scarlet_brick_slab": "Плита из цельных красных кирпичей", + "block.createdeco.corner_scarlet_brick_stairs": "Ступеньки из цельных красных кирпичей", + "block.createdeco.corner_scarlet_brick_wall": "Ограда из цельных красных кирпичей", + "block.createdeco.corner_scarlet_bricks": "Цельные красные кирпичи", + "block.createdeco.corner_umber_brick_slab": "Плита из цельных коричневых кирпичей", + "block.createdeco.corner_umber_brick_stairs": "Ступеньки из цельных коричневых кирпичей", + "block.createdeco.corner_umber_brick_wall": "Ограда из цельных коричневых кирпичей", + "block.createdeco.corner_umber_bricks": "Цельные коричневые кирпичи", + "block.createdeco.corner_verdant_brick_slab": "Плита из цельных зелёных кирпичей", + "block.createdeco.corner_verdant_brick_stairs": "Ступеньки из цельных зелёных кирпичей", + "block.createdeco.corner_verdant_brick_wall": "Ограда из цельных зелёных кирпичей", + "block.createdeco.corner_verdant_bricks": "Цельные зелёные кирпичи", + "block.createdeco.cracked_red_brick_wall": "Ограда из потрескавшихся кирпичей", + "block.createdeco.long_red_brick_wall": "Ограда из панельных кирпичей", + "block.createdeco.mossy_red_brick_wall": "Ограда из замшелых кирпичей", + "block.createdeco.short_red_brick_wall": "Ограда из коротких кирпичей", + "block.createdeco.tiled_red_brick_wall": "Ограда из выложенных плиткой кирпичей", + "block.createdeco.cracked_pearl_brick_wall": "Ограда из потрескавшихся белых кирпичей", + "block.createdeco.long_pearl_brick_wall": "Ограда из панельных белых кирпичей", + "block.createdeco.mossy_pearl_brick_wall": "Ограда из замшелых белых кирпичей", + "block.createdeco.pearl_brick_wall": "Ограда из белых кирпичей", + "block.createdeco.short_pearl_brick_wall": "Ограда из коротких белых кирпичей", + "block.createdeco.tiled_pearl_brick_wall": "Ограда из выложенных плиткой белых кирпичей", + "block.createdeco.cracked_dean_brick_wall": "Ограда из потрескавшихся жёлтых кирпичей", + "block.createdeco.dean_brick_wall": "Ограда из жёлтых кирпичей", + "block.createdeco.long_dean_brick_wall": "Ограда из панельных жёлтых кирпичей", + "block.createdeco.mossy_dean_brick_wall": "Ограда из замшелых жёлтых кирпичей", + "block.createdeco.short_dean_brick_wall": "Ограда из коротких жёлтых кирпичей", + "block.createdeco.tiled_dean_brick_wall": "Ограда из выложенных плиткой жёлтых кирпичей", + "block.createdeco.cracked_dusk_brick_wall": "Ограда из потрескавшихся чёрных кирпичей", + "block.createdeco.dusk_brick_wall": "Ограда из чёрных кирпичей", + "block.createdeco.long_dusk_brick_wall": "Ограда из панельных чёрных кирпичей", + "block.createdeco.mossy_dusk_brick_wall": "Ограда из замшелых чёрных кирпичей", + "block.createdeco.short_dusk_brick_wall": "Ограда из коротких чёрных кирпичей", + "block.createdeco.tiled_dusk_brick_wall": "Ограда из выложенных плиткой чёрных кирпичей", + "block.createdeco.cracked_scarlet_brick_wall": "Ограда из потрескавшихся красных кирпичей", + "block.createdeco.long_scarlet_brick_wall": "Ограда из панельных красных кирпичей", + "block.createdeco.mossy_scarlet_brick_wall": "Ограда из замшелых красных кирпичей", + "block.createdeco.scarlet_brick_wall": "Ограда из красных кирпичей", + "block.createdeco.short_scarlet_brick_wall": "Ограда из коротких красных кирпичей", + "block.createdeco.tiled_scarlet_brick_wall": "Ограда из выложенных плиткой красных кирпичей", + "block.createdeco.blue_brick_wall": "Ограда из синих кирпичей", + "block.createdeco.cracked_blue_brick_wall": "Ограда из потрескавшихся синих кирпичей", + "block.createdeco.long_blue_brick_wall": "Ограда из панельных синих кирпичей", + "block.createdeco.mossy_blue_brick_wall": "Ограда из замшелых синих кирпичей", + "block.createdeco.short_blue_brick_wall": "Ограда из коротких синих кирпичей", + "block.createdeco.tiled_blue_brick_wall": "Ограда из выложенных плиткой синих кирпичей", + "block.createdeco.cracked_umber_brick_wall": "Ограда из потрескавшихся коричневых кирпичей", + "block.createdeco.long_umber_brick_wall": "Ограда из панельных коричневых кирпичей", + "block.createdeco.mossy_umber_brick_wall": "Ограда из замшелых коричневых кирпичей", + "block.createdeco.short_umber_brick_wall": "Ограда из коротких коричневых кирпичей", + "block.createdeco.tiled_umber_brick_wall": "Ограда из выложенных плиткой коричневых кирпичей", + "block.createdeco.umber_brick_wall": "Ограда из коричневых кирпичей", + "block.createdeco.cracked_verdant_brick_wall": "Ограда из потрескавшихся зелёных кирпичей", + "block.createdeco.long_verdant_brick_wall": "Ограда из панельных зелёных кирпичей", + "block.createdeco.mossy_verdant_brick_wall": "Ограда из замшелых зелёные кирпичей", + "block.createdeco.short_verdant_brick_wall": "Ограда из коротких зелёных кирпичей", + "block.createdeco.tiled_verdant_brick_wall": "Ограда из выложенных плиткой зелёных кирпичей", + "block.createdeco.verdant_brick_wall": "Ограда из зелёных кирпичей", + "block.createdeco.brass_mesh_fence": "Сетчатый забор из латуни", + "block.createdeco.copper_mesh_fence": "Сетчатый забор из меди", + "block.createdeco.zinc_mesh_fence": "Сетчатый забор из цинка", + "block.createdeco.brass_sheet_metal": "Блок из пластин латуни", + "block.createdeco.zinc_sheet_metal": "Блок из пластин цинка", + "item.createdeco.netherite_coin": "Монета из синей стали", + "item.createdeco.netherite_coinstack": "Стопка монет из синей стали", + "item.createdeco.industrial_iron_coin": "Монета из стали", + "item.createdeco.industrial_iron_coinstack": "Стопка монет из стали" +} \ No newline at end of file diff --git a/kubejs/assets/createdeco/lang/zh_cn.json b/kubejs/assets/createdeco/lang/zh_cn.json new file mode 100644 index 000000000..e3a446524 --- /dev/null +++ b/kubejs/assets/createdeco/lang/zh_cn.json @@ -0,0 +1,73 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.createdeco.andesite_bars": "锡铁合金栏杆", + "block.createdeco.andesite_bars_overlay": "锡铁合金栏杆覆盖板", + "block.createdeco.andesite_window": "锡铁合金窗户", + "block.createdeco.andesite_window_pane": "锡铁合金窗户板", + "block.createdeco.andesite_mesh_fence": "锡铁合金网格栅栏", + "block.createdeco.andesite_catwalk": "锡铁合金栈道", + "block.createdeco.andesite_catwalk_stairs": "锡铁合金栈道楼梯", + "block.createdeco.andesite_catwalk_railing": "锡铁合金栈道护栏", + "block.createdeco.andesite_support_wedge": "锡铁合金支撑楔", + "block.createdeco.andesite_hull": "锡铁合金火车外壳", + "block.createdeco.andesite_support": "锡铁合金支架", + "block.createdeco.yellow_andesite_lamp": "黄色锡铁合金笼灯", + "block.createdeco.red_andesite_lamp": "红色锡铁合金笼灯", + "block.createdeco.blue_andesite_lamp": "蓝色锡铁合金笼灯", + "block.createdeco.green_andesite_lamp": "绿色锡铁合金笼灯", + "block.createdeco.andesite_sheet_metal": "锡铁合金金属板", + "block.createdeco.andesite_door": "锡铁合金门", + "block.createdeco.locked_andesite_door": "上锁的的锡铁合金门", + "block.createdeco.andesite_trapdoor": "锡铁合金活板门", + "block.createdeco.andesite_facade": "锡铁合金伪装板", + "block.createdeco.iron_bars": "锻铁栏杆", + "block.createdeco.iron_bars_overlay": "锻铁栏杆覆盖板", + "block.createdeco.iron_window": "锻铁窗户", + "block.createdeco.iron_window_pane": "锻铁窗户板", + "block.createdeco.iron_mesh_fence": "锻铁网格栅栏", + "block.createdeco.iron_catwalk": "锻铁栈道", + "block.createdeco.iron_catwalk_stairs": "锻铁栈道楼梯", + "block.createdeco.iron_catwalk_railing": "锻铁栈道护栏", + "block.createdeco.iron_support_wedge": "锻铁支撑楔", + "block.createdeco.iron_hull": "锻铁火车外壳", + "block.createdeco.iron_support": "锻铁支架", + "block.createdeco.yellow_iron_lamp": "黄色锻铁笼灯", + "block.createdeco.red_iron_lamp": "红色锻铁笼灯", + "block.createdeco.blue_iron_lamp": "蓝色锻铁笼灯", + "block.createdeco.green_iron_lamp": "绿色锻铁笼灯", + "block.createdeco.iron_sheet_metal": "锻铁金属板", + "block.createdeco.iron_door": "锻铁门", + "block.createdeco.locked_iron_door": "上锁的的锻铁门", + "block.createdeco.iron_trapdoor": "锻铁活板门", + "block.createdeco.iron_facade": "锻铁墙面", + "block.createdeco.iron_coinstack": "锻铁硬币堆", + "block.createdeco.netherite_coinstack": "蓝钢硬币堆", + "block.createdeco.industrial_iron_coinstack": "钢制硬币堆", + "block.createdeco.industrial_iron_bars": "钢栏杆", + "block.createdeco.industrial_iron_bars_overlay": "钢栏杆覆盖板", + "block.createdeco.industrial_iron_window": "钢制窗户", + "block.createdeco.industrial_iron_window_pane": "钢制窗户板", + "block.createdeco.industrial_iron_mesh_fence": "钢制网格栅栏", + "block.createdeco.industrial_iron_catwalk": "钢制栈道平台", + "block.createdeco.industrial_iron_catwalk_stairs": "钢制栈道楼梯", + "block.createdeco.industrial_iron_catwalk_railing": "钢制栈道护栏", + "block.createdeco.industrial_iron_support_wedge": "钢支撑楔", + "block.createdeco.industrial_iron_hull": "钢制火车外壳", + "block.createdeco.industrial_iron_support": "钢支架", + "block.createdeco.yellow_industrial_iron_lamp": "黄色钢笼灯", + "block.createdeco.red_industrial_iron_lamp": "红色钢笼灯", + "block.createdeco.blue_industrial_iron_lamp": "蓝色钢笼灯", + "block.createdeco.green_industrial_iron_lamp": "绿色钢笼灯", + "block.createdeco.industrial_iron_sheet_metal": "钢板", + "block.createdeco.industrial_iron_door": "钢门", + "block.createdeco.locked_industrial_iron_door": "上锁的钢门", + "block.createdeco.industrial_iron_trapdoor": "钢活板门", + "block.createdeco.industrial_iron_ladder": "钢制梯子", + "block.createdeco.industrial_iron_facade": "钢伪装板", + "item.createdeco.iron_coin": "锻铁硬币", + "item.createdeco.netherite_coin": "蓝钢硬币", + "item.createdeco.industrial_iron_coin": "钢制硬币", + "item.createdeco.iron_coinstack": "锻铁硬币堆", + "item.createdeco.netherite_coinstack": "蓝钢硬币堆", + "item.createdeco.industrial_iron_coinstack": "钢制硬币堆" +} \ No newline at end of file diff --git a/kubejs/assets/createhorsepower/lang/ru_ru.json b/kubejs/assets/createhorsepower/lang/ru_ru.json new file mode 100644 index 000000000..1fa50fcb8 --- /dev/null +++ b/kubejs/assets/createhorsepower/lang/ru_ru.json @@ -0,0 +1,24 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.createhorsepower.horse_crank": "Конный привод", + "item.createhorsepower.horse_crank": "Конный привод", + "entity.createhorsepower.chp_leash_knot": "(CHP) Leash Knot", + "tooltip.createhorsepower.horse_crank.detached": "Рабочий был отвязан", + "tooltip.createhorsepower.horse_crank.attached": "Рабочий был привязан", + "tooltip.createhorsepower.horse_crank.maximumMobs": "Только один моб может быть привязан", + "tooltip.createhorsepower.horse_crank.notValidWorker": "Моб не подходит под рабочего", + "tooltip.createhorsepower.horse_crank.alreadyHasWorker": "Привод уже имеет рабочего", + "createhorsepower.ponder.horse_crank.header": "Использование конного привода", + "createhorsepower.ponder.horse_crank.text_1": "Это конный привод", + "createhorsepower.ponder.horse_crank.text_2": "Чтобы использовать лошадиный привод, под ним сначала должны быть установлены подходящие блоки", + "createhorsepower.ponder.horse_crank.text_3": "Некоторые материалы могут быть лучше других", + "createhorsepower.ponder.horse_crank.text_4": "Когда подходящий рабочий будет привязан, привод начнет создавать механическую нагрузку", + "createhorsepower.ponder.horse_crank.text_5": "В настройках можно указать любых мобов, чтобы превратить их в рабочих", + "createhorsepower.ponder.horse_crank.text_6": "Передать вращение можно через шестерню сбоку...", + "createhorsepower.ponder.horse_crank.text_7": "...или через вал снизу...", + "createhorsepower.ponder.horse_crank.text_8": "...но не сверху", + "createhorsepower.ponder.tag.path_types": "Блоки тропы", + "createhorsepower.ponder.tag.path_types.description": "Блоки, по которым могут ходить рабочие животные", + "createhorsepower.ponder.tag.viable_workers": "Подходящий рабочий", + "createhorsepower.ponder.tag.viable_workers.description": "Животные, которые могут приводить в движение лошадиный привод" +} \ No newline at end of file diff --git a/kubejs/assets/createhorsepower/lang/zh_cn.json b/kubejs/assets/createhorsepower/lang/zh_cn.json new file mode 100644 index 000000000..9231f22ba --- /dev/null +++ b/kubejs/assets/createhorsepower/lang/zh_cn.json @@ -0,0 +1,4 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.createhorsepower.horse_crank": "畜力曲柄" +} \ No newline at end of file diff --git a/kubejs/assets/diggerhelmet/lang/ru_ru.json b/kubejs/assets/diggerhelmet/lang/ru_ru.json new file mode 100644 index 000000000..7ecbde127 --- /dev/null +++ b/kubejs/assets/diggerhelmet/lang/ru_ru.json @@ -0,0 +1,39 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "itemGroup.diggerhelmet": "Digger Helmet", + "entity.diggerhelmet.candleslime": "Слайм со свечой", + "item.diggerhelmet.candleslime_spawn_egg": "Яйцо призыва Слайма со свечой", + "item.diggerhelmet.digger_helmet": "Шахтёрская каска", + "item.diggerhelmet.digger_helmet.main": "Не трогай свечу!", + "tooltip.diggerhelmet.digger_helmet.hold_shift": "Удерживайте §eSHIFT§7 для получения подробной информации", + "tooltip.diggerhelmet.digger_helmet.tooltip3": "Ауч! Обжегся, лучше не трогать свечу", + "tooltip.diggerhelmet.digger_helmet.shift_info": "Возьмите шлем в руку, нажмите §eSHIFT§7+пкм и откроется интерфейс шлема", + "tooltip.diggerhelmet.digger_helmet.wool_lining_active": "§aШерстяная подкладка установлена - обеспечивает согревание", + "tooltip.diggerhelmet.digger_helmet.silk_lining_active": "§bШелковая подкладка установлена - обеспечивает охлаждение", + "tooltip.diggerhelmet.digger_helmet.lining_needed": "§eУстановите подкладку для температурных свойств", + "tfcambiental.tooltip.warmth_attribute": "Согревание", + "tfcambiental.tooltip.cooling_attribute": "Охлаждение", + "tfcambiental.tooltip.insulation_attribute": "Изоляция", + "item.diggerhelmet.mining_speed_modifier": "Модификатор скорости добычи ", + "item.diggerhelmet.mining_speed_modifier.desc.base": "Увеличивает скорость добычи при установке в шахтерскую каску:", + "item.diggerhelmet.mining_speed_modifier.desc.pickaxe": "Кирки ×%.1f", + "item.diggerhelmet.mining_speed_modifier.desc.shovel": "Лопаты ×%.1f", + "item.diggerhelmet.auto_drink_modifier": "Модификатор автоматического питья", + "tooltip.diggerhelmet.cooldown": "Автоматически пьет воду из инвентаря при установке в шахтерскую каску", + "item.diggerhelmet.eternal_candle": "Вечная свеча", + "tooltip.diggerhelmet.eternal_candle.main": "Таинственный Источник Вечного Пламени", + "tooltip.diggerhelmet.eternal_candle.shift_info": "Добыча из Слайма со свечой или Зомби(спавнится со свечой в руке)", + "tooltip.diggerhelmet.eternal_candle.more_info": "Вам может потребоваться убить больше зомби, шанс выпадения вечной свечи из руки не 100%. Удачи!", + "block.diggerhelmet.eternal_candle": "Вечная свеча", + "item.diggerhelmet.wool_lining": "Шерстяная подкладка", + "tooltip.diggerhelmet.wool_lining.main": "Обеспечивает тепло и комфорт", + "tooltip.diggerhelmet.wool_lining.usage": "Установите в шахтерскую каску для температурных свойств", + "item.diggerhelmet.silk_lining": "Шёлковая подкладка", + "tooltip.diggerhelmet.silk_lining.main": "Обеспечивает прохладу и легкость", + "tooltip.diggerhelmet.silk_lining.usage": "Установите в шахтерскую каску для охлаждающих свойств", + "gui.diggerhelmet.slot_info.title": "Информация о слотах", + "gui.diggerhelmet.slot_info.left_slot": "Левый слот: Модификатор автоматического питья", + "gui.diggerhelmet.slot_info.center_slot": "Центральный слот: Модификатор скорости добычи", + "gui.diggerhelmet.slot_info.right_slot": "Правый слот: Подкладка (шерстяная или шёлковая)", + "gui.diggerhelmet.slot_info.right_slot_disabled": "Правый слот: Подкладка (требуется TFC Ambiental)" +} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/ad_astra_oxygen_loading.json b/kubejs/assets/emi/category/properties/ad_astra_oxygen_loading.json index 02998692d..f409ef5b8 100644 --- a/kubejs/assets/emi/category/properties/ad_astra_oxygen_loading.json +++ b/kubejs/assets/emi/category/properties/ad_astra_oxygen_loading.json @@ -1 +1 @@ -{"ad_astra:oxygen_loading":{"order":163}} \ No newline at end of file +{"ad_astra:oxygen_loading":{"order":164}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/ae2_attunement.json b/kubejs/assets/emi/category/properties/ae2_attunement.json index 050ef7764..b1df28add 100644 --- a/kubejs/assets/emi/category/properties/ae2_attunement.json +++ b/kubejs/assets/emi/category/properties/ae2_attunement.json @@ -1 +1 @@ -{"ae2:attunement":{"order":160}} \ No newline at end of file +{"ae2:attunement":{"order":161}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/ae2_condenser.json b/kubejs/assets/emi/category/properties/ae2_condenser.json index f621d7885..177d466f2 100644 --- a/kubejs/assets/emi/category/properties/ae2_condenser.json +++ b/kubejs/assets/emi/category/properties/ae2_condenser.json @@ -1 +1 @@ -{"ae2:condenser":{"order":150}} \ No newline at end of file +{"ae2:condenser":{"order":151}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/ae2_item_transformation.json b/kubejs/assets/emi/category/properties/ae2_item_transformation.json index 21e60570d..275cfc085 100644 --- a/kubejs/assets/emi/category/properties/ae2_item_transformation.json +++ b/kubejs/assets/emi/category/properties/ae2_item_transformation.json @@ -1 +1 @@ -{"ae2:item_transformation":{"order":139}} \ No newline at end of file +{"ae2:item_transformation":{"order":140}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/afc_tree_tap.json b/kubejs/assets/emi/category/properties/afc_tree_tap.json index 1d27452f6..b74daf269 100644 --- a/kubejs/assets/emi/category/properties/afc_tree_tap.json +++ b/kubejs/assets/emi/category/properties/afc_tree_tap.json @@ -1 +1 @@ -{"afc:tree_tap":{"order":28}} \ No newline at end of file +{"afc:tree_tap":{"order":29}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/create_deploying.json b/kubejs/assets/emi/category/properties/create_deploying.json index e96b0cb4c..abe329e06 100644 --- a/kubejs/assets/emi/category/properties/create_deploying.json +++ b/kubejs/assets/emi/category/properties/create_deploying.json @@ -1 +1 @@ -{"create:deploying":{"order":49}} \ No newline at end of file +{"create:deploying":{"order":50}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/create_draining.json b/kubejs/assets/emi/category/properties/create_draining.json index c34ca498f..16e908791 100644 --- a/kubejs/assets/emi/category/properties/create_draining.json +++ b/kubejs/assets/emi/category/properties/create_draining.json @@ -1 +1 @@ -{"create:draining":{"order":161}} \ No newline at end of file +{"create:draining":{"order":162}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/create_item_application.json b/kubejs/assets/emi/category/properties/create_item_application.json index 5d6babce5..2a3f5b663 100644 --- a/kubejs/assets/emi/category/properties/create_item_application.json +++ b/kubejs/assets/emi/category/properties/create_item_application.json @@ -1 +1 @@ -{"create:item_application":{"order":50}} \ No newline at end of file +{"create:item_application":{"order":51}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/create_sandpaper_polishing.json b/kubejs/assets/emi/category/properties/create_sandpaper_polishing.json index faecfb7a7..77c9e3722 100644 --- a/kubejs/assets/emi/category/properties/create_sandpaper_polishing.json +++ b/kubejs/assets/emi/category/properties/create_sandpaper_polishing.json @@ -1 +1 @@ -{"create:sandpaper_polishing":{"order":48}} \ No newline at end of file +{"create:sandpaper_polishing":{"order":49}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/create_sequenced_assembly.json b/kubejs/assets/emi/category/properties/create_sequenced_assembly.json index 3337514c7..e81964459 100644 --- a/kubejs/assets/emi/category/properties/create_sequenced_assembly.json +++ b/kubejs/assets/emi/category/properties/create_sequenced_assembly.json @@ -1 +1 @@ -{"create:sequenced_assembly":{"order":51}} \ No newline at end of file +{"create:sequenced_assembly":{"order":52}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/create_spout_filling.json b/kubejs/assets/emi/category/properties/create_spout_filling.json index 901f701ea..4403a59ae 100644 --- a/kubejs/assets/emi/category/properties/create_spout_filling.json +++ b/kubejs/assets/emi/category/properties/create_spout_filling.json @@ -1 +1 @@ -{"create:spout_filling":{"order":162}} \ No newline at end of file +{"create:spout_filling":{"order":163}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/createaddition_liquid_burning.json b/kubejs/assets/emi/category/properties/createaddition_liquid_burning.json index 9e9984257..858f9668a 100644 --- a/kubejs/assets/emi/category/properties/createaddition_liquid_burning.json +++ b/kubejs/assets/emi/category/properties/createaddition_liquid_burning.json @@ -1 +1 @@ -{"createaddition:liquid_burning":{"order":55}} \ No newline at end of file +{"createaddition:liquid_burning":{"order":56}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/createaddition_rolling.json b/kubejs/assets/emi/category/properties/createaddition_rolling.json index 8c5a7fec0..16d12e1f2 100644 --- a/kubejs/assets/emi/category/properties/createaddition_rolling.json +++ b/kubejs/assets/emi/category/properties/createaddition_rolling.json @@ -1 +1 @@ -{"createaddition:rolling":{"order":70}} \ No newline at end of file +{"createaddition:rolling":{"order":71}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/domum_ornamentum_architects_cutter.json b/kubejs/assets/emi/category/properties/domum_ornamentum_architects_cutter.json index b61473953..f80cf7fbb 100644 --- a/kubejs/assets/emi/category/properties/domum_ornamentum_architects_cutter.json +++ b/kubejs/assets/emi/category/properties/domum_ornamentum_architects_cutter.json @@ -1 +1 @@ -{"domum_ornamentum:architects_cutter":{"order":159}} \ No newline at end of file +{"domum_ornamentum:architects_cutter":{"order":160}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/emi_info.json b/kubejs/assets/emi/category/properties/emi_info.json index 807e42a56..0b0237bce 100644 --- a/kubejs/assets/emi/category/properties/emi_info.json +++ b/kubejs/assets/emi/category/properties/emi_info.json @@ -1 +1 @@ -{"emi:info":{"order":168}} \ No newline at end of file +{"emi:info":{"order":169}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/emi_tag.json b/kubejs/assets/emi/category/properties/emi_tag.json index aa6ef6c12..4cd5b8500 100644 --- a/kubejs/assets/emi/category/properties/emi_tag.json +++ b/kubejs/assets/emi/category/properties/emi_tag.json @@ -1 +1 @@ -{"emi:tag":{"order":169}} \ No newline at end of file +{"emi:tag":{"order":170}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/exposure_photograph_printing.json b/kubejs/assets/emi/category/properties/exposure_photograph_printing.json index fbd77aa93..7b69772b7 100644 --- a/kubejs/assets/emi/category/properties/exposure_photograph_printing.json +++ b/kubejs/assets/emi/category/properties/exposure_photograph_printing.json @@ -1 +1 @@ -{"exposure:photograph_printing":{"order":155}} \ No newline at end of file +{"exposure:photograph_printing":{"order":156}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/exposure_photograph_stacking.json b/kubejs/assets/emi/category/properties/exposure_photograph_stacking.json index c79168c91..25cf51b96 100644 --- a/kubejs/assets/emi/category/properties/exposure_photograph_stacking.json +++ b/kubejs/assets/emi/category/properties/exposure_photograph_stacking.json @@ -1 +1 @@ -{"exposure:photograph_stacking":{"order":164}} \ No newline at end of file +{"exposure:photograph_stacking":{"order":165}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/firmalife_bowl_pot.json b/kubejs/assets/emi/category/properties/firmalife_bowl_pot.json index 47374a832..5c6d431f3 100644 --- a/kubejs/assets/emi/category/properties/firmalife_bowl_pot.json +++ b/kubejs/assets/emi/category/properties/firmalife_bowl_pot.json @@ -1 +1 @@ -{"firmalife:bowl_pot":{"order":42}} \ No newline at end of file +{"firmalife:bowl_pot":{"order":43}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/firmalife_drying.json b/kubejs/assets/emi/category/properties/firmalife_drying.json index 7dfb88949..9e393a878 100644 --- a/kubejs/assets/emi/category/properties/firmalife_drying.json +++ b/kubejs/assets/emi/category/properties/firmalife_drying.json @@ -1 +1 @@ -{"firmalife:drying":{"order":34}} \ No newline at end of file +{"firmalife:drying":{"order":35}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/firmalife_mixing_bowl.json b/kubejs/assets/emi/category/properties/firmalife_mixing_bowl.json index 7034d6020..f8d8e7108 100644 --- a/kubejs/assets/emi/category/properties/firmalife_mixing_bowl.json +++ b/kubejs/assets/emi/category/properties/firmalife_mixing_bowl.json @@ -1 +1 @@ -{"firmalife:mixing_bowl":{"order":35}} \ No newline at end of file +{"firmalife:mixing_bowl":{"order":36}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/firmalife_oven.json b/kubejs/assets/emi/category/properties/firmalife_oven.json index f706c0a42..3aff9e548 100644 --- a/kubejs/assets/emi/category/properties/firmalife_oven.json +++ b/kubejs/assets/emi/category/properties/firmalife_oven.json @@ -1 +1 @@ -{"firmalife:oven":{"order":36}} \ No newline at end of file +{"firmalife:oven":{"order":37}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/firmalife_smoking.json b/kubejs/assets/emi/category/properties/firmalife_smoking.json index 34fc4ade1..d2d5eeaa1 100644 --- a/kubejs/assets/emi/category/properties/firmalife_smoking.json +++ b/kubejs/assets/emi/category/properties/firmalife_smoking.json @@ -1 +1 @@ -{"firmalife:smoking":{"order":38}} \ No newline at end of file +{"firmalife:smoking":{"order":39}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/firmalife_stomping.json b/kubejs/assets/emi/category/properties/firmalife_stomping.json index 0251605f0..52133f4ce 100644 --- a/kubejs/assets/emi/category/properties/firmalife_stomping.json +++ b/kubejs/assets/emi/category/properties/firmalife_stomping.json @@ -1 +1 @@ -{"firmalife:stomping":{"order":44}} \ No newline at end of file +{"firmalife:stomping":{"order":45}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/firmalife_vat.json b/kubejs/assets/emi/category/properties/firmalife_vat.json index 5db676758..1032b5898 100644 --- a/kubejs/assets/emi/category/properties/firmalife_vat.json +++ b/kubejs/assets/emi/category/properties/firmalife_vat.json @@ -1 +1 @@ -{"firmalife:vat":{"order":43}} \ No newline at end of file +{"firmalife:vat":{"order":44}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/framedblocks_framing_saw.json b/kubejs/assets/emi/category/properties/framedblocks_framing_saw.json index 267616879..af2418747 100644 --- a/kubejs/assets/emi/category/properties/framedblocks_framing_saw.json +++ b/kubejs/assets/emi/category/properties/framedblocks_framing_saw.json @@ -1 +1 @@ -{"framedblocks:framing_saw":{"order":158}} \ No newline at end of file +{"framedblocks:framing_saw":{"order":159}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/greate_automatic_packing.json b/kubejs/assets/emi/category/properties/greate_automatic_packing.json index 6b61d6b7d..ae108723a 100644 --- a/kubejs/assets/emi/category/properties/greate_automatic_packing.json +++ b/kubejs/assets/emi/category/properties/greate_automatic_packing.json @@ -1 +1 @@ -{"greate:automatic_packing":{"order":153}} \ No newline at end of file +{"greate:automatic_packing":{"order":154}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/greate_automatic_shaped.json b/kubejs/assets/emi/category/properties/greate_automatic_shaped.json index c2210ef99..20d6cb116 100644 --- a/kubejs/assets/emi/category/properties/greate_automatic_shaped.json +++ b/kubejs/assets/emi/category/properties/greate_automatic_shaped.json @@ -1 +1 @@ -{"greate:automatic_shaped":{"order":151}} \ No newline at end of file +{"greate:automatic_shaped":{"order":152}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/greate_automatic_shapeless.json b/kubejs/assets/emi/category/properties/greate_automatic_shapeless.json index b50321f15..b6da04762 100644 --- a/kubejs/assets/emi/category/properties/greate_automatic_shapeless.json +++ b/kubejs/assets/emi/category/properties/greate_automatic_shapeless.json @@ -1 +1 @@ -{"greate:automatic_shapeless":{"order":152}} \ No newline at end of file +{"greate:automatic_shapeless":{"order":153}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/greate_block_cutting.json b/kubejs/assets/emi/category/properties/greate_block_cutting.json index d17682c3f..299ac8f8f 100644 --- a/kubejs/assets/emi/category/properties/greate_block_cutting.json +++ b/kubejs/assets/emi/category/properties/greate_block_cutting.json @@ -1 +1 @@ -{"greate:block_cutting":{"order":157}} \ No newline at end of file +{"greate:block_cutting":{"order":158}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/greate_crushing.json b/kubejs/assets/emi/category/properties/greate_crushing.json index 32aebe41d..3674c5288 100644 --- a/kubejs/assets/emi/category/properties/greate_crushing.json +++ b/kubejs/assets/emi/category/properties/greate_crushing.json @@ -1 +1 @@ -{"greate:crushing":{"order":105}} \ No newline at end of file +{"greate:crushing":{"order":106}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/greate_fan_washing.json b/kubejs/assets/emi/category/properties/greate_fan_washing.json index fa1e45dbb..b9fcbc0e8 100644 --- a/kubejs/assets/emi/category/properties/greate_fan_washing.json +++ b/kubejs/assets/emi/category/properties/greate_fan_washing.json @@ -1 +1 @@ -{"greate:fan_washing":{"order":141}} \ No newline at end of file +{"greate:fan_washing":{"order":142}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/greate_milling.json b/kubejs/assets/emi/category/properties/greate_milling.json index 699708e58..59012e20e 100644 --- a/kubejs/assets/emi/category/properties/greate_milling.json +++ b/kubejs/assets/emi/category/properties/greate_milling.json @@ -1 +1 @@ -{"greate:milling":{"order":104}} \ No newline at end of file +{"greate:milling":{"order":105}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/greate_mixing.json b/kubejs/assets/emi/category/properties/greate_mixing.json index 24217c56d..12be0fbd8 100644 --- a/kubejs/assets/emi/category/properties/greate_mixing.json +++ b/kubejs/assets/emi/category/properties/greate_mixing.json @@ -1 +1 @@ -{"greate:mixing":{"order":108}} \ No newline at end of file +{"greate:mixing":{"order":109}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/greate_packing.json b/kubejs/assets/emi/category/properties/greate_packing.json index 9bc7a41b4..54da5b3e9 100644 --- a/kubejs/assets/emi/category/properties/greate_packing.json +++ b/kubejs/assets/emi/category/properties/greate_packing.json @@ -1 +1 @@ -{"greate:packing":{"order":20}} \ No newline at end of file +{"greate:packing":{"order":21}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/greate_pressing.json b/kubejs/assets/emi/category/properties/greate_pressing.json index 093b47492..f05623873 100644 --- a/kubejs/assets/emi/category/properties/greate_pressing.json +++ b/kubejs/assets/emi/category/properties/greate_pressing.json @@ -1 +1 @@ -{"greate:pressing":{"order":95}} \ No newline at end of file +{"greate:pressing":{"order":96}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/greate_sawing.json b/kubejs/assets/emi/category/properties/greate_sawing.json index 226605069..f6ef0ca66 100644 --- a/kubejs/assets/emi/category/properties/greate_sawing.json +++ b/kubejs/assets/emi/category/properties/greate_sawing.json @@ -1 +1 @@ -{"greate:sawing":{"order":82}} \ No newline at end of file +{"greate:sawing":{"order":83}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_air_scrubber.json b/kubejs/assets/emi/category/properties/gtceu_air_scrubber.json index 0f5753045..cdcc3c2e9 100644 --- a/kubejs/assets/emi/category/properties/gtceu_air_scrubber.json +++ b/kubejs/assets/emi/category/properties/gtceu_air_scrubber.json @@ -1 +1 @@ -{"gtceu:air_scrubber":{"order":64}} \ No newline at end of file +{"gtceu:air_scrubber":{"order":65}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_alloy_blast_smelter.json b/kubejs/assets/emi/category/properties/gtceu_alloy_blast_smelter.json index 1966aff28..36847c267 100644 --- a/kubejs/assets/emi/category/properties/gtceu_alloy_blast_smelter.json +++ b/kubejs/assets/emi/category/properties/gtceu_alloy_blast_smelter.json @@ -1 +1 @@ -{"gtceu:alloy_blast_smelter":{"order":118}} \ No newline at end of file +{"gtceu:alloy_blast_smelter":{"order":119}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_alloy_smelter.json b/kubejs/assets/emi/category/properties/gtceu_alloy_smelter.json index e3716d43e..61f5e9466 100644 --- a/kubejs/assets/emi/category/properties/gtceu_alloy_smelter.json +++ b/kubejs/assets/emi/category/properties/gtceu_alloy_smelter.json @@ -1 +1 @@ -{"gtceu:alloy_smelter":{"order":65}} \ No newline at end of file +{"gtceu:alloy_smelter":{"order":66}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_aqueous_accumulator.json b/kubejs/assets/emi/category/properties/gtceu_aqueous_accumulator.json index 490cd68be..a1916b6fe 100644 --- a/kubejs/assets/emi/category/properties/gtceu_aqueous_accumulator.json +++ b/kubejs/assets/emi/category/properties/gtceu_aqueous_accumulator.json @@ -1 +1 @@ -{"gtceu:aqueous_accumulator":{"order":66}} \ No newline at end of file +{"gtceu:aqueous_accumulator":{"order":67}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_arc_furnace.json b/kubejs/assets/emi/category/properties/gtceu_arc_furnace.json index 52548bdc8..7a1b7bcbf 100644 --- a/kubejs/assets/emi/category/properties/gtceu_arc_furnace.json +++ b/kubejs/assets/emi/category/properties/gtceu_arc_furnace.json @@ -1 +1 @@ -{"gtceu:arc_furnace":{"order":67}} \ No newline at end of file +{"gtceu:arc_furnace":{"order":68}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_arc_furnace_recycling.json b/kubejs/assets/emi/category/properties/gtceu_arc_furnace_recycling.json index eed81b2af..c54c6ff48 100644 --- a/kubejs/assets/emi/category/properties/gtceu_arc_furnace_recycling.json +++ b/kubejs/assets/emi/category/properties/gtceu_arc_furnace_recycling.json @@ -1 +1 @@ -{"gtceu:arc_furnace_recycling":{"order":147}} \ No newline at end of file +{"gtceu:arc_furnace_recycling":{"order":148}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_assembler.json b/kubejs/assets/emi/category/properties/gtceu_assembler.json index af7c6b1fb..234f9b5c2 100644 --- a/kubejs/assets/emi/category/properties/gtceu_assembler.json +++ b/kubejs/assets/emi/category/properties/gtceu_assembler.json @@ -1 +1 @@ -{"gtceu:assembler":{"order":68}} \ No newline at end of file +{"gtceu:assembler":{"order":69}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_assembly_line.json b/kubejs/assets/emi/category/properties/gtceu_assembly_line.json index f393314dc..f69f24dfa 100644 --- a/kubejs/assets/emi/category/properties/gtceu_assembly_line.json +++ b/kubejs/assets/emi/category/properties/gtceu_assembly_line.json @@ -1 +1 @@ -{"gtceu:assembly_line":{"order":119}} \ No newline at end of file +{"gtceu:assembly_line":{"order":120}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_autoclave.json b/kubejs/assets/emi/category/properties/gtceu_autoclave.json index f6eeebeaa..80d85de23 100644 --- a/kubejs/assets/emi/category/properties/gtceu_autoclave.json +++ b/kubejs/assets/emi/category/properties/gtceu_autoclave.json @@ -1 +1 @@ -{"gtceu:autoclave":{"order":69}} \ No newline at end of file +{"gtceu:autoclave":{"order":70}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_bender.json b/kubejs/assets/emi/category/properties/gtceu_bender.json index c8e4f355c..596f90184 100644 --- a/kubejs/assets/emi/category/properties/gtceu_bender.json +++ b/kubejs/assets/emi/category/properties/gtceu_bender.json @@ -1 +1 @@ -{"gtceu:bender":{"order":72}} \ No newline at end of file +{"gtceu:bender":{"order":73}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_brewery.json b/kubejs/assets/emi/category/properties/gtceu_brewery.json index 2feaaecd9..aa274e3f0 100644 --- a/kubejs/assets/emi/category/properties/gtceu_brewery.json +++ b/kubejs/assets/emi/category/properties/gtceu_brewery.json @@ -1 +1 @@ -{"gtceu:brewery":{"order":73}} \ No newline at end of file +{"gtceu:brewery":{"order":74}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_canner.json b/kubejs/assets/emi/category/properties/gtceu_canner.json index 24777fab6..921217ba6 100644 --- a/kubejs/assets/emi/category/properties/gtceu_canner.json +++ b/kubejs/assets/emi/category/properties/gtceu_canner.json @@ -1 +1 @@ -{"gtceu:canner":{"order":74}} \ No newline at end of file +{"gtceu:canner":{"order":75}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_centrifuge.json b/kubejs/assets/emi/category/properties/gtceu_centrifuge.json index a0da2788f..ac23ecf16 100644 --- a/kubejs/assets/emi/category/properties/gtceu_centrifuge.json +++ b/kubejs/assets/emi/category/properties/gtceu_centrifuge.json @@ -1 +1 @@ -{"gtceu:centrifuge":{"order":76}} \ No newline at end of file +{"gtceu:centrifuge":{"order":77}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_chem_dyes.json b/kubejs/assets/emi/category/properties/gtceu_chem_dyes.json index f592dd78d..7308433c0 100644 --- a/kubejs/assets/emi/category/properties/gtceu_chem_dyes.json +++ b/kubejs/assets/emi/category/properties/gtceu_chem_dyes.json @@ -1 +1 @@ -{"gtceu:chem_dyes":{"order":145}} \ No newline at end of file +{"gtceu:chem_dyes":{"order":146}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_chemical_bath.json b/kubejs/assets/emi/category/properties/gtceu_chemical_bath.json index b3bc46bc3..18ba4a0a1 100644 --- a/kubejs/assets/emi/category/properties/gtceu_chemical_bath.json +++ b/kubejs/assets/emi/category/properties/gtceu_chemical_bath.json @@ -1 +1 @@ -{"gtceu:chemical_bath":{"order":77}} \ No newline at end of file +{"gtceu:chemical_bath":{"order":78}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_chemical_reactor.json b/kubejs/assets/emi/category/properties/gtceu_chemical_reactor.json index 999cdc075..f2b6e2ba9 100644 --- a/kubejs/assets/emi/category/properties/gtceu_chemical_reactor.json +++ b/kubejs/assets/emi/category/properties/gtceu_chemical_reactor.json @@ -1 +1 @@ -{"gtceu:chemical_reactor":{"order":78}} \ No newline at end of file +{"gtceu:chemical_reactor":{"order":79}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_circuit_assembler.json b/kubejs/assets/emi/category/properties/gtceu_circuit_assembler.json index a9035f672..57b891151 100644 --- a/kubejs/assets/emi/category/properties/gtceu_circuit_assembler.json +++ b/kubejs/assets/emi/category/properties/gtceu_circuit_assembler.json @@ -1 +1 @@ -{"gtceu:circuit_assembler":{"order":80}} \ No newline at end of file +{"gtceu:circuit_assembler":{"order":81}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_coke_oven.json b/kubejs/assets/emi/category/properties/gtceu_coke_oven.json index a748eed84..a90a0371a 100644 --- a/kubejs/assets/emi/category/properties/gtceu_coke_oven.json +++ b/kubejs/assets/emi/category/properties/gtceu_coke_oven.json @@ -1 +1 @@ -{"gtceu:coke_oven":{"order":54}} \ No newline at end of file +{"gtceu:coke_oven":{"order":55}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_combustion_generator.json b/kubejs/assets/emi/category/properties/gtceu_combustion_generator.json index e8dd1d373..69af8e994 100644 --- a/kubejs/assets/emi/category/properties/gtceu_combustion_generator.json +++ b/kubejs/assets/emi/category/properties/gtceu_combustion_generator.json @@ -1 +1 @@ -{"gtceu:combustion_generator":{"order":56}} \ No newline at end of file +{"gtceu:combustion_generator":{"order":57}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_compressor.json b/kubejs/assets/emi/category/properties/gtceu_compressor.json index 887d897a2..df469234e 100644 --- a/kubejs/assets/emi/category/properties/gtceu_compressor.json +++ b/kubejs/assets/emi/category/properties/gtceu_compressor.json @@ -1 +1 @@ -{"gtceu:compressor":{"order":81}} \ No newline at end of file +{"gtceu:compressor":{"order":82}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_cracker.json b/kubejs/assets/emi/category/properties/gtceu_cracker.json index adfd751b1..6ee0bc068 100644 --- a/kubejs/assets/emi/category/properties/gtceu_cracker.json +++ b/kubejs/assets/emi/category/properties/gtceu_cracker.json @@ -1 +1 @@ -{"gtceu:cracker":{"order":120}} \ No newline at end of file +{"gtceu:cracker":{"order":121}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_cutter.json b/kubejs/assets/emi/category/properties/gtceu_cutter.json index 63853d2e9..0e6f2d0f8 100644 --- a/kubejs/assets/emi/category/properties/gtceu_cutter.json +++ b/kubejs/assets/emi/category/properties/gtceu_cutter.json @@ -1 +1 @@ -{"gtceu:cutter":{"order":83}} \ No newline at end of file +{"gtceu:cutter":{"order":84}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_distillation_tower.json b/kubejs/assets/emi/category/properties/gtceu_distillation_tower.json index a59c83957..7b639c205 100644 --- a/kubejs/assets/emi/category/properties/gtceu_distillation_tower.json +++ b/kubejs/assets/emi/category/properties/gtceu_distillation_tower.json @@ -1 +1 @@ -{"gtceu:distillation_tower":{"order":85}} \ No newline at end of file +{"gtceu:distillation_tower":{"order":86}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_distillery.json b/kubejs/assets/emi/category/properties/gtceu_distillery.json index 60529857a..8865ab4ca 100644 --- a/kubejs/assets/emi/category/properties/gtceu_distillery.json +++ b/kubejs/assets/emi/category/properties/gtceu_distillery.json @@ -1 +1 @@ -{"gtceu:distillery":{"order":84}} \ No newline at end of file +{"gtceu:distillery":{"order":85}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_electric_blast_furnace.json b/kubejs/assets/emi/category/properties/gtceu_electric_blast_furnace.json index d0b1d7330..9bc5fdd8a 100644 --- a/kubejs/assets/emi/category/properties/gtceu_electric_blast_furnace.json +++ b/kubejs/assets/emi/category/properties/gtceu_electric_blast_furnace.json @@ -1 +1 @@ -{"gtceu:electric_blast_furnace":{"order":121}} \ No newline at end of file +{"gtceu:electric_blast_furnace":{"order":122}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_electrolyzer.json b/kubejs/assets/emi/category/properties/gtceu_electrolyzer.json index aad65d5eb..b19819592 100644 --- a/kubejs/assets/emi/category/properties/gtceu_electrolyzer.json +++ b/kubejs/assets/emi/category/properties/gtceu_electrolyzer.json @@ -1 +1 @@ -{"gtceu:electrolyzer":{"order":86}} \ No newline at end of file +{"gtceu:electrolyzer":{"order":87}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_electromagnetic_separator.json b/kubejs/assets/emi/category/properties/gtceu_electromagnetic_separator.json index 5e492014b..a87dcf567 100644 --- a/kubejs/assets/emi/category/properties/gtceu_electromagnetic_separator.json +++ b/kubejs/assets/emi/category/properties/gtceu_electromagnetic_separator.json @@ -1 +1 @@ -{"gtceu:electromagnetic_separator":{"order":87}} \ No newline at end of file +{"gtceu:electromagnetic_separator":{"order":88}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_end_dome.json b/kubejs/assets/emi/category/properties/gtceu_end_dome.json index 90069e47c..7e65a20f9 100644 --- a/kubejs/assets/emi/category/properties/gtceu_end_dome.json +++ b/kubejs/assets/emi/category/properties/gtceu_end_dome.json @@ -1 +1 @@ -{"gtceu:end_dome":{"order":122}} \ No newline at end of file +{"gtceu:end_dome":{"order":123}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_evaporation_tower.json b/kubejs/assets/emi/category/properties/gtceu_evaporation_tower.json index 64761da8c..fd56785de 100644 --- a/kubejs/assets/emi/category/properties/gtceu_evaporation_tower.json +++ b/kubejs/assets/emi/category/properties/gtceu_evaporation_tower.json @@ -1 +1 @@ -{"gtceu:evaporation_tower":{"order":123}} \ No newline at end of file +{"gtceu:evaporation_tower":{"order":124}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_extractor.json b/kubejs/assets/emi/category/properties/gtceu_extractor.json index d48c561fe..a9bb110ed 100644 --- a/kubejs/assets/emi/category/properties/gtceu_extractor.json +++ b/kubejs/assets/emi/category/properties/gtceu_extractor.json @@ -1 +1 @@ -{"gtceu:extractor":{"order":89}} \ No newline at end of file +{"gtceu:extractor":{"order":90}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_extractor_recycling.json b/kubejs/assets/emi/category/properties/gtceu_extractor_recycling.json index 15e4ca157..ea0376217 100644 --- a/kubejs/assets/emi/category/properties/gtceu_extractor_recycling.json +++ b/kubejs/assets/emi/category/properties/gtceu_extractor_recycling.json @@ -1 +1 @@ -{"gtceu:extractor_recycling":{"order":149}} \ No newline at end of file +{"gtceu:extractor_recycling":{"order":150}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_extraterrestrial_ore_fabricator.json b/kubejs/assets/emi/category/properties/gtceu_extraterrestrial_ore_fabricator.json index acae1097c..16bc2877e 100644 --- a/kubejs/assets/emi/category/properties/gtceu_extraterrestrial_ore_fabricator.json +++ b/kubejs/assets/emi/category/properties/gtceu_extraterrestrial_ore_fabricator.json @@ -1 +1 @@ -{"gtceu:extraterrestrial_ore_fabricator":{"order":124}} \ No newline at end of file +{"gtceu:extraterrestrial_ore_fabricator":{"order":125}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_extruder.json b/kubejs/assets/emi/category/properties/gtceu_extruder.json index 610b14f29..614ef6359 100644 --- a/kubejs/assets/emi/category/properties/gtceu_extruder.json +++ b/kubejs/assets/emi/category/properties/gtceu_extruder.json @@ -1 +1 @@ -{"gtceu:extruder":{"order":91}} \ No newline at end of file +{"gtceu:extruder":{"order":92}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_fermenter.json b/kubejs/assets/emi/category/properties/gtceu_fermenter.json index f4c38ecf9..1615f1895 100644 --- a/kubejs/assets/emi/category/properties/gtceu_fermenter.json +++ b/kubejs/assets/emi/category/properties/gtceu_fermenter.json @@ -1 +1 @@ -{"gtceu:fermenter":{"order":92}} \ No newline at end of file +{"gtceu:fermenter":{"order":93}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_fission_reactor.json b/kubejs/assets/emi/category/properties/gtceu_fission_reactor.json index ac604f3da..93b318077 100644 --- a/kubejs/assets/emi/category/properties/gtceu_fission_reactor.json +++ b/kubejs/assets/emi/category/properties/gtceu_fission_reactor.json @@ -1 +1 @@ -{"gtceu:fission_reactor":{"order":125}} \ No newline at end of file +{"gtceu:fission_reactor":{"order":126}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_fluid_heater.json b/kubejs/assets/emi/category/properties/gtceu_fluid_heater.json index 910d2b696..da0a3a793 100644 --- a/kubejs/assets/emi/category/properties/gtceu_fluid_heater.json +++ b/kubejs/assets/emi/category/properties/gtceu_fluid_heater.json @@ -1 +1 @@ -{"gtceu:fluid_heater":{"order":93}} \ No newline at end of file +{"gtceu:fluid_heater":{"order":94}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_fluid_solidifier.json b/kubejs/assets/emi/category/properties/gtceu_fluid_solidifier.json index 55fa6f31c..b0879849d 100644 --- a/kubejs/assets/emi/category/properties/gtceu_fluid_solidifier.json +++ b/kubejs/assets/emi/category/properties/gtceu_fluid_solidifier.json @@ -1 +1 @@ -{"gtceu:fluid_solidifier":{"order":94}} \ No newline at end of file +{"gtceu:fluid_solidifier":{"order":95}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_food_oven.json b/kubejs/assets/emi/category/properties/gtceu_food_oven.json index d274e4453..8eb36875b 100644 --- a/kubejs/assets/emi/category/properties/gtceu_food_oven.json +++ b/kubejs/assets/emi/category/properties/gtceu_food_oven.json @@ -1 +1 @@ -{"gtceu:food_oven":{"order":37}} \ No newline at end of file +{"gtceu:food_oven":{"order":38}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_food_processor.json b/kubejs/assets/emi/category/properties/gtceu_food_processor.json index 389e4a58f..951432e03 100644 --- a/kubejs/assets/emi/category/properties/gtceu_food_processor.json +++ b/kubejs/assets/emi/category/properties/gtceu_food_processor.json @@ -1 +1 @@ -{"gtceu:food_processor":{"order":45}} \ No newline at end of file +{"gtceu:food_processor":{"order":46}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_forge_hammer.json b/kubejs/assets/emi/category/properties/gtceu_forge_hammer.json index 285c2424a..5fe20fe2a 100644 --- a/kubejs/assets/emi/category/properties/gtceu_forge_hammer.json +++ b/kubejs/assets/emi/category/properties/gtceu_forge_hammer.json @@ -1 +1 @@ -{"gtceu:forge_hammer":{"order":96}} \ No newline at end of file +{"gtceu:forge_hammer":{"order":97}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_forming_press.json b/kubejs/assets/emi/category/properties/gtceu_forming_press.json index f894c5036..25283e417 100644 --- a/kubejs/assets/emi/category/properties/gtceu_forming_press.json +++ b/kubejs/assets/emi/category/properties/gtceu_forming_press.json @@ -1 +1 @@ -{"gtceu:forming_press":{"order":97}} \ No newline at end of file +{"gtceu:forming_press":{"order":98}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_fusion_reactor.json b/kubejs/assets/emi/category/properties/gtceu_fusion_reactor.json index 625f152b9..860f54182 100644 --- a/kubejs/assets/emi/category/properties/gtceu_fusion_reactor.json +++ b/kubejs/assets/emi/category/properties/gtceu_fusion_reactor.json @@ -1 +1 @@ -{"gtceu:fusion_reactor":{"order":126}} \ No newline at end of file +{"gtceu:fusion_reactor":{"order":127}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_gas_collector.json b/kubejs/assets/emi/category/properties/gtceu_gas_collector.json index a3200fc97..ed8c7953d 100644 --- a/kubejs/assets/emi/category/properties/gtceu_gas_collector.json +++ b/kubejs/assets/emi/category/properties/gtceu_gas_collector.json @@ -1 +1 @@ -{"gtceu:gas_collector":{"order":98}} \ No newline at end of file +{"gtceu:gas_collector":{"order":99}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_gas_pressurizer.json b/kubejs/assets/emi/category/properties/gtceu_gas_pressurizer.json index 88401f930..36a87e84e 100644 --- a/kubejs/assets/emi/category/properties/gtceu_gas_pressurizer.json +++ b/kubejs/assets/emi/category/properties/gtceu_gas_pressurizer.json @@ -1 +1 @@ -{"gtceu:gas_pressurizer":{"order":99}} \ No newline at end of file +{"gtceu:gas_pressurizer":{"order":100}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_gas_turbine.json b/kubejs/assets/emi/category/properties/gtceu_gas_turbine.json index de55487e9..dbefb1122 100644 --- a/kubejs/assets/emi/category/properties/gtceu_gas_turbine.json +++ b/kubejs/assets/emi/category/properties/gtceu_gas_turbine.json @@ -1 +1 @@ -{"gtceu:gas_turbine":{"order":57}} \ No newline at end of file +{"gtceu:gas_turbine":{"order":58}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_greenhouse.json b/kubejs/assets/emi/category/properties/gtceu_greenhouse.json index 1361a60ec..8ad04e39d 100644 --- a/kubejs/assets/emi/category/properties/gtceu_greenhouse.json +++ b/kubejs/assets/emi/category/properties/gtceu_greenhouse.json @@ -1 +1 @@ -{"gtceu:greenhouse":{"order":127}} \ No newline at end of file +{"gtceu:greenhouse":{"order":128}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_heat_exchanger.json b/kubejs/assets/emi/category/properties/gtceu_heat_exchanger.json index 93287f083..c320447a9 100644 --- a/kubejs/assets/emi/category/properties/gtceu_heat_exchanger.json +++ b/kubejs/assets/emi/category/properties/gtceu_heat_exchanger.json @@ -1 +1 @@ -{"gtceu:heat_exchanger":{"order":128}} \ No newline at end of file +{"gtceu:heat_exchanger":{"order":129}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_implosion_compressor.json b/kubejs/assets/emi/category/properties/gtceu_implosion_compressor.json index c7c455065..ba383ef25 100644 --- a/kubejs/assets/emi/category/properties/gtceu_implosion_compressor.json +++ b/kubejs/assets/emi/category/properties/gtceu_implosion_compressor.json @@ -1 +1 @@ -{"gtceu:implosion_compressor":{"order":129}} \ No newline at end of file +{"gtceu:implosion_compressor":{"order":130}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_ingot_molding.json b/kubejs/assets/emi/category/properties/gtceu_ingot_molding.json index 691d3f64b..824de57ec 100644 --- a/kubejs/assets/emi/category/properties/gtceu_ingot_molding.json +++ b/kubejs/assets/emi/category/properties/gtceu_ingot_molding.json @@ -1 +1 @@ -{"gtceu:ingot_molding":{"order":146}} \ No newline at end of file +{"gtceu:ingot_molding":{"order":147}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_large_boiler.json b/kubejs/assets/emi/category/properties/gtceu_large_boiler.json index 017f02705..e2f143017 100644 --- a/kubejs/assets/emi/category/properties/gtceu_large_boiler.json +++ b/kubejs/assets/emi/category/properties/gtceu_large_boiler.json @@ -1 +1 @@ -{"gtceu:large_boiler":{"order":52}} \ No newline at end of file +{"gtceu:large_boiler":{"order":53}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_large_chemical_reactor.json b/kubejs/assets/emi/category/properties/gtceu_large_chemical_reactor.json index 79caae4df..1ed5d57ef 100644 --- a/kubejs/assets/emi/category/properties/gtceu_large_chemical_reactor.json +++ b/kubejs/assets/emi/category/properties/gtceu_large_chemical_reactor.json @@ -1 +1 @@ -{"gtceu:large_chemical_reactor":{"order":79}} \ No newline at end of file +{"gtceu:large_chemical_reactor":{"order":80}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_large_solar_panel.json b/kubejs/assets/emi/category/properties/gtceu_large_solar_panel.json index e844a6cd9..4e5f39659 100644 --- a/kubejs/assets/emi/category/properties/gtceu_large_solar_panel.json +++ b/kubejs/assets/emi/category/properties/gtceu_large_solar_panel.json @@ -1 +1 @@ -{"gtceu:large_solar_panel":{"order":58}} \ No newline at end of file +{"gtceu:large_solar_panel":{"order":59}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_large_solar_panel_tier2.json b/kubejs/assets/emi/category/properties/gtceu_large_solar_panel_tier2.json index 343e82674..3aabd7618 100644 --- a/kubejs/assets/emi/category/properties/gtceu_large_solar_panel_tier2.json +++ b/kubejs/assets/emi/category/properties/gtceu_large_solar_panel_tier2.json @@ -1 +1 @@ -{"gtceu:large_solar_panel_tier2":{"order":59}} \ No newline at end of file +{"gtceu:large_solar_panel_tier2":{"order":60}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_large_solar_panel_tier3.json b/kubejs/assets/emi/category/properties/gtceu_large_solar_panel_tier3.json index 2b1404f91..c23f6d22a 100644 --- a/kubejs/assets/emi/category/properties/gtceu_large_solar_panel_tier3.json +++ b/kubejs/assets/emi/category/properties/gtceu_large_solar_panel_tier3.json @@ -1 +1 @@ -{"gtceu:large_solar_panel_tier3":{"order":60}} \ No newline at end of file +{"gtceu:large_solar_panel_tier3":{"order":61}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_laser_engraver.json b/kubejs/assets/emi/category/properties/gtceu_laser_engraver.json index b67066b93..2fede269c 100644 --- a/kubejs/assets/emi/category/properties/gtceu_laser_engraver.json +++ b/kubejs/assets/emi/category/properties/gtceu_laser_engraver.json @@ -1 +1 @@ -{"gtceu:laser_engraver":{"order":101}} \ No newline at end of file +{"gtceu:laser_engraver":{"order":102}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_lathe.json b/kubejs/assets/emi/category/properties/gtceu_lathe.json index 5e1f3de87..ac35ee62c 100644 --- a/kubejs/assets/emi/category/properties/gtceu_lathe.json +++ b/kubejs/assets/emi/category/properties/gtceu_lathe.json @@ -1 +1 @@ -{"gtceu:lathe":{"order":103}} \ No newline at end of file +{"gtceu:lathe":{"order":104}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_macerator.json b/kubejs/assets/emi/category/properties/gtceu_macerator.json index 7cee676ec..4772ee2d3 100644 --- a/kubejs/assets/emi/category/properties/gtceu_macerator.json +++ b/kubejs/assets/emi/category/properties/gtceu_macerator.json @@ -1 +1 @@ -{"gtceu:macerator":{"order":106}} \ No newline at end of file +{"gtceu:macerator":{"order":107}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_macerator_recycling.json b/kubejs/assets/emi/category/properties/gtceu_macerator_recycling.json index 47e261972..c4e5c1f1d 100644 --- a/kubejs/assets/emi/category/properties/gtceu_macerator_recycling.json +++ b/kubejs/assets/emi/category/properties/gtceu_macerator_recycling.json @@ -1 +1 @@ -{"gtceu:macerator_recycling":{"order":148}} \ No newline at end of file +{"gtceu:macerator_recycling":{"order":149}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_mixer.json b/kubejs/assets/emi/category/properties/gtceu_mixer.json index 772935fd5..eea125b10 100644 --- a/kubejs/assets/emi/category/properties/gtceu_mixer.json +++ b/kubejs/assets/emi/category/properties/gtceu_mixer.json @@ -1 +1 @@ -{"gtceu:mixer":{"order":107}} \ No newline at end of file +{"gtceu:mixer":{"order":108}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_moon_dust_harvester.json b/kubejs/assets/emi/category/properties/gtceu_moon_dust_harvester.json index 803200e6f..d2db7223e 100644 --- a/kubejs/assets/emi/category/properties/gtceu_moon_dust_harvester.json +++ b/kubejs/assets/emi/category/properties/gtceu_moon_dust_harvester.json @@ -1 +1 @@ -{"gtceu:moon_dust_harvester":{"order":133}} \ No newline at end of file +{"gtceu:moon_dust_harvester":{"order":134}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_nether_dome.json b/kubejs/assets/emi/category/properties/gtceu_nether_dome.json index 1ea8384f5..5cbbaf9e8 100644 --- a/kubejs/assets/emi/category/properties/gtceu_nether_dome.json +++ b/kubejs/assets/emi/category/properties/gtceu_nether_dome.json @@ -1 +1 @@ -{"gtceu:nether_dome":{"order":130}} \ No newline at end of file +{"gtceu:nether_dome":{"order":131}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_nuclear_fuel_factory.json b/kubejs/assets/emi/category/properties/gtceu_nuclear_fuel_factory.json index 53a66941c..b22942876 100644 --- a/kubejs/assets/emi/category/properties/gtceu_nuclear_fuel_factory.json +++ b/kubejs/assets/emi/category/properties/gtceu_nuclear_fuel_factory.json @@ -1 +1 @@ -{"gtceu:nuclear_fuel_factory":{"order":131}} \ No newline at end of file +{"gtceu:nuclear_fuel_factory":{"order":132}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_ore_bathing.json b/kubejs/assets/emi/category/properties/gtceu_ore_bathing.json index 7f72fd197..5216731be 100644 --- a/kubejs/assets/emi/category/properties/gtceu_ore_bathing.json +++ b/kubejs/assets/emi/category/properties/gtceu_ore_bathing.json @@ -1 +1 @@ -{"gtceu:ore_bathing":{"order":144}} \ No newline at end of file +{"gtceu:ore_bathing":{"order":145}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_ore_crushing.json b/kubejs/assets/emi/category/properties/gtceu_ore_crushing.json index b05b57f76..072894f45 100644 --- a/kubejs/assets/emi/category/properties/gtceu_ore_crushing.json +++ b/kubejs/assets/emi/category/properties/gtceu_ore_crushing.json @@ -1 +1 @@ -{"gtceu:ore_crushing":{"order":142}} \ No newline at end of file +{"gtceu:ore_crushing":{"order":143}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_ore_forging.json b/kubejs/assets/emi/category/properties/gtceu_ore_forging.json index dc6d9e3ac..76407ad93 100644 --- a/kubejs/assets/emi/category/properties/gtceu_ore_forging.json +++ b/kubejs/assets/emi/category/properties/gtceu_ore_forging.json @@ -1 +1 @@ -{"gtceu:ore_forging":{"order":143}} \ No newline at end of file +{"gtceu:ore_forging":{"order":144}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_ore_washer.json b/kubejs/assets/emi/category/properties/gtceu_ore_washer.json index 7b7d0a331..a64848e73 100644 --- a/kubejs/assets/emi/category/properties/gtceu_ore_washer.json +++ b/kubejs/assets/emi/category/properties/gtceu_ore_washer.json @@ -1 +1 @@ -{"gtceu:ore_washer":{"order":140}} \ No newline at end of file +{"gtceu:ore_washer":{"order":141}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_ostrum_harvester.json b/kubejs/assets/emi/category/properties/gtceu_ostrum_harvester.json index 0e164cd61..c1e166546 100644 --- a/kubejs/assets/emi/category/properties/gtceu_ostrum_harvester.json +++ b/kubejs/assets/emi/category/properties/gtceu_ostrum_harvester.json @@ -1 +1 @@ -{"gtceu:ostrum_harvester":{"order":132}} \ No newline at end of file +{"gtceu:ostrum_harvester":{"order":133}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_ostrum_linear_accelerator.json b/kubejs/assets/emi/category/properties/gtceu_ostrum_linear_accelerator.json new file mode 100644 index 000000000..ced3d8e88 --- /dev/null +++ b/kubejs/assets/emi/category/properties/gtceu_ostrum_linear_accelerator.json @@ -0,0 +1 @@ +{"gtceu:ostrum_linear_accelerator":{"order":125}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_ostrum_particle_accelerator.json b/kubejs/assets/emi/category/properties/gtceu_ostrum_particle_accelerator.json new file mode 100644 index 000000000..ceab87237 --- /dev/null +++ b/kubejs/assets/emi/category/properties/gtceu_ostrum_particle_accelerator.json @@ -0,0 +1 @@ +{"gtceu:ostrum_particle_accelerator":{"order":125}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_packer.json b/kubejs/assets/emi/category/properties/gtceu_packer.json index 16b74a5b5..f330f174d 100644 --- a/kubejs/assets/emi/category/properties/gtceu_packer.json +++ b/kubejs/assets/emi/category/properties/gtceu_packer.json @@ -1 +1 @@ -{"gtceu:packer":{"order":109}} \ No newline at end of file +{"gtceu:packer":{"order":110}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_plasma_generator.json b/kubejs/assets/emi/category/properties/gtceu_plasma_generator.json index 196a09f94..c51602a6c 100644 --- a/kubejs/assets/emi/category/properties/gtceu_plasma_generator.json +++ b/kubejs/assets/emi/category/properties/gtceu_plasma_generator.json @@ -1 +1 @@ -{"gtceu:plasma_generator":{"order":61}} \ No newline at end of file +{"gtceu:plasma_generator":{"order":62}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_polarizer.json b/kubejs/assets/emi/category/properties/gtceu_polarizer.json index 22445e0d3..4aaef4e93 100644 --- a/kubejs/assets/emi/category/properties/gtceu_polarizer.json +++ b/kubejs/assets/emi/category/properties/gtceu_polarizer.json @@ -1 +1 @@ -{"gtceu:polarizer":{"order":110}} \ No newline at end of file +{"gtceu:polarizer":{"order":111}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_programmed_circuit.json b/kubejs/assets/emi/category/properties/gtceu_programmed_circuit.json index 4bdba8aed..e619a3fca 100644 --- a/kubejs/assets/emi/category/properties/gtceu_programmed_circuit.json +++ b/kubejs/assets/emi/category/properties/gtceu_programmed_circuit.json @@ -1 +1 @@ -{"gtceu:programmed_circuit":{"order":167}} \ No newline at end of file +{"gtceu:programmed_circuit":{"order":168}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_pyrolyse_oven.json b/kubejs/assets/emi/category/properties/gtceu_pyrolyse_oven.json index 5fef26d48..c0c6ff93c 100644 --- a/kubejs/assets/emi/category/properties/gtceu_pyrolyse_oven.json +++ b/kubejs/assets/emi/category/properties/gtceu_pyrolyse_oven.json @@ -1 +1 @@ -{"gtceu:pyrolyse_oven":{"order":134}} \ No newline at end of file +{"gtceu:pyrolyse_oven":{"order":135}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_research_station.json b/kubejs/assets/emi/category/properties/gtceu_research_station.json index 0421b74de..623d0b35a 100644 --- a/kubejs/assets/emi/category/properties/gtceu_research_station.json +++ b/kubejs/assets/emi/category/properties/gtceu_research_station.json @@ -1 +1 @@ -{"gtceu:research_station":{"order":135}} \ No newline at end of file +{"gtceu:research_station":{"order":136}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_rock_breaker.json b/kubejs/assets/emi/category/properties/gtceu_rock_breaker.json index 0924517cc..9ef491749 100644 --- a/kubejs/assets/emi/category/properties/gtceu_rock_breaker.json +++ b/kubejs/assets/emi/category/properties/gtceu_rock_breaker.json @@ -1 +1 @@ -{"gtceu:rock_breaker":{"order":111}} \ No newline at end of file +{"gtceu:rock_breaker":{"order":112}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_scanner.json b/kubejs/assets/emi/category/properties/gtceu_scanner.json index ab84eb5d0..25ea17981 100644 --- a/kubejs/assets/emi/category/properties/gtceu_scanner.json +++ b/kubejs/assets/emi/category/properties/gtceu_scanner.json @@ -1 +1 @@ -{"gtceu:scanner":{"order":112}} \ No newline at end of file +{"gtceu:scanner":{"order":113}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_sifter.json b/kubejs/assets/emi/category/properties/gtceu_sifter.json index 9aff930ce..c8a57ef15 100644 --- a/kubejs/assets/emi/category/properties/gtceu_sifter.json +++ b/kubejs/assets/emi/category/properties/gtceu_sifter.json @@ -1 +1 @@ -{"gtceu:sifter":{"order":114}} \ No newline at end of file +{"gtceu:sifter":{"order":115}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_steam_bloomery.json b/kubejs/assets/emi/category/properties/gtceu_steam_bloomery.json index e0f7f088f..7a897a5a8 100644 --- a/kubejs/assets/emi/category/properties/gtceu_steam_bloomery.json +++ b/kubejs/assets/emi/category/properties/gtceu_steam_bloomery.json @@ -1 +1 @@ -{"gtceu:steam_bloomery":{"order":136}} \ No newline at end of file +{"gtceu:steam_bloomery":{"order":137}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_steam_boiler.json b/kubejs/assets/emi/category/properties/gtceu_steam_boiler.json index 4c8f1ada4..5dfbc6cfe 100644 --- a/kubejs/assets/emi/category/properties/gtceu_steam_boiler.json +++ b/kubejs/assets/emi/category/properties/gtceu_steam_boiler.json @@ -1 +1 @@ -{"gtceu:steam_boiler":{"order":53}} \ No newline at end of file +{"gtceu:steam_boiler":{"order":54}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_steam_turbine.json b/kubejs/assets/emi/category/properties/gtceu_steam_turbine.json index 359e8d5e2..b6d5e45fa 100644 --- a/kubejs/assets/emi/category/properties/gtceu_steam_turbine.json +++ b/kubejs/assets/emi/category/properties/gtceu_steam_turbine.json @@ -1 +1 @@ -{"gtceu:steam_turbine":{"order":62}} \ No newline at end of file +{"gtceu:steam_turbine":{"order":63}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_thermal_centrifuge.json b/kubejs/assets/emi/category/properties/gtceu_thermal_centrifuge.json index 465cbe36e..ad794c898 100644 --- a/kubejs/assets/emi/category/properties/gtceu_thermal_centrifuge.json +++ b/kubejs/assets/emi/category/properties/gtceu_thermal_centrifuge.json @@ -1 +1 @@ -{"gtceu:thermal_centrifuge":{"order":115}} \ No newline at end of file +{"gtceu:thermal_centrifuge":{"order":116}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_vacuum_freezer.json b/kubejs/assets/emi/category/properties/gtceu_vacuum_freezer.json index 7de68c9e7..30b68367f 100644 --- a/kubejs/assets/emi/category/properties/gtceu_vacuum_freezer.json +++ b/kubejs/assets/emi/category/properties/gtceu_vacuum_freezer.json @@ -1 +1 @@ -{"gtceu:vacuum_freezer":{"order":137}} \ No newline at end of file +{"gtceu:vacuum_freezer":{"order":138}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_wire_coating.json b/kubejs/assets/emi/category/properties/gtceu_wire_coating.json index 0a8a44291..10fec3505 100644 --- a/kubejs/assets/emi/category/properties/gtceu_wire_coating.json +++ b/kubejs/assets/emi/category/properties/gtceu_wire_coating.json @@ -1 +1 @@ -{"gtceu:wire_coating":{"order":138}} \ No newline at end of file +{"gtceu:wire_coating":{"order":139}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_wiremill.json b/kubejs/assets/emi/category/properties/gtceu_wiremill.json index 0f4c0c96a..f8e917d64 100644 --- a/kubejs/assets/emi/category/properties/gtceu_wiremill.json +++ b/kubejs/assets/emi/category/properties/gtceu_wiremill.json @@ -1 +1 @@ -{"gtceu:wiremill":{"order":117}} \ No newline at end of file +{"gtceu:wiremill":{"order":118}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/minecraft_smelting.json b/kubejs/assets/emi/category/properties/minecraft_smelting.json index f555a0a1b..77cfa9322 100644 --- a/kubejs/assets/emi/category/properties/minecraft_smelting.json +++ b/kubejs/assets/emi/category/properties/minecraft_smelting.json @@ -1 +1 @@ -{"minecraft:smelting":{"order":63}} \ No newline at end of file +{"minecraft:smelting":{"order":64}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/minecraft_smithing.json b/kubejs/assets/emi/category/properties/minecraft_smithing.json index 2555ee200..a80bc66ad 100644 --- a/kubejs/assets/emi/category/properties/minecraft_smithing.json +++ b/kubejs/assets/emi/category/properties/minecraft_smithing.json @@ -1 +1 @@ -{"minecraft:smithing":{"order":154}} \ No newline at end of file +{"minecraft:smithing":{"order":155}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/minecraft_stonecutting.json b/kubejs/assets/emi/category/properties/minecraft_stonecutting.json index 503fa0f66..3ecf23c90 100644 --- a/kubejs/assets/emi/category/properties/minecraft_stonecutting.json +++ b/kubejs/assets/emi/category/properties/minecraft_stonecutting.json @@ -1 +1 @@ -{"minecraft:stonecutting":{"order":156}} \ No newline at end of file +{"minecraft:stonecutting":{"order":157}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/rnr_block_mod.json b/kubejs/assets/emi/category/properties/rnr_block_mod.json index 36b8bf109..8ab0b1d64 100644 --- a/kubejs/assets/emi/category/properties/rnr_block_mod.json +++ b/kubejs/assets/emi/category/properties/rnr_block_mod.json @@ -1 +1 @@ -{"rnr:block_mod":{"order":46}} \ No newline at end of file +{"rnr:block_mod":{"order":47}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/rnr_mattock.json b/kubejs/assets/emi/category/properties/rnr_mattock.json index d6d26d1c8..ef212895f 100644 --- a/kubejs/assets/emi/category/properties/rnr_mattock.json +++ b/kubejs/assets/emi/category/properties/rnr_mattock.json @@ -1 +1 @@ -{"rnr:mattock":{"order":47}} \ No newline at end of file +{"rnr:mattock":{"order":48}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/tacz_attachment_query.json b/kubejs/assets/emi/category/properties/tacz_attachment_query.json index c6e0a8465..1464d199a 100644 --- a/kubejs/assets/emi/category/properties/tacz_attachment_query.json +++ b/kubejs/assets/emi/category/properties/tacz_attachment_query.json @@ -1 +1 @@ -{"tacz:attachment_query":{"order":165}} \ No newline at end of file +{"tacz:attachment_query":{"order":166}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/taczammoquery_ammo_query.json b/kubejs/assets/emi/category/properties/taczammoquery_ammo_query.json index b41343d9b..9bdf728e2 100644 --- a/kubejs/assets/emi/category/properties/taczammoquery_ammo_query.json +++ b/kubejs/assets/emi/category/properties/taczammoquery_ammo_query.json @@ -1 +1 @@ -{"taczammoquery:ammo_query":{"order":166}} \ No newline at end of file +{"taczammoquery:ammo_query":{"order":167}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/tfc_alloying.json b/kubejs/assets/emi/category/properties/tfc_alloying.json index c5957a5f8..73194c877 100644 --- a/kubejs/assets/emi/category/properties/tfc_alloying.json +++ b/kubejs/assets/emi/category/properties/tfc_alloying.json @@ -1 +1 @@ -{"tfc:alloying":{"order":27}} \ No newline at end of file +{"tfc:alloying":{"order":28}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/tfc_anvil.json b/kubejs/assets/emi/category/properties/tfc_anvil.json index c7d8ddb6b..41ead7698 100644 --- a/kubejs/assets/emi/category/properties/tfc_anvil.json +++ b/kubejs/assets/emi/category/properties/tfc_anvil.json @@ -1 +1 @@ -{"tfc:anvil":{"order":18}} \ No newline at end of file +{"tfc:anvil":{"order":19}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/tfc_blast_furnace.json b/kubejs/assets/emi/category/properties/tfc_blast_furnace.json index e93d4aba2..bcf2aeb66 100644 --- a/kubejs/assets/emi/category/properties/tfc_blast_furnace.json +++ b/kubejs/assets/emi/category/properties/tfc_blast_furnace.json @@ -1 +1 @@ -{"tfc:blast_furnace":{"order":26}} \ No newline at end of file +{"tfc:blast_furnace":{"order":27}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/tfc_bloomery.json b/kubejs/assets/emi/category/properties/tfc_bloomery.json index 9bacd24bd..64e2b0fc5 100644 --- a/kubejs/assets/emi/category/properties/tfc_bloomery.json +++ b/kubejs/assets/emi/category/properties/tfc_bloomery.json @@ -1 +1 @@ -{"tfc:bloomery":{"order":25}} \ No newline at end of file +{"tfc:bloomery":{"order":26}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/tfc_casting.json b/kubejs/assets/emi/category/properties/tfc_casting.json index d2f2968df..7ab19f53a 100644 --- a/kubejs/assets/emi/category/properties/tfc_casting.json +++ b/kubejs/assets/emi/category/properties/tfc_casting.json @@ -1 +1 @@ -{"tfc:casting":{"order":17}} \ No newline at end of file +{"tfc:casting":{"order":18}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/tfc_chisel.json b/kubejs/assets/emi/category/properties/tfc_chisel.json index 419e3ec46..e1060b283 100644 --- a/kubejs/assets/emi/category/properties/tfc_chisel.json +++ b/kubejs/assets/emi/category/properties/tfc_chisel.json @@ -1 +1 @@ -{"tfc:chisel":{"order":32}} \ No newline at end of file +{"tfc:chisel":{"order":33}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/tfc_glassworking.json b/kubejs/assets/emi/category/properties/tfc_glassworking.json index 18efe8a88..6e0a43dc4 100644 --- a/kubejs/assets/emi/category/properties/tfc_glassworking.json +++ b/kubejs/assets/emi/category/properties/tfc_glassworking.json @@ -1 +1 @@ -{"tfc:glassworking":{"order":31}} \ No newline at end of file +{"tfc:glassworking":{"order":32}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/tfc_heating.json b/kubejs/assets/emi/category/properties/tfc_heating.json index 5bb4a31bd..1d8ff6480 100644 --- a/kubejs/assets/emi/category/properties/tfc_heating.json +++ b/kubejs/assets/emi/category/properties/tfc_heating.json @@ -1 +1 @@ -{"tfc:heating":{"order":15}} \ No newline at end of file +{"tfc:heating":{"order":16}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/tfc_instant_barrel.json b/kubejs/assets/emi/category/properties/tfc_instant_barrel.json index 954ec96f9..d877178e4 100644 --- a/kubejs/assets/emi/category/properties/tfc_instant_barrel.json +++ b/kubejs/assets/emi/category/properties/tfc_instant_barrel.json @@ -1 +1 @@ -{"tfc:instant_barrel":{"order":22}} \ No newline at end of file +{"tfc:instant_barrel":{"order":23}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/tfc_instant_fluid_barrel.json b/kubejs/assets/emi/category/properties/tfc_instant_fluid_barrel.json index c7b5e33b8..e7477e0f5 100644 --- a/kubejs/assets/emi/category/properties/tfc_instant_fluid_barrel.json +++ b/kubejs/assets/emi/category/properties/tfc_instant_fluid_barrel.json @@ -1 +1 @@ -{"tfc:instant_fluid_barrel":{"order":23}} \ No newline at end of file +{"tfc:instant_fluid_barrel":{"order":24}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/tfc_jam_pot.json b/kubejs/assets/emi/category/properties/tfc_jam_pot.json index 3e53f5d1c..0aef4616a 100644 --- a/kubejs/assets/emi/category/properties/tfc_jam_pot.json +++ b/kubejs/assets/emi/category/properties/tfc_jam_pot.json @@ -1 +1 @@ -{"tfc:jam_pot":{"order":41}} \ No newline at end of file +{"tfc:jam_pot":{"order":42}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/tfc_loom.json b/kubejs/assets/emi/category/properties/tfc_loom.json index fe0390fdb..e75a691b5 100644 --- a/kubejs/assets/emi/category/properties/tfc_loom.json +++ b/kubejs/assets/emi/category/properties/tfc_loom.json @@ -1 +1 @@ -{"tfc:loom":{"order":30}} \ No newline at end of file +{"tfc:loom":{"order":31}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/tfc_quern.json b/kubejs/assets/emi/category/properties/tfc_quern.json index 37fe15487..236da9c3b 100644 --- a/kubejs/assets/emi/category/properties/tfc_quern.json +++ b/kubejs/assets/emi/category/properties/tfc_quern.json @@ -1 +1 @@ -{"tfc:quern":{"order":16}} \ No newline at end of file +{"tfc:quern":{"order":17}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/tfc_scraping.json b/kubejs/assets/emi/category/properties/tfc_scraping.json index 46ae32c02..e14d944ca 100644 --- a/kubejs/assets/emi/category/properties/tfc_scraping.json +++ b/kubejs/assets/emi/category/properties/tfc_scraping.json @@ -1 +1 @@ -{"tfc:scraping":{"order":29}} \ No newline at end of file +{"tfc:scraping":{"order":30}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/tfc_sealed_barrel.json b/kubejs/assets/emi/category/properties/tfc_sealed_barrel.json index aa3629ab4..e03845208 100644 --- a/kubejs/assets/emi/category/properties/tfc_sealed_barrel.json +++ b/kubejs/assets/emi/category/properties/tfc_sealed_barrel.json @@ -1 +1 @@ -{"tfc:sealed_barrel":{"order":24}} \ No newline at end of file +{"tfc:sealed_barrel":{"order":25}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/tfc_sewing.json b/kubejs/assets/emi/category/properties/tfc_sewing.json index 604fca5b0..75fbf2ebf 100644 --- a/kubejs/assets/emi/category/properties/tfc_sewing.json +++ b/kubejs/assets/emi/category/properties/tfc_sewing.json @@ -1 +1 @@ -{"tfc:sewing":{"order":33}} \ No newline at end of file +{"tfc:sewing":{"order":34}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/tfc_simple_pot.json b/kubejs/assets/emi/category/properties/tfc_simple_pot.json index ba140e7ef..1fb8c60ce 100644 --- a/kubejs/assets/emi/category/properties/tfc_simple_pot.json +++ b/kubejs/assets/emi/category/properties/tfc_simple_pot.json @@ -1 +1 @@ -{"tfc:simple_pot":{"order":39}} \ No newline at end of file +{"tfc:simple_pot":{"order":40}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/tfc_soup_pot.json b/kubejs/assets/emi/category/properties/tfc_soup_pot.json index b2c2e4095..2692e0a12 100644 --- a/kubejs/assets/emi/category/properties/tfc_soup_pot.json +++ b/kubejs/assets/emi/category/properties/tfc_soup_pot.json @@ -1 +1 @@ -{"tfc:soup_pot":{"order":40}} \ No newline at end of file +{"tfc:soup_pot":{"order":41}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/tfc_straw_knapping.json b/kubejs/assets/emi/category/properties/tfc_straw_knapping.json new file mode 100644 index 000000000..5927ba0df --- /dev/null +++ b/kubejs/assets/emi/category/properties/tfc_straw_knapping.json @@ -0,0 +1 @@ +{"tfc:straw_knapping":{"order":15}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/tfc_welding.json b/kubejs/assets/emi/category/properties/tfc_welding.json index ecfe7805f..0d3fa1c3a 100644 --- a/kubejs/assets/emi/category/properties/tfc_welding.json +++ b/kubejs/assets/emi/category/properties/tfc_welding.json @@ -1 +1 @@ -{"tfc:welding":{"order":19}} \ No newline at end of file +{"tfc:welding":{"order":20}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/vintageimprovements_centrifugation.json b/kubejs/assets/emi/category/properties/vintageimprovements_centrifugation.json index e972a37f8..9d66aa838 100644 --- a/kubejs/assets/emi/category/properties/vintageimprovements_centrifugation.json +++ b/kubejs/assets/emi/category/properties/vintageimprovements_centrifugation.json @@ -1 +1 @@ -{"vintageimprovements:centrifugation":{"order":75}} \ No newline at end of file +{"vintageimprovements:centrifugation":{"order":76}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/vintageimprovements_coiling.json b/kubejs/assets/emi/category/properties/vintageimprovements_coiling.json index e50b4f5cc..a4cb9e508 100644 --- a/kubejs/assets/emi/category/properties/vintageimprovements_coiling.json +++ b/kubejs/assets/emi/category/properties/vintageimprovements_coiling.json @@ -1 +1 @@ -{"vintageimprovements:coiling":{"order":116}} \ No newline at end of file +{"vintageimprovements:coiling":{"order":117}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/vintageimprovements_curving.json b/kubejs/assets/emi/category/properties/vintageimprovements_curving.json index 9726a6424..5a6c39214 100644 --- a/kubejs/assets/emi/category/properties/vintageimprovements_curving.json +++ b/kubejs/assets/emi/category/properties/vintageimprovements_curving.json @@ -1 +1 @@ -{"vintageimprovements:curving":{"order":90}} \ No newline at end of file +{"vintageimprovements:curving":{"order":91}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/vintageimprovements_hammering.json b/kubejs/assets/emi/category/properties/vintageimprovements_hammering.json index 71ff054af..648a027a6 100644 --- a/kubejs/assets/emi/category/properties/vintageimprovements_hammering.json +++ b/kubejs/assets/emi/category/properties/vintageimprovements_hammering.json @@ -1 +1 @@ -{"vintageimprovements:hammering":{"order":21}} \ No newline at end of file +{"vintageimprovements:hammering":{"order":22}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/vintageimprovements_laser_cutting.json b/kubejs/assets/emi/category/properties/vintageimprovements_laser_cutting.json index a46345934..13500601d 100644 --- a/kubejs/assets/emi/category/properties/vintageimprovements_laser_cutting.json +++ b/kubejs/assets/emi/category/properties/vintageimprovements_laser_cutting.json @@ -1 +1 @@ -{"vintageimprovements:laser_cutting":{"order":100}} \ No newline at end of file +{"vintageimprovements:laser_cutting":{"order":101}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/vintageimprovements_pressurizing.json b/kubejs/assets/emi/category/properties/vintageimprovements_pressurizing.json index 20e26d661..445156770 100644 --- a/kubejs/assets/emi/category/properties/vintageimprovements_pressurizing.json +++ b/kubejs/assets/emi/category/properties/vintageimprovements_pressurizing.json @@ -1 +1 @@ -{"vintageimprovements:pressurizing":{"order":71}} \ No newline at end of file +{"vintageimprovements:pressurizing":{"order":72}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/vintageimprovements_turning.json b/kubejs/assets/emi/category/properties/vintageimprovements_turning.json index 317496985..8690c5b48 100644 --- a/kubejs/assets/emi/category/properties/vintageimprovements_turning.json +++ b/kubejs/assets/emi/category/properties/vintageimprovements_turning.json @@ -1 +1 @@ -{"vintageimprovements:turning":{"order":102}} \ No newline at end of file +{"vintageimprovements:turning":{"order":103}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/vintageimprovements_vacuumizing.json b/kubejs/assets/emi/category/properties/vintageimprovements_vacuumizing.json index 47c64a461..fbc804a55 100644 --- a/kubejs/assets/emi/category/properties/vintageimprovements_vacuumizing.json +++ b/kubejs/assets/emi/category/properties/vintageimprovements_vacuumizing.json @@ -1 +1 @@ -{"vintageimprovements:vacuumizing":{"order":88}} \ No newline at end of file +{"vintageimprovements:vacuumizing":{"order":89}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/vintageimprovements_vibrating.json b/kubejs/assets/emi/category/properties/vintageimprovements_vibrating.json index bf6844f54..15807a7b9 100644 --- a/kubejs/assets/emi/category/properties/vintageimprovements_vibrating.json +++ b/kubejs/assets/emi/category/properties/vintageimprovements_vibrating.json @@ -1 +1 @@ -{"vintageimprovements:vibrating":{"order":113}} \ No newline at end of file +{"vintageimprovements:vibrating":{"order":114}} \ No newline at end of file diff --git a/kubejs/assets/endermanoverhaul/lang/ru_ru.json b/kubejs/assets/endermanoverhaul/lang/ru_ru.json new file mode 100644 index 000000000..0fa08722a --- /dev/null +++ b/kubejs/assets/endermanoverhaul/lang/ru_ru.json @@ -0,0 +1,26 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "entity.endermanoverhaul.nether_wastes_enderman": "Эндермен глубоких пещер", + "entity.endermanoverhaul.dark_oak_enderman": "Пепельный эндермен", + "entity.endermanoverhaul.swamp_enderman": "Замшелый эндермен", + "entity.endermanoverhaul.scarab": "Жук", + "entity.endermanoverhaul.soulsand_valley_enderman": "Светоцвето-подверженный эндермен", + "entity.endermanoverhaul.windswept_hills_enderman": "Эндермен лунного моря", + "entity.endermanoverhaul.end_enderman": "Баритоно-хоровой эндермен", + "entity.endermanoverhaul.end_islands_enderman": "Сопрано-хоровой эндермен", + "entity.endermanoverhaul.spirit": "Комета", + "item.endermanoverhaul.nether_wastes_enderman_spawn_egg": "Яйцо призыва эндермена глубоких пещер", + "item.endermanoverhaul.dark_oak_enderman_spawn_egg": "Яйцо призыва пепельного эндермена", + "item.endermanoverhaul.swamp_enderman_spawn_egg": "Яйцо призыва замшелого эндермена", + "item.endermanoverhaul.scarab_spawn_egg": "Яйцо призыва жука", + "item.endermanoverhaul.soulsand_valley_enderman_spawn_egg": "Яйцо призыва светоцвето-подверженного эндермена", + "item.endermanoverhaul.windswept_hills_enderman_spawn_egg": "Яйцо призыва эндермена лунного моря", + "item.endermanoverhaul.end_enderman_spawn_egg": "Яйцо призыва баритоно-хорового эндермена", + "item.endermanoverhaul.end_islands_enderman_spawn_egg": "Яйцо призыва сопрано-хорового эндермена", + "item.endermanoverhaul.spirit_spawn_egg": "Яйцо призыва кометы", + "subtitles.endermanoverhaul.entity.cave_enderman.ambient": "Эндермен глубоких пещер урчит", + "subtitles.endermanoverhaul.entity.cave_enderman.hurt": "Эндермен глубоких пещер ранен", + "subtitles.endermanoverhaul.entity.dark_oak_enderman.ambient": "Пепельный эндермен урчит", + "subtitles.endermanoverhaul.entity.dark_oak_enderman.darkness": "Пепельный эндермен мрачнеет", + "subtitles.endermanoverhaul.entity.dark_oak_enderman.stare": "Пепельный эндермен вскрикнул" +} \ No newline at end of file diff --git a/kubejs/assets/endermanoverhaul/lang/uk_ua.json b/kubejs/assets/endermanoverhaul/lang/uk_ua.json index 4a951e27e..3909b117a 100644 --- a/kubejs/assets/endermanoverhaul/lang/uk_ua.json +++ b/kubejs/assets/endermanoverhaul/lang/uk_ua.json @@ -22,7 +22,7 @@ "item.endermanoverhaul.spirit_spawn_egg": "Яйце виклику Комети", "subtitles.endermanoverhaul.entity.cave_enderman.ambient": "Глибокопечерний Ендермен Vwoops", "subtitles.endermanoverhaul.entity.cave_enderman.hurt": "Глибокопечерний Ендермен боляче", - "subtitles.endermanoverhaul.entity.dark_oak_enderman.ambient": "Попелястий Ендермен Vwoops", + "subtitles.endermanoverhaul.entity.dark_oak_enderman.ambient": "Попелястий Ендермен вжух", "subtitles.endermanoverhaul.entity.dark_oak_enderman.darkness": "Попелястий Ендермен пітьма", "subtitles.endermanoverhaul.entity.dark_oak_enderman.stare": "Попелястий Ендермен вигукує", "tag.item.endermanoverhaul.ender_pearls": "Перлини Енду" diff --git a/kubejs/assets/endermanoverhaul/lang/zh_cn.json b/kubejs/assets/endermanoverhaul/lang/zh_cn.json new file mode 100644 index 000000000..3f918e189 --- /dev/null +++ b/kubejs/assets/endermanoverhaul/lang/zh_cn.json @@ -0,0 +1,29 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "entity.endermanoverhaul.nether_wastes_enderman": "洞穴末影人", + "entity.endermanoverhaul.dark_oak_enderman": "灰烬末影人", + "entity.endermanoverhaul.mushroom_fields_enderman": "蘑菇末影人", + "entity.endermanoverhaul.swamp_enderman": "覆苔末影人", + "entity.endermanoverhaul.scarab": "甲虫", + "entity.endermanoverhaul.soulsand_valley_enderman": "光花触染末影人", + "entity.endermanoverhaul.windswept_hills_enderman": "月海末影人", + "entity.endermanoverhaul.end_enderman": "男中音合唱末影人", + "entity.endermanoverhaul.end_islands_enderman": "女高音合唱末影人", + "entity.endermanoverhaul.spirit": "彗星", + "item.endermanoverhaul.nether_wastes_enderman_spawn_egg": "洞穴末影人刷怪蛋", + "item.endermanoverhaul.dark_oak_enderman_spawn_egg": "灰烬末影人刷怪蛋", + "item.endermanoverhaul.mushroom_fields_enderman_spawn_egg": "蘑菇末影人刷怪蛋", + "item.endermanoverhaul.swamp_enderman_spawn_egg": "覆苔末影人刷怪蛋", + "item.endermanoverhaul.scarab_spawn_egg": "甲虫刷怪蛋", + "item.endermanoverhaul.soulsand_valley_enderman_spawn_egg": "光花触染末影人刷怪蛋", + "item.endermanoverhaul.windswept_hills_enderman_spawn_egg": "月海末影人刷怪蛋", + "item.endermanoverhaul.end_enderman_spawn_egg": "男中音合唱末影人刷怪蛋", + "item.endermanoverhaul.end_islands_enderman_spawn_egg": "女高音合唱末影人刷怪蛋", + "item.endermanoverhaul.spirit_spawn_egg": "彗星刷怪蛋", + "subtitles.endermanoverhaul.entity.cave_enderman.ambient": "洞穴末影人:低鸣", + "subtitles.endermanoverhaul.entity.cave_enderman.hurt": "洞穴末影人:受伤", + "subtitles.endermanoverhaul.entity.dark_oak_enderman.ambient": "灰烬末影人:低鸣", + "subtitles.endermanoverhaul.entity.dark_oak_enderman.darkness": "灰烬末影人:降影", + "subtitles.endermanoverhaul.entity.dark_oak_enderman.stare": "灰烬末影人:喊叫", + "tag.item.endermanoverhaul.ender_pearls": "末影珍珠" +} \ No newline at end of file diff --git a/kubejs/assets/firmaciv/lang/ru_ru.json b/kubejs/assets/firmaciv/lang/ru_ru.json new file mode 100644 index 000000000..10c610f8a --- /dev/null +++ b/kubejs/assets/firmaciv/lang/ru_ru.json @@ -0,0 +1,241 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "entity.firmaciv.rowboat.acacia": "Гребная лодка из акации", + "entity.firmaciv.rowboat.ash": "Гребная лодка из ясеня", + "entity.firmaciv.rowboat.aspen": "Гребная лодка из осины", + "entity.firmaciv.rowboat.birch": "Гребная лодка из берёзы", + "entity.firmaciv.rowboat.blackwood": "Гребная лодка из гренадила", + "entity.firmaciv.rowboat.chestnut": "Гребная лодка из каштана", + "entity.firmaciv.rowboat.douglas_fir": "Гребная лодка из дугласовой пихты", + "entity.firmaciv.rowboat.hickory": "Гребная лодка из гикори", + "entity.firmaciv.rowboat.kapok": "Гребная лодка из сейбы", + "entity.firmaciv.rowboat.mangrove": "Гребная лодка из мангры", + "entity.firmaciv.rowboat.maple": "Гребная лодка из клёна", + "entity.firmaciv.rowboat.oak": "Гребная лодка из дуба", + "entity.firmaciv.rowboat.palm": "Гребная лодка из пальмы", + "entity.firmaciv.rowboat.pine": "Гребная лодка из сосны", + "entity.firmaciv.rowboat.rosewood": "Гребная лодка из палисандра", + "entity.firmaciv.rowboat.sequoia": "Гребная лодка из секвойи", + "entity.firmaciv.rowboat.spruce": "Гребная лодка из ели", + "entity.firmaciv.rowboat.sycamore": "Гребная лодка из платана", + "entity.firmaciv.rowboat.white_cedar": "Гребная лодка из белого кедра", + "entity.firmaciv.rowboat.willow": "Гребная лодка из ивы", + "entity.firmaciv.sloop.acacia": "Шлюп из акации", + "entity.firmaciv.sloop.ash": "Шлюп из ясеня", + "entity.firmaciv.sloop.aspen": "Шлюп из осины", + "entity.firmaciv.sloop.birch": "Шлюп из берёзы", + "entity.firmaciv.sloop.blackwood": "Шлюп из гренадила", + "entity.firmaciv.sloop.chestnut": "Шлюп из каштана", + "entity.firmaciv.sloop.douglas_fir": "Шлюп из дугласовой пихты", + "entity.firmaciv.sloop.hickory": "Шлюп из гикори", + "entity.firmaciv.sloop.kapok": "Шлюп из сейбы", + "entity.firmaciv.sloop.mangrove": "Шлюп из мангры", + "entity.firmaciv.sloop.maple": "Шлюп из клёна", + "entity.firmaciv.sloop.oak": "Шлюп из дуба", + "entity.firmaciv.sloop.palm": "Шлюп из пальмы", + "entity.firmaciv.sloop.pine": "Шлюп из сосны", + "entity.firmaciv.sloop.rosewood": "Шлюп из розового дерева", + "entity.firmaciv.sloop.sequoia": "Шлюп из секвойи", + "entity.firmaciv.sloop.spruce": "Шлюп из ели", + "entity.firmaciv.sloop.sycamore": "Шлюп из платана", + "entity.firmaciv.sloop.white_cedar": "Шлюп из белого кедра", + "entity.firmaciv.sloop.willow": "Шлюп из ивы", + "entity.firmaciv.sloop_construction.acacia": "Шлюп из акации", + "entity.firmaciv.sloop_construction.ash": "Шлюп из ясеня", + "entity.firmaciv.sloop_construction.aspen": "Шлюп из осины", + "entity.firmaciv.sloop_construction.birch": "Шлюп из березы", + "entity.firmaciv.sloop_construction.blackwood": "Шлюп из гренадила", + "entity.firmaciv.sloop_construction.chestnut": "Шлюп из каштана", + "entity.firmaciv.sloop_construction.douglas_fir": "Шлюп из дугласовой пихты", + "entity.firmaciv.sloop_construction.hickory": "Шлюп из гикори", + "entity.firmaciv.sloop_construction.kapok": "Шлюп из сейбы", + "entity.firmaciv.sloop_construction.mangrove": "Шлюп из мангры", + "entity.firmaciv.sloop_construction.maple": "Шлюп из клёна", + "entity.firmaciv.sloop_construction.oak": "Шлюп из дуба", + "entity.firmaciv.sloop_construction.palm": "Шлюп из пальмы", + "entity.firmaciv.sloop_construction.pine": "Шлюп из сосны", + "entity.firmaciv.sloop_construction.rosewood": "Шлюп из палисандра", + "entity.firmaciv.sloop_construction.sequoia": "Шлюп из секвойи", + "entity.firmaciv.sloop_construction.spruce": "Шлюп из ели", + "entity.firmaciv.sloop_construction.sycamore": "Шлюп из платана", + "entity.firmaciv.sloop_construction.white_cedar": "Шлюп из белого кедра", + "entity.firmaciv.sloop_construction.willow": "Шлюп из ивы", + "entity.firmaciv.dugout_canoe.acacia": "Долблёное каноэ из акации", + "entity.firmaciv.dugout_canoe.ash": "Долблёное каноэ из ясеня", + "entity.firmaciv.dugout_canoe.aspen": "Долблёное каноэ из осины", + "entity.firmaciv.dugout_canoe.birch": "Долблёное каноэ из берёзы", + "entity.firmaciv.dugout_canoe.blackwood": "Долблёное каноэ из гренадила", + "entity.firmaciv.dugout_canoe.chestnut": "Долблёное каноэ из каштана", + "entity.firmaciv.dugout_canoe.douglas_fir": "Долблёное каноэ из дугласовой пихты", + "entity.firmaciv.dugout_canoe.hickory": "Долблёное каноэ из гикори", + "entity.firmaciv.dugout_canoe.kapok": "Долблёное каноэ из сейбы", + "entity.firmaciv.dugout_canoe.mangrove": "Долблёное каноэ из мангры", + "entity.firmaciv.dugout_canoe.maple": "Долблёное каноэ из клёна", + "entity.firmaciv.dugout_canoe.oak": "Долблёное каноэ из дуба", + "entity.firmaciv.dugout_canoe.palm": "Долблёное каноэ из пальмы", + "entity.firmaciv.dugout_canoe.pine": "Долблёное каноэ из сосны", + "entity.firmaciv.dugout_canoe.rosewood": "Долблёное каноэ из палисандра", + "entity.firmaciv.dugout_canoe.sequoia": "Долблёное каноэ из секвойи", + "entity.firmaciv.dugout_canoe.spruce": "Долблёное каноэ из ели", + "entity.firmaciv.dugout_canoe.sycamore": "Долблёное каноэ из платана", + "entity.firmaciv.dugout_canoe.white_cedar": "Долблёное каноэ из белого кедра", + "entity.firmaciv.dugout_canoe.willow": "Долблёное каноэ из ивы", + "block.firmaciv.thatch_roofing_stairs": "Соломенная крыша", + "block.firmaciv.thatch_roofing_slab": "Соломенная плита", + "block.firmaciv.thatch_roofing": "Соломенная крыша", + "entity.firmaciv.kayak": "Каяк", + "entity.firmaciv.cannon": "Пушка", + "entity.firmaciv.compartment_tfc_chest": "Отсек с сундуком", + "entity.firmaciv.compartment_tfc_barrel": "Отсек c бочкой", + "entity.firmaciv.compartment_large_vessel": "Большое судно", + "config.jade.plugin_firmaciv.barrel": "Отсек c бочкой", + "config.jade.plugin_firmaciv.tfc_chest": "Отсек с сундуком", + "itemGroup.firmaciv": "Firma: Civilization", + "creativetab.firmaciv_tab": "Firma: Civilization", + "creativetab.watercraft_tab": "Watercraft", + "creativetab.navigation_tab": "Navigation", + "tfc.recipe.barrel.firmaciv.barrel.large_waterproof_hide_olive": "Большая водонепроницаемая шкура", + "tfc.recipe.barrel.firmaciv.barrel.large_waterproof_hide_tallow": "Большая водонепроницаемая шкура", + "copy_latitude": "Скопировать широту в буфер обмена", + "copy_longitude": "Скопировать долготу в буфер обмена", + "copy_latlon": "Скопируйте широту и долготу в буфер обмена", + "copy_altitude": "Скопировать высоту в буфер обмена", + "latitude": "Широта", + "longitude": "Долгота", + "altitude": "Высота", + "degrees": "°", + "sea_level": "уровнем(-я) моря", + "north": "север", + "south": "юг", + "east": "восток", + "west": "запад", + "above": "над", + "below": "ниже", + "meters": "м.", + "press_button": "Нажмите", + "eject_passengers": "чтобы извлечь", + "restless_passenger": "Этот пассажир неугомонен.", + "firmaciv.advancements.kayak_paddle.title": "Двойные неприятности", + "firmaciv.advancements.kayak_paddle.description": "Создайте весло для каяка", + "firmaciv.advancements.canoe.title": "Рай для выжигателей", + "firmaciv.advancements.canoe.description": "Попытка поджечь корпус каноэ", + "firmaciv.advancements.oar.title": "Гребу на своей лодке", + "firmaciv.advancements.oar.description": "Создайте весло", + "firmaciv.advancements.kayak.title": "Я отвезу тебя домой сегодня вечером", + "firmaciv.advancements.kayak.description": "Создайте каяк", + "firmaciv.advancements.nav_clock.title": "Уделите свое время адмиралу", + "firmaciv.advancements.nav_clock.description": "Создайте морской хронометр", + "firmaciv.advancements.sextant.title": "Звезды помогут", + "firmaciv.advancements.sextant.description": "Создайте секстант", + "firmaciv.advancements.barometer.title": "Прибой и/или дерн", + "firmaciv.advancements.barometer.description": "Создайте барометр", + "firmaciv.advancements.oarlock.title": "Монтлейк Кат", + "firmaciv.advancements.oarlock.description": "Создайте уключину", + "firmaciv.jei.transfer.error.barrel_sealed": "В настоящее время бочка опечатана", + "block.firmaciv.wood.watercraft_frame.flat.acacia": "Плита корабельной обшивки из акации", + "block.firmaciv.wood.watercraft_frame.angled.acacia": "Ступенчатая корабельная обшивка из акации", + "block.firmaciv.wood.canoe_component_block.acacia": "Компонент каноэ из акации", + "block.firmaciv.wood.watercraft_frame.flat.ash": "Плита корабельной обшивки из ясеня", + "block.firmaciv.wood.watercraft_frame.angled.ash": "Ступенчатая корабельная обшивка из ясеня", + "block.firmaciv.wood.canoe_component_block.ash": " Компонент каноэ из ясеня", + "block.firmaciv.wood.watercraft_frame.flat.": "Плита корабельной обшивки из осины", + "block.firmaciv.wood.watercraft_frame.angled.": "Ступенчатая корабельная обшивка из осины", + "block.firmaciv.wood.canoe_component_block.": "Компонент каноэ из осины", + "block.firmaciv.wood.watercraft_frame.flat.birch": "Плита корабельной обшивки из берёзы", + "block.firmaciv.wood.watercraft_frame.angled.birch": "Ступенчатая корабельная обшивка из берёзы", + "block.firmaciv.wood.canoe_component_block.birch": "Компонент каноэ из берёзы", + "block.firmaciv.wood.watercraft_frame.flat.blackwood": "Плита корабельной обшивки из гренадила", + "block.firmaciv.wood.watercraft_frame.angled.blackwood": "Ступенчатая корабельная обшивка из гренадила", + "block.firmaciv.wood.canoe_component_block.blackwood": "Компонент каноэ из гренадила", + "block.firmaciv.wood.watercraft_frame.flat.chestnut": "Плита корабельной обшивки из каштана", + "block.firmaciv.wood.watercraft_frame.angled.chestnut": "Ступенчатая корабельная обшивка из каштана", + "block.firmaciv.wood.canoe_component_block.chestnut": "Компонент каноэ из каштана", + "block.firmaciv.wood.watercraft_frame.flat.douglas_fir": "Плита корабельной обшивки из дугласовой пихты", + "block.firmaciv.wood.watercraft_frame.angled.douglas_fir": "Ступенчатая корабельная обшивка из дугласовой пихты", + "block.firmaciv.wood.canoe_component_block.douglas_fir": "Компонент каноэ из дугласовой пихты", + "block.firmaciv.wood.watercraft_frame.flat.hickory": "Плита корабельной обшивки из ореха", + "block.firmaciv.wood.watercraft_frame.angled.hickory": "Ступенчатая корабельная обшивка из ореха", + "block.firmaciv.wood.canoe_component_block.hickory": "Компонент каноэ из ореха", + "block.firmaciv.wood.watercraft_frame.flat.kapok": "Плита корабельной обшивки из сейбы", + "block.firmaciv.wood.watercraft_frame.angled.kapok": "Ступенчатая корабельная обшивка из сейбы", + "block.firmaciv.wood.canoe_component_block.kapok": "Компонент каноэ из сейбы", + "block.firmaciv.wood.watercraft_frame.flat.mangrove": "Плита корабельной обшивки из мангры", + "block.firmaciv.wood.watercraft_frame.angled.mangrove": "Ступенчатая корабельная обшивка из мангры", + "block.firmaciv.wood.canoe_component_block.mangrove": "Компонент каноэ из мангры", + "block.firmaciv.wood.watercraft_frame.flat.maple": "Плита корабельной обшивки из клёна", + "block.firmaciv.wood.watercraft_frame.angled.maple": "Ступенчатая корабельная обшивка из клёна", + "block.firmaciv.wood.canoe_component_block.maple": "Компонент каноэ из клёна", + "block.firmaciv.wood.watercraft_frame.flat.oak": "Плита корабельной обшивки из дуба", + "block.firmaciv.wood.watercraft_frame.angled.oak": "Ступенчатая корабельная обшивка из дуба", + "block.firmaciv.wood.canoe_component_block.oak": "Компонент каноэ из дуба", + "block.firmaciv.wood.watercraft_frame.flat.palm": "Плита корабельной обшивки из пальмы", + "block.firmaciv.wood.watercraft_frame.angled.palm": "Ступенчатая корабельная обшивка из пальмы", + "block.firmaciv.wood.canoe_component_block.palm": "Компонент каноэ из пальмы", + "block.firmaciv.wood.watercraft_frame.flat.pine": "Плита корабельной обшивки из сосны", + "block.firmaciv.wood.watercraft_frame.angled.pine": "Ступенчатая корабельная обшивка из сосны", + "block.firmaciv.wood.canoe_component_block.pine": "Компонент каноэ из сосны", + "block.firmaciv.wood.watercraft_frame.flat.rosewood": "Плита корабельной обшивки из палисандра", + "block.firmaciv.wood.watercraft_frame.angled.rosewood": "Ступенчатая корабельная обшивка из палисандра", + "block.firmaciv.wood.canoe_component_block.rosewood": "Компонент каноэ из палисандра", + "block.firmaciv.wood.watercraft_frame.flat.sequoia": "Плита корабельной обшивки из секвойи", + "block.firmaciv.wood.watercraft_frame.angled.sequoia": "Ступенчатая корабельная обшивка из секвойи", + "block.firmaciv.wood.canoe_component_block.sequoia": "Компонент каноэ из секвойи", + "block.firmaciv.wood.watercraft_frame.flat.spruce": "Плита корабельной обшивки из ели", + "block.firmaciv.wood.watercraft_frame.angled.spruce": "Ступенчатая корабельная обшивка из ели", + "block.firmaciv.wood.canoe_component_block.spruce": "Компонент каноэ из ели", + "block.firmaciv.wood.watercraft_frame.flat.sycamore": "Плита корабельной обшивки из платана", + "block.firmaciv.wood.watercraft_frame.angled.sycamore": "Ступенчатая корабельная обшивка из платана", + "block.firmaciv.wood.canoe_component_block.sycamore": "Компонент каноэ из платана", + "block.firmaciv.wood.watercraft_frame.flat.white_cedar": "Плита корабельной обшивки из белого кедра", + "block.firmaciv.wood.watercraft_frame.angled.white_cedar": "Ступенчатая корабельная обшивка из белого кедра", + "block.firmaciv.wood.canoe_component_block.white_cedar": "Компонент каноэ из белого кедра", + "block.firmaciv.wood.watercraft_frame.flat.willow": "Плита корабельной обшивки из ивы", + "block.firmaciv.wood.watercraft_frame.angled.willow": "Ступенчатая корабельная обшивка из ивы", + "block.firmaciv.wood.canoe_component_block.willow": "Компонент каноэ из ивы", + "block.firmaciv.watercraft_frame_angled": "Ступенчатая корабельная обшивка", + "block.firmaciv.watercraft_frame_flat": "Плита корабельной обшивки", + "item.firmaciv.unfinished_barometer": "Незаконченный барометр", + "item.firmaciv.unfinished_nav_clock": "Незаконченный морской хронометр", + "item.firmaciv.unfinished_sextant": "Незаконченный секстант", + "item.firmaciv.cannon_barrel": "Пушечный ствол", + "item.firmaciv.small_triangular_sail": "Маленький парус", + "item.firmaciv.medium_triangular_sail": "Средний парус", + "item.firmaciv.large_triangular_sail": "Большой парус", + "item.firmaciv.rope_coil": "Моток верёвки", + "item.firmaciv.cannon": "Пушка", + "item.firmaciv.sloop_icon_only": "ICON ONLY", + "item.firmaciv.canoe_icon_only": "ICON ONLY", + "item.firmaciv.canoe_with_paddle_icon_only": "ICON ONLY", + "item.firmaciv.kayak_with_paddle_icon_only": "ICON ONLY", + "item.firmaciv.rowboat_icon_only": "ICON ONLY", + "item.firmaciv.copper_bolt": "Медный болт", + "item.firmaciv.kayak": "Каяк", + "item.firmaciv.large_waterproof_hide": "Большая водонепроницаемая шкура", + "item.firmaciv.nav_toolkit": "Набор инструментов для навигации", + "item.firmaciv.barometer": "Барометр", + "item.firmaciv.sextant": "Секстант", + "item.firmaciv.nav_clock": "Морской хронометр", + "item.firmaciv.firmaciv_compass": "Компас (склонение: Истинный север)", + "item.firmaciv.kayak_paddle": "Весло для каяка", + "item.firmaciv.canoe_paddle": "Весло для каноэ", + "block.firmaciv.wood.acacia_roofing": "Кровля из акации", + "block.firmaciv.wood.ash_roofing": "Кровля из ясеня", + "block.firmaciv.wood.aspen_roofing": "Кровля из осины", + "block.firmaciv.wood.birch_roofing": "Кровля из берёзы", + "block.firmaciv.wood.blackwood_roofing": "Кровля из гренадила", + "block.firmaciv.wood.chestnut_roofing": "Кровля из каштана", + "block.firmaciv.wood.douglas_fir_roofing": "Кровля из дугласовой пихты", + "block.firmaciv.wood.hickory_roofing": "Кровля из гикори", + "block.firmaciv.wood.kapok_roofing": "Кровля из сейбы", + "block.firmaciv.wood.mangrove_roofing": "Кровля из мангры", + "block.firmaciv.wood.maple_roofing": "Кровля из клёна", + "block.firmaciv.wood.oak_roofing": "Кровля из дуба", + "block.firmaciv.wood.palm_roofing": "Кровля из пальмы", + "block.firmaciv.wood.pine_roofing": "Кровля из сосны", + "block.firmaciv.wood.rosewood_roofing": "Кровля из палисандра", + "block.firmaciv.wood.sequoia_roofing": "Кровля из секвойи", + "block.firmaciv.wood.spruce_roofing": "Кровля из ели", + "block.firmaciv.wood.sycamore_roofing": "Кровля из платана", + "block.firmaciv.wood.white_cedar_roofing": "Кровля из белого кедра", + "block.firmaciv.wood.willow_roofing": "Кровля из ивы" +} \ No newline at end of file diff --git a/kubejs/assets/firmaciv/lang/zh_cn.json b/kubejs/assets/firmaciv/lang/zh_cn.json new file mode 100644 index 000000000..d5a76c1ef --- /dev/null +++ b/kubejs/assets/firmaciv/lang/zh_cn.json @@ -0,0 +1,4 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "item.firmaciv.rope_coil": "黄麻绳" +} \ No newline at end of file diff --git a/kubejs/assets/firmalife/lang/en_us.json b/kubejs/assets/firmalife/lang/en_us.json index 91fc2205f..f62f2a469 100644 --- a/kubejs/assets/firmalife/lang/en_us.json +++ b/kubejs/assets/firmalife/lang/en_us.json @@ -17,6 +17,7 @@ "block.firmalife.treated_wood_greenhouse_trapdoor": "Wax-Treated Wood Greenhouse Trapdoor", "block.firmalife.treated_wood_greenhouse_door": "Wax-Treated Wood Greenhouse Door", "block.firmalife.treated_wood": "Wax-Treated Wood", + "item.firmalife.treated_lumber": "Wax-Treated Lumber", "greenhouse.firmalife.treated_wood": "Wax-Treated Wood", - "item.firmalife.treated_lumber": "Wax-Treated Lumber" + "firmalife.jade.needs_peel": "Needs tongs or oven mitts to safely remove goods" } \ No newline at end of file diff --git a/kubejs/assets/firmalife/lang/ru_ru.json b/kubejs/assets/firmalife/lang/ru_ru.json index ca2b5cade..c78ffad25 100644 --- a/kubejs/assets/firmalife/lang/ru_ru.json +++ b/kubejs/assets/firmalife/lang/ru_ru.json @@ -8,6 +8,7 @@ "block.firmalife.treated_wood_greenhouse_roof": "Крыша теплицы из обработанного воском дерева", "block.firmalife.treated_wood_greenhouse_wall": "Стена теплицы из обработанного воском дерева", "block.firmalife.treated_wood_greenhouse_door": "Дверь теплицы из обработанного воском дерева", + "greenhouse.firmalife.treated_wood": "Обработанные воском доски", "block.firmalife.treated_wood": "Обработанные воском доски", "item.firmalife.treated_lumber": "Обработанная воском доска" } \ No newline at end of file diff --git a/kubejs/assets/firmalife/lang/uk_ua.json b/kubejs/assets/firmalife/lang/uk_ua.json index b4c8b5a2c..600248407 100644 --- a/kubejs/assets/firmalife/lang/uk_ua.json +++ b/kubejs/assets/firmalife/lang/uk_ua.json @@ -18,5 +18,5 @@ "block.firmalife.treated_wood_greenhouse_door": "Двері теплиці з обробленої воском деревини", "block.firmalife.treated_wood": "Оброблена воском деревина", "greenhouse.firmalife.treated_wood": "Оброблена воском деревина", - "item.firmalife.treated_lumber": "Оброблені воском пиломатеріали" + "firmalife.jade.needs_peel": "Потрібні щипці або прихватки, щоб безпечно виймати вироби" } \ No newline at end of file diff --git a/kubejs/assets/firmalife/lang/zh_cn.json b/kubejs/assets/firmalife/lang/zh_cn.json new file mode 100644 index 000000000..c42e985b7 --- /dev/null +++ b/kubejs/assets/firmalife/lang/zh_cn.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.", + "block.firmalife.weathered_treated_wood_greenhouse_roof_top": "风化的涂蜡防腐木温室屋顶", + "block.firmalife.weathered_treated_wood_greenhouse_roof": "风化的涂蜡防腐木温室屋檐", + "block.firmalife.weathered_treated_wood_greenhouse_wall": "风化的涂蜡防腐木温室墙", + "block.firmalife.weathered_treated_wood_greenhouse_port": "风化的涂蜡防腐木温室接口", + "block.firmalife.weathered_treated_wood_greenhouse_panel_wall": "风化蜡防腐木温室板墙", + "block.firmalife.weathered_treated_wood_greenhouse_panel_roof": "风化的涂蜡防腐木温室板屋顶", + "block.firmalife.weathered_treated_wood_greenhouse_trapdoor": "风化的涂蜡防腐木温室活板门", + "block.firmalife.weathered_treated_wood_greenhouse_door": "风化的涂蜡防腐木温室门", + "block.firmalife.treated_wood_greenhouse_roof_top": "涂蜡的防腐木温室屋顶", + "block.firmalife.treated_wood_greenhouse_roof": "涂蜡的防腐木温室屋檐", + "block.firmalife.treated_wood_greenhouse_wall": "涂蜡的防腐木温室墙", + "block.firmalife.treated_wood_greenhouse_port": "涂蜡的防腐木温室接口", + "block.firmalife.treated_wood_greenhouse_panel_wall": "涂蜡的防腐木温室板墙", + "block.firmalife.treated_wood_greenhouse_panel_roof": "涂蜡的防腐木温室板屋顶", + "block.firmalife.treated_wood_greenhouse_trapdoor": "涂蜡的防腐木温室活板门", + "block.firmalife.treated_wood_greenhouse_door": "涂蜡的防腐木温室门", + "block.firmalife.treated_wood": "涂蜡的防腐木", + "item.firmalife.treated_lumber": "涂蜡木材", + "greenhouse.firmalife.treated_wood": "涂蜡的防腐木", + "firmalife.jade.needs_peel": "需要用夹子或防烫手套才能安全取出物品" +} \ No newline at end of file diff --git a/kubejs/assets/ftbteams/lang/ru_ru.json b/kubejs/assets/ftbteams/lang/ru_ru.json new file mode 100644 index 000000000..fa1b870fd --- /dev/null +++ b/kubejs/assets/ftbteams/lang/ru_ru.json @@ -0,0 +1,93 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "ftbteams.already_in_party": "Вы уже состоите в команде!", + "ftbteams.player_already_in_party": "Игрок '%s' уже состоит в команде!", + "ftbteams.not_in_party": "Вы не создали или не присоединились к команде!", + "ftbteams.team_not_found": "Команда '%s' не найдена!", + "ftbteams.cant_edit": "Вы не можете редактировать %s!", + "ftbteams.not_member": "%s не является участником %s!", + "ftbteams.not_officer": "%s не является офицером %s!", + "ftbteams.not_invited": "Вы не приглашены в %s!", + "ftbteams.name_too_short": "Название команды слишком короткое! (минимум >=3 символа)", + "ftbteams.server_permissions_prevent": "Настройки сервера запрещают это действие.", + "ftbteams.info.id": "Длинный ID команды: %s", + "ftbteams.info.short_id": "Короткий ID команды: %s", + "ftbteams.info.owner": "Владелец: %s", + "ftbteams.info.owner.none": "Отсутствует", + "ftbteams.info.members": "Участники:", + "ftbteams.info.members.none": "Нет участников", + "ftbteams.list": "Все FTB Команды: %s", + "ftbteams.property_not_found": "Свойства ID не найдены!", + "ftbteams.owner_cant_leave": "Вы должны передать собственность команде, прежде чем уйти!", + "ftbteams.cant_kick_owner": "Невозможно кикнуть владельца!", + "ftbteams.party_api_only": "В этом модпаке вы не можете создавать команды напрямую!", + "ftbteams.api_override": "В этом модпаке вы можете создавать команду только из инвентаря с помощью кнопки 'Моя команда'!", + "ftbteams.missing_data": "Данные команды не были получены от сервера!\nFTB команды будут работать некорректно.\nПроверьте логи сервера на наличие ошибок и убедитесь, что ваш сервер находится в режиме онлайн.", + "sidebar_button.ftbteams.my_team": "Моя команда", + "ftbteamsconfig": "Свойства команды", + "ftbteamsconfig.ftbteams": "Основные свойства команды", + "ftbteamsconfig.ftbteams.display_name": "Отображаемое имя", + "ftbteamsconfig.ftbteams.description": "Описание", + "ftbteamsconfig.ftbteams.color": "Цвет", + "ftbteamsconfig.ftbteams.free_to_join": "Свободный вход", + "ftbteamsconfig.ftbteams.max_msg_history_size": "Максимальный размер истории сообщений", + "ftbteams.privacy_mode.allies": "Союзники", + "ftbteams.privacy_mode.private": "Приват", + "ftbteams.privacy_mode.public": "Публично", + "ftbteams.create_party": "Создать команду", + "ftbteams.create_party.info": "Создайте команду, чтобы пригласить участников и развиваться вместе", + "ftbteams.gui.kick": "Кикнуть %s", + "ftbteams.gui.kick.confirm": "Вы хотите кикнуть игрока %s?", + "ftbteams.gui.promote": "Повысить %s", + "ftbteams.gui.promote.confirm": "Вы хотите повысить игрока %s?", + "ftbteams.gui.demote": "Понизить %s", + "ftbteams.gui.demote.confirm": "Вы хотите понизить игрока %s?", + "ftbteams.gui.leave": "Покинуть команду", + "ftbteams.gui.leave.confirm": "Вы хотите покинуть команду?", + "ftbteams.gui.disband": "Расформировать команду", + "ftbteams.gui.disband.confirm": "Вы хотите расформировать команду?", + "ftbteams.gui.transfer_ownership": "Сделать %s владельцом команды", + "ftbteams.gui.transfer_ownership.confirm": "Вы хотите сделать %s владельцом команды?", + "ftbteams.gui.party_name": "Название группы", + "ftbteams.gui.party_description": "Описание", + "ftbteams.gui.create_party": "Описание", + "ftbteams.gui.add_members": "Добавить участников", + "ftbteams.gui.invite": "Пригласить игрока(ов)", + "ftbteams.gui.manage_allies": "Управление союзниками", + "ftbteams.gui.no_players": "Нет доступных игроков", + "ftbteams.gui.send_invite": "Пригласить", + "ftbteams.gui.add_ally": "Союзник", + "ftbteams.gui.remove_ally": "Удалить союзника %s", + "ftbteams.gui.remove_ally.confirm": "Вы хотите удалить %s как союзника?", + "ftbteams.ranks.enemy": "Противник", + "ftbteams.ranks.none": "Отсутствует", + "ftbteams.ranks.ally": "Союзник", + "ftbteams.ranks.invited": "Приглашен", + "ftbteams.ranks.member": "Участник", + "ftbteams.ranks.officer": "Офицер", + "ftbteams.ranks.owner": "Владелец", + "ftbteams.team_type.player": "Команда игрока", + "ftbteams.team_type.party": "Команда группы", + "ftbteams.team_type.server": "Команда сервера", + "key.ftbteams.open_gui": "Открыть GUI команд", + "key.categories.ftbteams": "FTB Команды", + "ftbteams.message.invited": "Приглашен %s", + "ftbteams.message.invite_sent": "%s пригласил вас присоединиться к его команде!", + "ftbteams.message.joined": "%s присоединился к вашей команде!", + "ftbteams.message.declined": "Вы отклонили приглашение", + "ftbteams.message.kicked": "Кикнут %s из %s!", + "ftbteams.message.promoted": "Повышен %s до Офицера!", + "ftbteams.message.demoted": "Понижен %s до Участника!", + "ftbteams.message.transfer_owner": "Передана собственность %s!", + "ftbteams.message.left_party": "Игрок %s покинул вашу команду!", + "ftbteams.message.add_ally": "Игрок %s теперь союзник вашей команды!", + "ftbteams.message.now_allied": "Вы теперь союзник '%s'!", + "ftbteams.message.remove_ally": "Игрок %s больше не является союзником вашей команды!", + "ftbteams.message.no_longer_allied": "Вы больше не союзник '%s'!", + "ftbteams.message.created_server_team": "Создана новая команда сервера '%s'!", + "ftbteams.message.deleted_server_team": "Удалена команда сервера '%s'!", + "ftbteams.message.team_disbanded": "Команда группы принудительно распущена '%s' (%s) !", + "ftbteams.accept": "Принять ✔", + "ftbteams.decline": "Отклонить ✘", + "ftbteams.click_show_info": "Нажмите, чтобы посмотреть информацию о команде" +} \ No newline at end of file diff --git a/kubejs/assets/greate/lang/ru_ru.json b/kubejs/assets/greate/lang/ru_ru.json new file mode 100644 index 000000000..c09807e9c --- /dev/null +++ b/kubejs/assets/greate/lang/ru_ru.json @@ -0,0 +1,202 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "advancement.greate.eat_all_belts": "Tasty!", + "advancement.greate.eat_all_belts.desc": "Consume every type of belt", + "advancement.greate.root": "Добро пожаловать в Greate", + "advancement.greate.root.desc": "Приготовся до нескончаемых истязаний", + "block.greate.andesite_alloy_cogwheel": "Шестерня", + "block.greate.andesite_alloy_crushing_wheel": "Дробильное колесо", + "block.greate.andesite_alloy_crushing_wheel_controller": "Контроллер дробильного колеса", + "block.greate.andesite_alloy_encased_fan": "Вентилятор в корпусе", + "block.greate.andesite_alloy_gearbox": "Коробка передач", + "block.greate.andesite_alloy_mechanical_mixer": "Механический смешиватель", + "block.greate.andesite_alloy_mechanical_press": "Механический пресс", + "block.greate.andesite_alloy_mechanical_pump": "Механическая помпа", + "block.greate.andesite_alloy_mechanical_saw": "Механическая пила", + "block.greate.andesite_alloy_millstone": "Жёрнов", + "block.greate.andesite_alloy_shaft": "Вал", + "block.greate.andesite_encased_aluminium_cogwheel": "Шестерня в корпусе (Алюминий)", + "block.greate.andesite_encased_aluminium_shaft": "Вал в корпусе (Алюминий)", + "block.greate.andesite_encased_andesite_alloy_cogwheel": "Шестерня в корпусе", + "block.greate.andesite_encased_andesite_alloy_shaft": "Вал в корпусе", + "block.greate.andesite_encased_large_aluminium_cogwheel": "Большая шестерня в корпусе (Алюминий)", + "block.greate.andesite_encased_large_andesite_alloy_cogwheel": "Большая шестерня в корпусе", + "block.greate.andesite_encased_large_stainless_steel_cogwheel": "Большая шестерня в корпусе (Нержавеющая сталь)", + "block.greate.andesite_encased_large_steel_cogwheel": "Большая шестерня в корпусе (Сталь)", + "block.greate.andesite_encased_large_titanium_cogwheel": "Большая шестерня в корпусе (Титан)", + "block.greate.andesite_encased_stainless_steel_cogwheel": "Шестерня в корпусе (Нержавеющая сталь)", + "block.greate.andesite_encased_stainless_steel_shaft": "Вал в корпусе (Нержавеющая сталь)", + "block.greate.andesite_encased_steel_cogwheel": "Шестерня в корпусе (Сталь)", + "block.greate.andesite_encased_steel_shaft": "Вал в корпусе (Сталь)", + "block.greate.andesite_encased_titanium_cogwheel": "Шестерня в корпусе (Титан)", + "block.greate.andesite_encased_titanium_shaft": "Вал в корпусе (Титан)", + "block.greate.brass_encased_andesite_alloy_cogwheel": "Шестерня в латунном корпусе", + "block.greate.brass_encased_andesite_alloy_shaft": "Вал в латунном корпусе", + "block.greate.brass_encased_large_andesite_alloy_cogwheel": "Большая шестерня в латунном корпусе", + "block.greate.large_andesite_alloy_cogwheel": "Большая шестерня", + "block.greate.metal_girder_encased_andesite_alloy_shaft": "Вал в металлической балке", + "block.greate.powered_andesite_alloy_shaft": "Приводной вал", + "item.greate.andesite_alloy_vertical_gearbox": "Вертикальная коробка передач", + "greate.ponder.belt_casing.text_1": "Латунный или металлический корпус может быть использован для украшения механического ремня", + "greate.ponder.cogwheel_casing.text_1": "Латунный или металлический корпус может быть использован для украшения шестерни", + "block.greate.aluminium_cogwheel": "Шестерня (Алюминий)", + "block.greate.aluminium_crushing_wheel": "Дробильное колесо (Алюминий)", + "block.greate.aluminium_crushing_wheel_controller": "Контроллер дробильного колеса (Алюминий)", + "block.greate.aluminium_encased_fan": "Вентилятор в корпусе (Алюминий)", + "block.greate.aluminium_gearbox": "Коробка передач (Алюминий)", + "block.greate.aluminium_mechanical_mixer": "Механический смешиватель (Алюминий)", + "block.greate.aluminium_mechanical_press": "Механический пресс (Алюминий)", + "block.greate.aluminium_mechanical_pump": "Механическая помпа (Алюминий)", + "block.greate.aluminium_mechanical_saw": "Механическая пила (Алюминий)", + "block.greate.aluminium_millstone": "Жёрнов (Алюминий)", + "block.greate.aluminium_shaft": "Вал (Алюминий)", + "block.greate.steel_cogwheel": "Шестерня (Сталь)", + "block.greate.steel_crushing_wheel": "Дробильное колесо (Сталь)", + "block.greate.steel_crushing_wheel_controller": "Контроллер дробильного колеса (Сталь)", + "block.greate.steel_encased_fan": "Вентилятор в корпусе (Сталь)", + "block.greate.steel_gearbox": "Коробка передач (Сталь)", + "block.greate.steel_mechanical_mixer": "Механический смешиватель (Сталь)", + "block.greate.steel_mechanical_press": "Механический пресс (Сталь)", + "block.greate.steel_mechanical_pump": "Механическая помпа (Сталь)", + "block.greate.steel_mechanical_saw": "Механическая пила (Сталь)", + "block.greate.steel_millstone": "Жёрнов (Сталь)", + "block.greate.steel_shaft": "Вал (Сталь)", + "block.greate.stainless_steel_cogwheel": "Шестерня (Нержавеющая сталь)", + "block.greate.stainless_steel_crushing_wheel": "Дробильное колесо (Нержавеющая сталь)", + "block.greate.stainless_steel_crushing_wheel_controller": "Контроллер дробильного колеса", + "block.greate.stainless_steel_encased_fan": "Вентилятор в корпусе (Нержавеющая сталь)", + "block.greate.stainless_steel_gearbox": "Коробка передач (Нержавеющая сталь)", + "block.greate.stainless_steel_mechanical_mixer": "Механический смешиватель (Нержавеющая сталь)", + "block.greate.stainless_steel_mechanical_press": "Механический пресс (Нержавеющая сталь)", + "block.greate.stainless_steel_mechanical_pump": "Механическая помпа (Нержавеющая сталь)", + "block.greate.stainless_steel_mechanical_saw": "Механическая пила (Нержавеющая сталь)", + "block.greate.stainless_steel_millstone": "Жёрнов (Нержавеющая сталь)", + "block.greate.stainless_steel_shaft": "Вал (Нержавеющая сталь)", + "block.greate.titanium_cogwheel": "Шестерня (Титан)", + "block.greate.titanium_crushing_wheel": "Дробильное колесо (Титан)", + "block.greate.titanium_crushing_wheel_controller": "Контроллер дробильного колеса (Титан)", + "block.greate.titanium_encased_fan": "Вентилятор в корпусе (Титан)", + "block.greate.titanium_gearbox": "Коробка передач (Титан)", + "block.greate.titanium_mechanical_mixer": "Механический смешиватель (Титан)", + "block.greate.titanium_mechanical_press": "Механический пресс (Титан)", + "block.greate.titanium_mechanical_pump": "Механическая помпа (Титан)", + "block.greate.titanium_mechanical_saw": "Механическая пила (Титан)", + "block.greate.titanium_millstone": "Жёрнов (Титан)", + "block.greate.titanium_shaft": "Вал (Титан)", + "block.greate.tungsten_steel_cogwheel": "Шестерня (Вольфрам)", + "block.greate.tungsten_steel_crushing_wheel": "Дробильное колесо (Вольфрам)", + "block.greate.tungsten_steel_crushing_wheel_controller": "Контроллер дробильного колеса (Вольфрам)", + "block.greate.tungsten_steel_encased_fan": "Вентилятор в корпусе (Вольфрам)", + "block.greate.tungsten_steel_gearbox": "Коробка передач (Вольфрам)", + "block.greate.tungsten_steel_mechanical_mixer": "Механический смешиватель (Вольфрам)", + "block.greate.tungsten_steel_mechanical_press": "Механический пресс (Вольфрам)", + "block.greate.tungsten_steel_mechanical_pump": "Механическая помпа", + "block.greate.tungsten_steel_mechanical_saw": "Механическая пила (Вольфрам)", + "block.greate.tungsten_steel_millstone": "Жёрнов (Вольфрам)", + "block.greate.tungsten_steel_shaft": "Вал (Вольфрам)", + "block.greate.rhodium_plated_palladium_cogwheel": "Шестерня (Палладий с родиевым покрытием)", + "block.greate.rhodium_plated_palladium_crushing_wheel": "Дробильное колесо (Палладий с родиевым покрытием)", + "block.greate.rhodium_plated_palladium_crushing_wheel_controller": "Контроллер дробильного колеса (Палладий с родиевым покрытием)", + "block.greate.rhodium_plated_palladium_encased_fan": "Вентилятор в корпусе (Палладий с родиевым покрытием)", + "block.greate.rhodium_plated_palladium_gearbox": "Коробка передач (Палладий с родиевым покрытием)", + "block.greate.rhodium_plated_palladium_mechanical_mixer": "Механический смешиватель (Палладий с родиевым покрытием)", + "block.greate.rhodium_plated_palladium_mechanical_press": "Механический пресс (Палладий с родиевым покрытием)", + "block.greate.rhodium_plated_palladium_mechanical_pump": "Механическая помпа (Палладий с родиевым покрытием)", + "block.greate.rhodium_plated_palladium_mechanical_saw": "Механическая пила (Палладий с родиевым покрытием)", + "block.greate.rhodium_plated_palladium_millstone": "Жёрнов (Палладий с родиевым покрытием)", + "block.greate.rhodium_plated_palladium_shaft": "Вал (Палладий с родиевым покрытием)", + "block.greate.naquadah_alloy_cogwheel": "Шестерня (Сплав наквада)", + "block.greate.naquadah_alloy_crushing_wheel": "Дробильное колесо (Сплав наквада)", + "block.greate.naquadah_alloy_crushing_wheel_controller": "Контроллер дробильного колеса (Сплав наквада)", + "block.greate.naquadah_alloy_encased_fan": "Вентилятор в корпусе (Сплав наквада)", + "block.greate.naquadah_alloy_gearbox": "Коробка передач (Сплав наквада)", + "block.greate.naquadah_alloy_mechanical_mixer": "Механический смешиватель (Сплав наквада)", + "block.greate.naquadah_alloy_mechanical_press": "Механический пресс (Сплав наквада)", + "block.greate.naquadah_alloy_mechanical_pump": "Механическая помпа (Сплав наквада)", + "block.greate.naquadah_alloy_mechanical_saw": "Механическая пила (Сплав наквада)", + "block.greate.naquadah_alloy_millstone": "Жёрнов (Сплав наквада)", + "block.greate.naquadah_alloy_shaft": "Вал (Сплав наквада)", + "block.greate.darmstadtium_cogwheel": "Шестерня (Дармштадтий)", + "block.greate.darmstadtium_crushing_wheel": "Дробильное колесо (Дармштадтий)", + "block.greate.darmstadtium_crushing_wheel_controller": "Контроллер дробильного колеса (Дармштадтий)", + "block.greate.darmstadtium_encased_fan": "Вентилятор в корпусе (Дармштадтий)", + "block.greate.darmstadtium_gearbox": "Коробка передач (Дармштадтий)", + "block.greate.darmstadtium_mechanical_mixer": "Механический смешиватель (Дармштадтий)", + "block.greate.darmstadtium_mechanical_press": "Механический пресс (Дармштадтий)", + "block.greate.darmstadtium_mechanical_pump": "Механическая помпа (Дармштадтий)", + "block.greate.darmstadtium_mechanical_saw": "Механическая пила (Дармштадтий)", + "block.greate.darmstadtium_millstone": "Жёрнов (Дармштадтий)", + "block.greate.darmstadtium_shaft": "Вал (Дармштадтий)", + "block.greate.neutronium_cogwheel": "Шестерня (Нейтроний)", + "block.greate.neutronium_crushing_wheel": "Дробильное колесо (Нейтроний)", + "block.greate.neutronium_crushing_wheel_controller": "Контроллер дробильного колеса (Нейтроний)", + "block.greate.neutronium_encased_fan": "Вентилятор в корпусе (Нейтроний)", + "block.greate.neutronium_gearbox": "Коробка передач (Нейтроний)", + "block.greate.neutronium_mechanical_mixer": "Механический смешиватель (Нейтроний)", + "block.greate.neutronium_mechanical_press": "Механический пресс (Нейтроний)", + "block.greate.neutronium_mechanical_pump": "Механическая помпа (Нейтроний)", + "block.greate.neutronium_mechanical_saw": "Механическая пила (Нейтроний)", + "block.greate.neutronium_millstone": "Жёрнов (Нейтроний)", + "block.greate.neutronium_shaft": "Вал (Нейтроний)", + "block.greate.large_aluminium_cogwheel": "Большая шестерня (Алюминий)", + "block.greate.large_darmstadtium_cogwheel": "Большая шестерня (Дармштадтий)", + "block.greate.large_naquadah_alloy_cogwheel": "Большая шестерня (Сплав наквада)", + "block.greate.large_neutronium_cogwheel": "Большая шестерня (Нейтроний)", + "block.greate.large_rhodium_plated_palladium_cogwheel": "Большая шестерня (Палладий с родиевым покрытием)", + "block.greate.large_stainless_steel_cogwheel": "Большая шестерня (Нержавеющая сталь)", + "block.greate.large_steel_cogwheel": "Большая шестерня (Сталь)", + "block.greate.large_titanium_cogwheel": "Большая шестерня (Титан)", + "block.greate.large_tungsten_steel_cogwheel": "Большая шестерня (Вольфрам)", + "item.greate.aluminium_alloy": "Алюминий (Сплав)", + "item.greate.aluminium_vertical_gearbox": "Вертикальная коробка передач (Алюминий)", + "item.greate.darmstadtium_alloy": "Дармштадтий (Сплав)", + "item.greate.darmstadtium_vertical_gearbox": "Вертикальная коробка передач (Дармштадтий)", + "item.greate.naquadah_alloy_alloy": "Сплав наквада (Сплав)", + "item.greate.naquadah_alloy_vertical_gearbox": "Вертикальная коробка передач (Сплав наквада)", + "item.greate.neutronium_alloy": "Нейтроний (Сплав)", + "item.greate.neutronium_vertical_gearbox": "Вертикальная коробка передач (Нейтроний)", + "item.greate.rhodium_plated_palladium_alloy": "Палладий с родиевым покрытием", + "item.greate.rhodium_plated_palladium_vertical_gearbox": "Вертикальная коробка передач (Палладий с родиевым покрытием)", + "item.greate.stainless_steel_alloy": "Нержавеющая сталь (Сплав)", + "item.greate.stainless_steel_vertical_gearbox": "Вертикальная коробка передач (Нержавеющая сталь)", + "item.greate.steel_alloy": "Сталь (Сплав)", + "item.greate.steel_vertical_gearbox": "Вертикальная коробка передач (Сталь)", + "item.greate.titanium_alloy": "Титан (Сплав)", + "item.greate.titanium_vertical_gearbox": "Вертикальная коробка передач (Титан)", + "item.greate.tungsten_steel_alloy": "Вольфрам (Сплав)", + "item.greate.tungsten_steel_vertical_gearbox": "Вертикальная коробка передач (Вольфрам)", + "block.greate.polybenzimidazole_belt_darmstadtium": "Ремень (Полибензимидазол (ПБИ))", + "block.greate.polybenzimidazole_belt_neutronium": "Ремень (Полибензимидазол (ПБИ))", + "item.greate.polybenzimidazole_belt_connector": "Ремень (Полибензимидазол (ПБИ))", + "block.greate.polytetrafluoroethylene_belt_naquadah_alloy": "Ремень (Политетрафторэтилен)", + "block.greate.polytetrafluoroethylene_belt_rhodium_plated_palladium": "Ремень (Политетрафторэтилен)", + "item.greate.polytetrafluoroethylene_belt_connector": "Ремень (Политетрафторэтилен)", + "block.greate.rubber_belt_andesite_alloy": "Ремень (Резина)", + "block.greate.rubber_belt_steel": "Ремень (Резина)", + "item.greate.rubber_belt_connector": "Ремень (Резина)", + "block.greate.polyethylene_belt_titanium": "Ремень (Стирол-бутадиеновая резина)", + "block.greate.polyethylene_belt_tungsten_steel": "Ремень (Стирол-бутадиеновая резина)", + "item.greate.polyethylene_belt_connector": "Ремень (Стирол-бутадиеновая резина)", + "block.greate.silicone_rubber_belt_aluminium": "Ремень (Силиконовая резина)", + "block.greate.silicone_rubber_belt_stainless_steel": "Ремень (Силиконовая резина)", + "item.greate.silicone_rubber_belt_connector": "Ремень (Силиконовая резина)", + "config.jade.plugin_greate.belt_icon": "Иконка ремня", + "config.jade.plugin_greate.recipe_duration": "Продолжительность рецепта", + "greate.jei.recipe_tier": "Уровень рецепта: ", + "greate.recipe.assembly.cutting": "Разрежьте %s или более лучшей пилой", + "greate.recipe.assembly.pressing": "Обработайте %s или более лучшим прессом", + "greate.recipe.automatic_brewing": "Сжатие предметов", + "greate.recipe.automatic_packing": "Форменное создание", + "greate.recipe.automatic_shapeless": "Бесформенное создание", + "greate.recipe.block_cutting": "Резка блоков", + "greate.recipe.crushing": "Дробление", + "greate.recipe.fan_haunting": "Призрачное наполнение", + "greate.recipe.fan_washing": "Массовая промывка", + "greate.recipe.milling": "Помол", + "greate.recipe.mixing": "Смешивание", + "greate.recipe.packing": "Упаковка", + "greate.recipe.pressing": "Прессование", + "greate.recipe.processing.extra_chance": "% дополнительно за каждый уровень", + "greate.recipe.sawing": "Распиловка", + "greate.recipe.wood_cutting": "Резка древесины" +} \ No newline at end of file diff --git a/kubejs/assets/greate/lang/zh_cn.json b/kubejs/assets/greate/lang/zh_cn.json new file mode 100644 index 000000000..6b9dbe3a5 --- /dev/null +++ b/kubejs/assets/greate/lang/zh_cn.json @@ -0,0 +1,44 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.greate.andesite_alloy_cogwheel": "基础齿轮", + "block.greate.andesite_alloy_crushing_wheel": "基础粉碎轮", + "block.greate.andesite_alloy_crushing_wheel_controller": "基础粉碎轮控制器", + "block.greate.andesite_alloy_encased_fan": "基础鼓风机", + "block.greate.andesite_alloy_gearbox": "基础齿轮箱", + "block.greate.andesite_alloy_mechanical_mixer": "基础机械搅拌器", + "block.greate.andesite_alloy_mechanical_press": "基础机械冲压机", + "block.greate.andesite_alloy_mechanical_pump": "基础机械泵", + "block.greate.andesite_alloy_mechanical_saw": "基础机械锯", + "block.greate.andesite_alloy_millstone": "基础磨盘", + "block.greate.andesite_alloy_shaft": "基础传动轴", + "block.greate.andesite_encased_aluminium_cogwheel": "金属铝齿轮箱", + "block.greate.andesite_encased_aluminium_shaft": "金属铝传动轴箱", + "block.greate.andesite_encased_andesite_alloy_cogwheel": "金属基础齿轮箱", + "block.greate.andesite_encased_andesite_alloy_shaft": "金属基础传动轴箱", + "block.greate.andesite_encased_large_aluminium_cogwheel": "金属大型铝齿轮箱", + "block.greate.andesite_encased_large_andesite_alloy_cogwheel": "金属大型基础齿轮箱", + "block.greate.andesite_encased_large_stainless_steel_cogwheel": "金属大型不锈钢齿轮箱", + "block.greate.andesite_encased_large_steel_cogwheel": "金属大型钢齿轮箱", + "block.greate.andesite_encased_large_titanium_cogwheel": "金属大型钛合金齿轮箱", + "block.greate.andesite_encased_stainless_steel_cogwheel": "金属不锈钢齿轮箱", + "block.greate.andesite_encased_stainless_steel_shaft": "金属不锈钢传动轴箱", + "block.greate.andesite_encased_steel_cogwheel": "金属钢齿轮箱", + "block.greate.andesite_encased_steel_shaft": "金属钢传动轴箱钢", + "block.greate.andesite_encased_titanium_cogwheel": "金属钛合金齿轮箱", + "block.greate.andesite_encased_titanium_shaft": "金属钛合金传动轴箱", + "block.greate.brass_encased_andesite_alloy_cogwheel": "黄铜基础齿轮箱", + "block.greate.brass_encased_andesite_alloy_shaft": "黄铜基础传动轴箱", + "block.greate.brass_encased_large_andesite_alloy_cogwheel": "黄铜大型基础齿轮箱", + "block.greate.large_andesite_alloy_cogwheel": "大型基础齿轮", + "block.greate.metal_girder_encased_andesite_alloy_shaft": "金属梁包住的基础传动轴", + "block.greate.powered_andesite_alloy_shaft": "动力基础传动轴", + "item.greate.rubber_belt_connector": "橡胶传送带", + "item.greate.silicone_rubber_belt_connector": "硅橡胶传送带", + "block.greate.polyethylene_belt_titanium": "丁苯橡胶传送带", + "block.greate.polyethylene_belt_tungsten_steel": "丁苯橡胶传送带", + "item.greate.polyethylene_belt_connector": "丁苯橡胶传送带", + "item.greate.andesite_alloy_vertical_gearbox": "基础竖直十字齿轮箱", + "greate.recipe.packing": "焊接与封装", + "greate.ponder.belt_casing.text_1": "黄铜机壳或金属机壳可用于装饰机械传送带", + "greate.ponder.cogwheel_casing.text_1": "黄铜机壳或金属机壳可用于装饰齿轮" +} \ 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 8f72f42c9..70b1aac63 100644 --- a/kubejs/assets/gtceu/lang/en_us.json +++ b/kubejs/assets/gtceu/lang/en_us.json @@ -15,7 +15,8 @@ "block.gtceu.evaporation_tower": "Evaporation Tower", "block.gtceu.ostrum_harvester": "Ostrum Harvester", "block.gtceu.moon_dust_harvester": "Moon Dust Harvester", - "block.gtceu.extraterrestrial_ore_fabricator": "Extraterrestrial Ore Fabricator", + "block.gtceu.ostrum_linear_accelerator": "Ostrum Linear Accelerator", + "block.tfg.bioreactor": "Bioreactor", "block.gtceu.copper_crate": "Copper Crate", "block.gtceu.copper_drum": "Copper Drum", "block.gtceu.black_bronze_crate": "Black Bronze Crate", @@ -40,7 +41,8 @@ "gtceu.evaporation_tower": "Evaporation Tower", "gtceu.ostrum_harvester": "Ostrum Harvester", "gtceu.moon_dust_harvester": "Moon Dust Harvester", - "gtceu.extraterrestrial_ore_fabricator": "Extraterrestrial Ore Fabricator", + "gtceu.ostrum_linear_accelerator": "Ostrum Linear Accelerator", + "gtceu.bioreactor": "Bioreactor", "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", @@ -149,17 +151,16 @@ "material.gtceu.ostrum_vapor": "Ostrum Vapor", "metaitem.dust.tooltip.purify": "Drop in Water to get Clean Dust", "metaitem.crushed.tooltip.purify": "Drop in Water to get Purified Ore", - "item.gtceu.tool.behavior.silk_ice": "Silk harvests Packed Ice", - "item.gtceu.tool.butchery_knife.tooltip": "Butchers animals for more meat", - "gtceu.jei.bedrock_ore.moon_asbestos": "Lunar Asbestos", - "gtceu.jei.bedrock_ore.moon_mica": "Lunar Mica", - "gtceu.jei.bedrock_ore.moon_tin": "Lunar Tin", - "gtceu.jei.bedrock_ore.moon_certus": "Lunar Certus Quartz", - "gtceu.jei.bedrock_ore.moon_magnetite": "Lunar Magnetite", - "gtceu.jei.bedrock_ore.moon_copper": "Lunar Chalcopyrite", + "item.gtceu.tool.behavior.silk_ice": "§dSculptor:§r Silk harvests Packed Ice", + "item.gtceu.tool.butchery_knife.tooltip": "§cButcher:§r Butchers animals for more meat", + "gtceu.machine.lp_steam_extractor.tooltip": "§7Does not extract fluids", + "gtceu.machine.hp_steam_extractor.tooltip": "§7Does not extract fluids", "gtceu.jei.bedrock_fluid.moon_helium": "Lunar Helium", "gtceu.jei.bedrock_fluid.moon_helium_3": "Lunar Helium-3", "gtceu.jei.bedrock_fluid.moon_argon": "Lunar Argon", + "gtceu.jei.bedrock_fluid.semiheavy_ammoniacal_water": "Martian Semiheavy Ammoniacal Water", + "gtceu.jei.bedrock_fluid.liquid_carbon_dioxide": "Martian Liquid Carbon Dioxide", + "gtceu.jei.bedrock_fluid.heavy_ammoniacal_water": "Martian Heavy Ammoniacal Water", "tagprefix.sword_head": "%s Sword Head", "tagprefix.pickaxe_head": "%s Pickaxe Head", "tagprefix.shovel_head": "%s Shovel Head", diff --git a/kubejs/assets/gtceu/lang/ru_ru.json b/kubejs/assets/gtceu/lang/ru_ru.json index 45c70fc54..1fb1eb28a 100644 --- a/kubejs/assets/gtceu/lang/ru_ru.json +++ b/kubejs/assets/gtceu/lang/ru_ru.json @@ -1,9 +1,56 @@ { "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "gtceu.jei.bedrock_ore.moon_asbestos": "Лунный асбест", + "gtceu.jei.bedrock_ore.moon_mica": "Лунная слюда", + "gtceu.jei.bedrock_ore.moon_tin": "Лунное олово", + "gtceu.jei.bedrock_ore.moon_certus": "Лунный истинный кварц", + "gtceu.jei.bedrock_ore.moon_magnetite": "Лунный магнетит", + "gtceu.jei.bedrock_ore.moon_copper": "Лунный халькопирит", + "item.gtceu.gear_extruder_mold": "Форма экструдера (Шестерня)", + "block.bud_indicator": "Поверхностная друза (%s)", + "block.gtceu.greenhouse": "Теплица", + "block.gtceu.steam_bloomery": "Паровой сыродутный горн", + "gtceu.greenhouse": "Электрическая теплица", + "gtceu.steam_bloomery": "Паровой сыродутный горн", + "block.gtceu.black_bronze_crate": "Ящик из черной бронзы", + "block.gtceu.black_bronze_drum": "Бочка из черной бронзы", + "block.gtceu.bismuth_bronze_crate": "Ящик из висмутовой бронзы", + "block.gtceu.bismuth_bronze_drum": "Бочка из висмутовой бронзы", + "item.gtceu.tiny_wood_dust": "Крохотная кучка массы из мягкого дерева", + "item.gtceu.small_wood_dust": "Маленькая кучка массы из мягкого дерева", + "item.gtceu.wood_dust": "Масса из мягкого дерева", + "item.gtceu.tiny_hardwood_dust": "Крохотная кучка массы из твёрдого дерева", + "item.gtceu.small_hardwood_dust": "Маленькая кучка массы из твёрдого дерева", + "item.gtceu.hardwood_dust": "Масса из твёрдого дерева", + "item.gtceu.tiny_thermochemically_treated_hardwood_dust": "Крохотная кучка обработанной массы из твёрдого дерева", + "item.gtceu.small_thermochemically_treated_hardwood_dust": "Маленькая кучка обработанной массы из твёрдого дерева", + "item.gtceu.thermochemically_treated_hardwood_dust": "Обработанная масса из твёрдого дерева", + "item.gtceu.small_deepslate_dust": "Мигматит (Крохотная кучка пыли)", + "item.gtceu.tiny_deepslate_dust": "Мигматит (Маленькая кучка пыли)", + "item.gtceu.small_blackstone_dust": "Пироксенит (Крохотная кучка пыли)", + "item.gtceu.tiny_blackstone_dust": "Пироксенит (Маленькая кучка пыли)", "item.gtceu.tool.behavior.canoe_creator": "§Лодочник: §fМожет создавать каное", - "tagprefix.double_ingot": "%s (Двойной слиток)", - "tagprefix.poor_raw": "%s (Бедная руда)", - "tagprefix.rich_raw": "%s (Богатая руда)", + "item.gtceu.ice_bucket": "Ведро со льдом", + "item.gtceu.deepslate_dust": "Мигматит (Пыль)", + "item.gtceu.blackstone_dust": "Пироксенит (Пыль)", + "item.gtceu.iron_ring": "Серый чугун (Кольцо)", + "item.gtceu.small_iron_gear": "Серый чугун (Маленькая шестерня)", + "item.gtceu.iron_gear": "Серый чугун (Шестерня)", + "item.gtceu.iron_plate": "Серый чугун (Пластина)", + "item.gtceu.double_iron_plate": "Серый чугун (Двойная пластина)", + "item.gtceu.iron_rod": "Серый чугун (Стержень)", + "item.gtceu.long_iron_rod": "Серый чугун (Прут)", + "item.gtceu.iron_rotor": "Серый чугун (Ротор)", + "item.gtceu.iron_spring": "Серый чугун (Пружина)", + "item.gtceu.small_iron_spring": "Серый чугун (Маленькая пружина)", + "item.gtceu.iron_bolt": "Серый чугун (Болт)", + "item.gtceu.iron_screw": "Серый чугун (Винт)", + "item.gtceu.iron_turbine_blade": "Серый чугун (Лопасть турбины)", + "item.gtceu.iron_round": "Серый чугун (Шарик)", + "metaitem.dust.tooltip.purify": "Бросьте в источник воды или нажмите ПКМ по котлу, для получения чистой пыли", + "metaitem.crushed.tooltip.purify": "Бросьте в источник воды или нажмите ПКМ по котлу, для получения очищенной руды", + "block.gtceu.overworld_marker": "Земля", + "block.gtceu.the_nether_marker": "Бездна", "tagprefix.sword_head": "%s (Оголовье меча)", "tagprefix.pickaxe_head": "%s (Оголовье кирки)", "tagprefix.shovel_head": "%s (Оголовье лопаты)", @@ -17,12 +64,15 @@ "tagprefix.butchery_knife_head": "%s (Оголовье тесака)", "tagprefix.mining_hammer_head": "%s (Оголовье шахтерского молота)", "tagprefix.spade_head": "%s (Оголовье заступа)", + "tagprefix.double_ingot": "%s (Двойной слиток)", + "tagprefix.poor_raw": "%s (Бедная руда)", + "tagprefix.rich_raw": "%s (Богатая руда)", "tagprefix.gabbro": "%s (Габбровая руда)", "tagprefix.shale": "%s (Сланцевая руда)", "tagprefix.claystone": "%s (Аргиллитовая руда)", "tagprefix.limestone": "%s (Известняковая руда)", - "tagprefix.conglomerate": "%s (Conglomerate Ore)", - "tagprefix.dolomite": "%s (Конгломератовая руда)", + "tagprefix.conglomerate": "%s (Конгломератовая руда)", + "tagprefix.dolomite": "%s (Доломитовая руда)", "tagprefix.chert": "%s (Кермнисто-сланцевая руда)", "tagprefix.chalk": "%s (Меловая руда)", "tagprefix.rhyolite": "%s (Риолитовая руда)", @@ -31,6 +81,23 @@ "tagprefix.slate": "%s (Шиферно-сланцевая руда)", "tagprefix.phyllite": "%s (Филлитовая руда)", "tagprefix.schist": "%s (Аспидно-сланцевая руда)", - "tagprefix.gneiss": "%s (Гнейсовая руда Ore)", - "tagprefix.marble": "%s (Мраморная руда)" + "tagprefix.gneiss": "%s (Гнейсовая руда)", + "tagprefix.marble": "%s (Мраморная руда)", + "tagprefix.deepslate": "%s (Мигматитовая руда)", + "tagprefix.pyroxenite": "%s (Пироксенитовая руда)", + "tagprefix.dripstone": "%s (Травертиновая руда)", + "tagprefix.moon_stone": "%s (Анортозитовая руда)", + "tagprefix.moon_deepslate": "%s (Норитовая руда)", + "tagprefix.mars_stone": "%s (Аргиллитовая руда)", + "tagprefix.venus_stone": "%s (Трахитовая руда)", + "tagprefix.mercury_stone": "%s (Коматиитовая руда)", + "tagprefix.glacio_stone": "%s (Фонолитовая руда)", + "material.gtceu.blue_steel": "Синяя сталь", + "material.gtceu.desh": "Деш", + "material.gtceu.calorite": "Калорит", + "material.gtceu.etrium": "Этриум", + "material.gtceu.armalcolite": "Армалколит", + "material.gtceu.rose_quartz": "Розовый кварц", + "material.gtceu.vitrified_asbestos": "Остеклованный асбест", + "material.gtceu.rocket_alloy_t1": "Красный алюминиево-стальной ракетный сплав" } \ No newline at end of file diff --git a/kubejs/assets/gtceu/lang/uk_ua.json b/kubejs/assets/gtceu/lang/uk_ua.json index d62cb2589..a21bbc2ae 100644 --- a/kubejs/assets/gtceu/lang/uk_ua.json +++ b/kubejs/assets/gtceu/lang/uk_ua.json @@ -13,6 +13,10 @@ "block.gtceu.heat_exchanger": "Теплообмінник", "block.gtceu.fission_reactor": "Реактор ядерного поділу", "block.gtceu.evaporation_tower": "Випарна камера", + "block.gtceu.ostrum_harvester": "Збирач Острому", + "block.gtceu.moon_dust_harvester": "Збирач Місячного Пилу", + "block.gtceu.ostrum_linear_accelerator": "Лінійний Прискорювач з Оструму", + "block.tfg.bioreactor": "Біореактор", "block.gtceu.copper_crate": "Мідний Ящик", "block.gtceu.copper_drum": "Мідна Бочка", "block.gtceu.black_bronze_crate": "Ящик з Чорної Бронзи", @@ -35,6 +39,10 @@ "gtceu.heat_exchanger": "Теплообмінник", "gtceu.fission_reactor": "Реактор ядерного поділу", "gtceu.evaporation_tower": "Випарна камера", + "gtceu.ostrum_harvester": "Збирач Острому", + "gtceu.moon_dust_harvester": "Збирач Місячного Пилу", + "gtceu.ostrum_linear_accelerator": "Лінійний Прискорювач з Оструму", + "gtceu.bioreactor": "Біореактор", "item.gtceu.tiny_wood_dust": "Маленька купа хвойної целюлози", "item.gtceu.small_wood_dust": "Мала купа хвойної целюлози", "item.gtceu.wood_dust": "Хвойна целюлоза", @@ -56,8 +64,8 @@ "item.gtceu.iron_gear": "Чавунна шестерня", "item.gtceu.iron_plate": "Чавунна пластина", "item.gtceu.double_iron_plate": "Подвійна чавунна пластина", - "item.gtceu.iron_rod": "Чавунний стрижень", - "item.gtceu.long_iron_rod": "Довгий чавунний стрижень", + "item.gtceu.iron_rod": "Чавунний Стержень", + "item.gtceu.long_iron_rod": "Довгий Чавунний Стержень", "item.gtceu.iron_rotor": "Чавунний ротор", "item.gtceu.iron_spring": "Чавунна пружина", "item.gtceu.small_iron_spring": "Мала чавунна пружина", @@ -84,11 +92,7 @@ "item.gtceu.osmium_credit": "§732,768 Кредитів", "item.gtceu.naquadah_credit": "§7262,144 Кредитів", "item.gtceu.neutronium_credit": "§72,097,152 Кредити", - "item.gtceu.treated_wood_plate": "Оброблена ДВП середньої щільності", "item.gtceu.wood_plate": "ДВП середньої щільності", - "item.gtceu.treated_wood_dust": "Оброблений композит на основі ДСП", - "item.gtceu.small_treated_wood_dust": "Невелика купа обробленого деревостружкового композиту", - "item.gtceu.tiny_treated_wood_dust": "Маленька купа обробленого деревостружкового композиту", "material.gtceu.ice": "Крижана каша", "material.gtceu.damascus_steel": "Свиняча сталь", "material.gtceu.cooperite": "Куперит", @@ -115,14 +119,14 @@ "material.gtceu.martian_sludge": "Марсіанський мул", "material.gtceu.dioxygen_difluoride": "Діоксиген дифторид", "material.gtceu.tritiated_water": "Тритійована вода", - "material.gtceu.raw_rich_brine": "Сира концентрована розсіл", + "material.gtceu.raw_rich_brine": "Насичений Необроблений Розсіл", "material.gtceu.hot_iodine_brine": "Гарячий йодний розсіл", "material.gtceu.brominated_iodine_vapor": "Бромована йодна пара", "material.gtceu.basic_bromine_exhaust": "Базові бромні вихлопи", "material.gtceu.dirty_flibe": "Брудний FLiBe", "material.gtceu.flibe": "FLiBe", "material.gtceu.hot_flibe": "Гарячий FLiBe", - "material.gtceu.raw_brine": "Сирий розсіл", + "material.gtceu.raw_brine": "Необроблений Розсіл", "material.gtceu.hot_brine": "Гарячий розсіл", "material.gtceu.hot_chlorinated_brominated_brine": "Гарячий хлорований бромований розсіл", "material.gtceu.brominated_chlorine_vapor": "Бромована хлорна пара", @@ -140,19 +144,29 @@ "material.gtceu.plutonium_pellet": "Плутонієва гранула", "material.gtceu.uranium_pellet": "Уранова гранула", "material.gtceu.thorium_pellet": "Торієва гранула", + "material.gtceu.residual_radioactive_concoction": "Залишкова Радіоактивна Суміш", + "material.gtceu.regolith_vapor": "Випаровування Реголіту", + "material.gtceu.dense_ostrum_vapor": "Густе Випаровування Острому", + "material.gtceu.lightweight_ostrum_vapor": "Легке Випаровування Острому", + "material.gtceu.ostrum_vapor": "Випаровування Оструму", "metaitem.dust.tooltip.purify": "Киньте у воду, щоб отримати чистий пил", "metaitem.crushed.tooltip.purify": "Киньте у воду, щоб отримати очищену руду", "item.gtceu.tool.behavior.silk_ice": "Шовк збирає упакований лід", "item.gtceu.tool.butchery_knife.tooltip": "Забиває тварин для отримання більшої кількості м’яса", - "gtceu.jei.bedrock_ore.moon_asbestos": "Місячний Азбест", - "gtceu.jei.bedrock_ore.moon_mica": "Місячна Слюда", - "gtceu.jei.bedrock_ore.moon_tin": "Місячне Олово", - "gtceu.jei.bedrock_ore.moon_certus": "Місячний Істинний Кварц", - "gtceu.jei.bedrock_ore.moon_magnetite": "Місячний Магнетит", - "gtceu.jei.bedrock_ore.moon_copper": "Місячний Халькопірит", + "gtceu.machine.lp_steam_extractor.tooltip": "§7Не видобуває рідини", + "gtceu.machine.hp_steam_extractor.tooltip": "§7Не видобуває рідини", "gtceu.jei.bedrock_fluid.moon_helium": "Місячний Гелій", "gtceu.jei.bedrock_fluid.moon_helium_3": "Місячний Гелій-3", "gtceu.jei.bedrock_fluid.moon_argon": "Місячний Аргон", + "gtceu.jei.bedrock_fluid.semiheavy_ammoniacal_water": "Марсіанська Напівважка Амоніачна Вода", + "gtceu.jei.bedrock_fluid.liquid_carbon_dioxide": "Марсіанський Рідкий Діоксид Карбону", + "gtceu.jei.bedrock_fluid.heavy_ammoniacal_water_amber_hills": "Марсіанська Важка Амоніачна Вода", + "gtceu.jei.bedrock_fluid.heavy_ammoniacal_water_amber_plains": "Марсіанська Важка Амоніачна Вода", + "gtceu.jei.bedrock_fluid.heavy_ammoniacal_water_mountains": "Марсіанська Важка Амоніачна Вода", + "gtceu.jei.bedrock_fluid.heavy_ammoniacal_water_rusticus_hills": "Марсіанська Важка Амоніачна Вода", + "gtceu.jei.bedrock_fluid.heavy_ammoniacal_water_rusticus_plains": "Марсіанська Важка Амоніачна Вода", + "gtceu.jei.bedrock_fluid.heavy_ammoniacal_water_sangnum_hills": "Марсіанська Важка Амоніачна Вода", + "gtceu.jei.bedrock_fluid.heavy_ammoniacal_water_sangnum_plains": "Марсіанська Важка Амоніачна Вода", "tagprefix.sword_head": "%s Лезо меча", "tagprefix.pickaxe_head": "%s Лезо кайла", "tagprefix.shovel_head": "%s Лезо лопати", @@ -167,8 +181,9 @@ "tagprefix.mining_hammer_head": "%s Оголів'я скельного молота", "tagprefix.spade_head": "%s Лезо лопати", "tagprefix.double_ingot": "%s Подвійний злиток", - "tagprefix.poor_raw": "Бідна(е, ий) сира(е, ий) %s", - "tagprefix.rich_raw": "Багата(е,ий) сира(е,ий) %s", + "tagprefix.poor_raw": "Бідна Сировина %s", + "tagprefix.rich_raw": "Багата Сировина %s", + "tagprefix.dusty_raw": "Пилова Сировина %s", "tagprefix.gabbro": "Габро %s руда", "tagprefix.shale": "Глиняста сланцева %s руда", "tagprefix.claystone": "Аргілітова %s руда", diff --git a/kubejs/assets/gtceu/lang/zh_cn.json b/kubejs/assets/gtceu/lang/zh_cn.json new file mode 100644 index 000000000..040d3d3cd --- /dev/null +++ b/kubejs/assets/gtceu/lang/zh_cn.json @@ -0,0 +1,200 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.bud_indicator": "%s 表面芽", + "block.gtceu.nether_dome": "下界模拟舱", + "block.gtceu.end_dome": "末地模拟舱", + "block.gtceu.greenhouse": "温室", + "block.gtceu.steam_bloomery": "蒸汽锻铁炉", + "block.gtceu.large_solar_panel": "§9大型太阳能阵列 MK I", + "block.gtceu.large_solar_panel_tier2": "§b大型太阳能阵列 MK II", + "block.gtceu.large_solar_panel_tier3": "§c大型太阳能阵列 MK III", + "block.gtceu.gas_pressurizer": "气体加压器", + "block.gtceu.nuclear_fuel_factory": "核燃料工厂", + "block.gtceu.heat_exchanger": "热交换器", + "block.gtceu.fission_reactor": "裂变反应堆", + "block.gtceu.evaporation_tower": "蒸发塔", + "block.gtceu.copper_crate": "铜板条箱", + "block.gtceu.copper_drum": "铜桶", + "block.gtceu.black_bronze_crate": "黑青铜板条箱", + "block.gtceu.black_bronze_drum": "黑青铜桶", + "block.gtceu.bismuth_bronze_crate": "铋青铜板条箱", + "block.gtceu.bismuth_bronze_drum": "铋青铜桶", + "block.gtceu.overworld_marker": "地球", + "block.gtceu.the_nether_marker": "幽冥之地", + "gtceu.nether_dome": "下界模拟舱", + "gtceu.end_dome": "末地模拟舱", + "gtceu.greenhouse": "电力温室", + "gtceu.steam_bloomery": "蒸汽锻铁炉", + "gtceu.food_oven": "食物烤炉", + "gtceu.food_processor": "食物处理器", + "gtceu.large_solar_panel": "大型太阳能阵列 MK I", + "gtceu.large_solar_panel_tier2": "大型太阳能阵列 MK II", + "gtceu.large_solar_panel_tier3": "大型太阳能阵列 MK III", + "gtceu.gas_pressurizer": "气体加压器", + "gtceu.nuclear_fuel_factory": "核燃料工厂", + "gtceu.heat_exchanger": "热交换器", + "gtceu.fission_reactor": "裂变反应堆", + "gtceu.evaporation_tower": "蒸发塔", + "block.gtceu.ostrum_harvester": "紫金采集器", + "block.gtceu.moon_dust_harvester": "月尘采集器", + "gtceu.ostrum_harvester": "紫金采集器", + "gtceu.moon_dust_harvester": "月尘采集器", + "block.gtceu.ostrum_linear_accelerator": "紫金线性加速器", + "gtceu.ostrum_linear_accelerator": "紫金线性加速器", + "block.tfg.bioreactor": "生物反应器", + "gtceu.bioreactor": "生物反应器", + "item.gtceu.tiny_wood_dust": "小撮软木浆", + "item.gtceu.small_wood_dust": "小堆软木浆", + "item.gtceu.wood_dust": "软木浆", + "item.gtceu.tiny_hardwood_dust": "小撮硬木浆", + "item.gtceu.small_hardwood_dust": "小堆硬木浆", + "item.gtceu.hardwood_dust": "硬木浆", + "item.gtceu.tiny_thermochemically_treated_hardwood_dust": "小撮热化学处理硬木浆", + "item.gtceu.small_thermochemically_treated_hardwood_dust": "小堆热化学处理硬木浆", + "item.gtceu.thermochemically_treated_hardwood_dust": "热化学处理硬木浆", + "item.gtceu.tool.behavior.canoe_creator": "§5船工特性: §f可制造木舟", + "item.gtceu.deepslate_dust": "混合岩粉", + "item.gtceu.small_deepslate_dust": "小堆混合岩粉", + "item.gtceu.tiny_deepslate_dust": "小撮混合岩粉", + "item.gtceu.blackstone_dust": "辉石岩粉", + "item.gtceu.small_blackstone_dust": "小堆辉石岩粉", + "item.gtceu.tiny_blackstone_dust": "小撮辉石岩粉", + "item.gtceu.iron_ring": "铸铁环", + "item.gtceu.small_iron_gear": "小型铸铁齿轮", + "item.gtceu.iron_gear": "铸铁齿轮", + "item.gtceu.iron_plate": "铸铁板", + "item.gtceu.double_iron_plate": "双层铸铁板", + "item.gtceu.iron_rod": "铸铁杆", + "item.gtceu.long_iron_rod": "长铸铁杆", + "item.gtceu.iron_rotor": "铸铁转子", + "item.gtceu.iron_spring": "铸铁弹簧", + "item.gtceu.small_iron_spring": "小型铸铁弹簧", + "item.gtceu.iron_bolt": "铸铁螺栓", + "item.gtceu.iron_screw": "铸铁螺丝", + "item.gtceu.iron_turbine_blade": "铸铁涡轮扇叶", + "item.gtceu.iron_round": "铸铁圆头", + "item.gtceu.iron_single_wire": "1x 铸铁导线", + "item.gtceu.iron_double_wire": "2x 铸铁导线", + "item.gtceu.iron_quadruple_wire": "4x 铸铁导线", + "item.gtceu.iron_octal_wire": "8x 铸铁导线", + "item.gtceu.iron_hex_wire": "16x 铸铁导线", + "item.gtceu.iron_single_cable": "1x 铸铁线缆", + "item.gtceu.iron_double_cable": "2x 铸铁线缆", + "item.gtceu.iron_quadruple_cable": "4x 铸铁线缆", + "item.gtceu.iron_octal_cable": "8x 铸铁线缆", + "item.gtceu.iron_hex_cable": "16x 铸铁线缆", + "item.gtceu.ice_bucket": "冰泥桶", + "item.gtceu.copper_credit": "§71币值", + "item.gtceu.cupronickel_credit": "§78币值", + "item.gtceu.silver_credit": "§764币值", + "item.gtceu.gold_credit": "§7512币值", + "item.gtceu.platinum_credit": "§74,096币值", + "item.gtceu.osmium_credit": "§732,768币值", + "item.gtceu.naquadah_credit": "§7262,144币值", + "item.gtceu.neutronium_credit": "§72,097,152币值", + "item.gtceu.wood_plate": "中密度纤维板", + "material.gtceu.ice": "冰泥", + "material.gtceu.damascus_steel": "猪灵钢", + "material.gtceu.cooperite": "硫铂矿", + "material.gtceu.armalcolite": "阿姆阿尔柯尔矿", + "material.gtceu.desh": "戴斯", + "material.gtceu.ostrum": "紫金", + "material.gtceu.calorite": "耐热金属", + "material.gtceu.etrium": "埃忒恩", + "material.gtceu.aluminium_silicate": "硅酸铝", + "material.gtceu.rocket_alloy_t1": "R型铝钢火箭合金", + "material.gtceu.rocket_alloy_t3": "45-Ti 钨钢火箭合金", + "material.gtceu.vitrified_asbestos": "玻璃化石棉", + "material.gtceu.liquid_carbon_dioxide": "液态二氧化碳", + "material.gtceu.hot_debrominated_brine": "高温脱溴卤水", + "material.gtceu.hydrogen_iodide": "碘化氢", + "material.gtceu.dense_steam": "高压蒸汽", + "material.gtceu.radioactive_steam": "放射性蒸汽", + "material.gtceu.radioactive_waste": "放射性废料", + "material.gtceu.irradiated_steam": "辐照蒸汽", + "material.gtceu.heavy_water": "重水", + "material.gtceu.uranium_waste": "铀废料", + "material.gtceu.nuclear_waste": "核废料", + "material.gtceu.dirty_hexafluorosilicic_acid": "粗制氟硅酸", + "material.gtceu.martian_sludge": "火星浆液", + "material.gtceu.dioxygen_difluoride": "二氟化二氧", + "material.gtceu.tritiated_water": "氚化水", + "material.gtceu.raw_rich_brine": "粗制富集卤水", + "material.gtceu.hot_iodine_brine": "高温含碘卤水", + "material.gtceu.brominated_iodine_vapor": "溴化碘蒸气", + "material.gtceu.basic_bromine_exhaust": "基础溴废气", + "material.gtceu.dirty_flibe": "粗氟锂铍熔盐", + "material.gtceu.flibe": "氟锂铍熔盐", + "material.gtceu.hot_flibe": "高温氟锂铍熔盐", + "material.gtceu.raw_brine": "粗制卤水", + "material.gtceu.hot_brine": "高温卤水", + "material.gtceu.hot_chlorinated_brominated_brine": "高温氯化溴卤水", + "material.gtceu.brominated_chlorine_vapor": "溴化氯蒸气", + "material.gtceu.acidic_bromine_solution": "酸性溴溶液", + "material.gtceu.concentrated_bromine_solution": "浓缩溴溶液", + "material.gtceu.debrominated_brine": "脱溴卤水", + "material.gtceu.acidic_bromine_exhaust": "酸性溴废气", + "material.gtceu.hot_alkaline_debrominated_brine": "高温碱性脱溴卤水", + "material.gtceu.lithium_carbonate": "碳酸锂", + "material.gtceu.lithium_fluoride": "氟化锂", + "material.gtceu.tetrafluoroberyllate": "四氟铍酸盐", + "material.gtceu.thorium_230": "钍-230", + "material.gtceu.thorium_232": "钍-232", + "material.gtceu.tbu-232_pellet": "TBU-232燃料丸", + "material.gtceu.plutonium_pellet": "钚燃料丸", + "material.gtceu.uranium_pellet": "铀燃料丸", + "material.gtceu.thorium_pellet": "钍燃料丸", + "material.gtceu.residual_radioactive_concoction": "放射性残液", + "material.gtceu.regolith_vapor": "风化土蒸气", + "material.gtceu.dense_ostrum_vapor": "致密紫金蒸气", + "material.gtceu.lightweight_ostrum_vapor": "轻质紫金蒸气", + "material.gtceu.ostrum_vapor": "紫金蒸气", + "metaitem.dust.tooltip.purify": "投入水中可获得纯净粉末", + "metaitem.crushed.tooltip.purify": "投入水中可获得纯净矿石", + "item.gtceu.tool.behavior.silk_ice": "精准采集可获得浮冰", + "item.gtceu.tool.butchery_knife.tooltip": "屠宰动物可获得更多肉类", + "gtceu.jei.bedrock_fluid.moon_helium": "月球氦气", + "gtceu.jei.bedrock_fluid.moon_helium_3": "月球氦-3", + "gtceu.jei.bedrock_fluid.moon_argon": "月球氩气", + "gtceu.machine.lp_steam_extractor.tooltip": "§7不能提取流体", + "gtceu.machine.hp_steam_extractor.tooltip": "§7不能提取流体", + "gtceu.jei.bedrock_fluid.semiheavy_ammoniacal_water": "火星半重氨水", + "gtceu.jei.bedrock_fluid.liquid_carbon_dioxide": "火星液态二氧化碳", + "gtceu.jei.bedrock_fluid.heavy_ammoniacal_water": "火星重氨水", + "tagprefix.sword_head": "%s剑头", + "tagprefix.pickaxe_head": "%s镐头", + "tagprefix.shovel_head": "%s铲头", + "tagprefix.axe_head": "%s斧头", + "tagprefix.hoe_head": "%s锄头", + "tagprefix.scythe_head": "%s镰刀头", + "tagprefix.file_head": "%s锉刀头", + "tagprefix.hammer_head": "%s锤头", + "tagprefix.saw_head": "%s锯头", + "tagprefix.knife_head": "%s刀头", + "tagprefix.butchery_knife_head": "%s屠刀头", + "tagprefix.mining_hammer_head": "%s采矿锤头", + "tagprefix.spade_head": "%s锹头", + "tagprefix.double_ingot": "%s双锭", + "tagprefix.poor_raw": "贫瘠%s原矿", + "tagprefix.rich_raw": "富集%s原矿", + "tagprefix.gabbro": "辉长岩%s矿石", + "tagprefix.shale": "页岩%s矿石", + "tagprefix.claystone": "黏土岩%s矿石", + "tagprefix.limestone": "石灰岩%s矿石", + "tagprefix.conglomerate": "砾岩%s矿石", + "tagprefix.dolomite": "白云岩%s矿石", + "tagprefix.chert": "燧石%s矿石", + "tagprefix.chalk": "白垩岩%s矿石", + "tagprefix.rhyolite": "流纹岩%s矿石", + "tagprefix.dacite": "英安岩%s矿石", + "tagprefix.quartzite": "石英岩%s矿石", + "tagprefix.slate": "板岩%s矿石", + "tagprefix.phyllite": "千枚岩%s矿石", + "tagprefix.schist": "片岩%s矿石", + "tagprefix.gneiss": "片麻岩%s矿石", + "tagprefix.marble": "大理岩%s矿石", + "tagprefix.deepslate": "混合岩%s矿石", + "tagprefix.pyroxenite": "辉石岩%s矿石", + "tagprefix.dripstone": "石灰华%s矿石", + "tagprefix.dusty_raw": "积尘%s原矿" +} \ No newline at end of file diff --git a/kubejs/assets/hangglider/lang/ru_ru.json b/kubejs/assets/hangglider/lang/ru_ru.json new file mode 100644 index 000000000..b6a1305cc --- /dev/null +++ b/kubejs/assets/hangglider/lang/ru_ru.json @@ -0,0 +1,8 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "item.hangglider.glider_framework": "Каркас дельтаплана", + "item.hangglider.glider_wing": "Крыло дельтаплана", + "item.hangglider.hang_glider": "Дельтаплан", + "item.hangglider.reinforced_hang_glider": "Усиленный дельтаплан", + "itemGroup.hangglider.main": "Hang Glider" +} \ No newline at end of file diff --git a/kubejs/assets/immersive_aircraft/lang/ru_ru.json b/kubejs/assets/immersive_aircraft/lang/ru_ru.json new file mode 100644 index 000000000..ec2871f8a --- /dev/null +++ b/kubejs/assets/immersive_aircraft/lang/ru_ru.json @@ -0,0 +1,9 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "item.immersive_aircraft.steel_boiler": "Паровой воздушный двигатель", + "item.immersive_aircraft.nether_engine": "Воздушный двигатель MV", + "item.immersive_aircraft.enhanced_propeller": "Пропеллер самолёта (Алюминий)", + "item.immersive_aircraft.improved_landing_gear": "Шасси (Чёрная сталь)", + "item.immersive_aircraft.hull_reinforcement": "Усиление корпуса (Чёрная сталь)", + "item.immersive_aircraft.bamboo_hopper": "Воронка (Алюминий)" +} \ No newline at end of file diff --git a/kubejs/assets/immersive_aircraft/lang/zh_cn.json b/kubejs/assets/immersive_aircraft/lang/zh_cn.json new file mode 100644 index 000000000..cb441871e --- /dev/null +++ b/kubejs/assets/immersive_aircraft/lang/zh_cn.json @@ -0,0 +1,9 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "item.immersive_aircraft.steel_boiler": "蒸汽动力航空引擎", + "item.immersive_aircraft.nether_engine": "中压航空引擎", + "item.immersive_aircraft.enhanced_propeller": "镀铝飞机螺旋桨", + "item.immersive_aircraft.improved_landing_gear": "玄钢起落架", + "item.immersive_aircraft.hull_reinforcement": "玄钢机身加固件", + "item.immersive_aircraft.bamboo_hopper": "铝制漏斗" +} \ No newline at end of file diff --git a/kubejs/assets/minecraft/lang/ru_ru.json b/kubejs/assets/minecraft/lang/ru_ru.json new file mode 100644 index 000000000..1aa8b5368 --- /dev/null +++ b/kubejs/assets/minecraft/lang/ru_ru.json @@ -0,0 +1,75 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.minecraft.iron_block": "Серый чугун (Блок)", + "block.minecraft.chiseled_deepslate": "Резной мигматит", + "block.minecraft.cobbled_deepslate": "Колотый мигматит", + "block.minecraft.cobbled_deepslate_slab": "Плита из колотого мигматита", + "block.minecraft.cobbled_deepslate_stairs": "Ступеньки из колотого мигматита", + "block.minecraft.cobbled_deepslate_wall": "Ограда из колотого мигматита", + "block.minecraft.cracked_deepslate_bricks": "Потрескавшиеся мигматитовые кирпичи", + "block.minecraft.cracked_deepslate_tiles": "Потрескавшаяся мигматитовая плитка", + "block.minecraft.deepslate": "Мигматит", + "block.minecraft.deepslate_brick_slab": "Плита из мигматитовых кирпичей", + "block.minecraft.deepslate_brick_stairs": "Ступеньки из мигматитовых кирпичей", + "block.minecraft.deepslate_brick_wall": "Ограда из мигматитовых кирпичей", + "block.minecraft.deepslate_bricks": "Мигматитовые кирпичи", + "block.minecraft.deepslate_tile_slab": "Плита из мигматитовой плитки", + "block.minecraft.deepslate_tile_stairs": "Ступеньки из мигматитовой плитки", + "block.minecraft.deepslate_tile_wall": "Ограда из мигматитовой плитки", + "block.minecraft.deepslate_tiles": "Мигматитовая плитка", + "block.minecraft.infested_deepslate": "Зараженный мигматит", + "block.minecraft.polished_deepslate": "Полированный мигматит", + "block.minecraft.polished_deepslate_slab": "Плита из полированного мигматита", + "block.minecraft.polished_deepslate_stairs": "Ступеньки из полированного мигматита", + "block.minecraft.polished_deepslate_wall": "Ограда из полированного мигматита", + "block.minecraft.blackstone": "Пироксенит", + "block.minecraft.blackstone_slab": "Плита из пироксенита", + "block.minecraft.blackstone_stairs": "Ступеньки из пироксенита", + "block.minecraft.blackstone_wall": "Ограда из пироксенита", + "block.minecraft.chiseled_polished_blackstone": "Резной полированный пироксенит", + "block.minecraft.cracked_polished_blackstone_bricks": "Потрескавшиеся полированные пироксенитовые кирпичи", + "block.minecraft.gilded_blackstone": "Позолоченный пироксенит", + "block.minecraft.polished_blackstone": "Полированный пироксенит", + "block.minecraft.polished_blackstone_brick_slab": "Плита из пироксенитовых кирпичей", + "block.minecraft.polished_blackstone_brick_stairs": "Ступеньки из пироксенитовых кирпичей", + "block.minecraft.polished_blackstone_brick_wall": "Ограда из пироксенитовых кирпичей", + "block.minecraft.polished_blackstone_bricks": "Пироксенитовые кирпичи", + "block.minecraft.polished_blackstone_button": "Кнопка из полированного пироксенита", + "block.minecraft.polished_blackstone_pressure_plate": "Нажимная плита из полированного пироксенита", + "block.minecraft.polished_blackstone_slab": "Плита из полированного пироксенита", + "block.minecraft.polished_blackstone_stairs": "Ступеньки из полированного пироксенита", + "block.minecraft.polished_blackstone_wall": "Ограда из полированного пироксенита", + "block.minecraft.dripstone_block": "Травертин", + "block.minecraft.magma_block": "Пироксенитовая магма", + "block.minecraft.twisting_vines": "Стебель светоцвета", + "block.minecraft.twisting_vines_plant": "Стебель светоцвета", + "block.minecraft.pearlescent_froglight": "Перламутровый светоцвет", + "block.minecraft.verdant_froglight": "Малахитовый светоцвет", + "block.minecraft.ochre_froglight": "Охристый светоцвет", + "block.minecraft.nether_wart_block": "Crimson Wart Block", + "block.minecraft.weeping_vines_plant": "Crimson Vines Plant", + "block.minecraft.weeping_vines": "Crimson Vines", + "block.minecraft.red_sand": "Гематитовый песок", + "block.minecraft.red_sandstone": "Гематитовый песчаник", + "block.minecraft.red_sandstone_stairs": "Ступеньки из гематитового песчаника", + "block.minecraft.red_sandstone_slab": "Плита из гематитового песчаника", + "block.minecraft.red_sandstone_wall": "Ограда из гематитового песчаника", + "block.minecraft.chiseled_red_sandstone": "Резной гематитовый песчаник", + "block.minecraft.smooth_red_sandstone": "Гладкий гематитовый песчаник", + "block.minecraft.smooth_red_sandstone_stairs": "Ступеньки из гладкого гематитового песчаника", + "block.minecraft.smooth_red_sandstone_slab": "Плита из гладкого гематитового песчаника", + "block.minecraft.cut_red_sandstone": "Cut Hematitic Sandstone", + "block.minecraft.cut_red_sandstone_slab": "Cut Hematitic Sandstone Slab", + "item.minecraft.iron_nugget": "Серый чугун (Самородок)", + "item.minecraft.iron_ingot": "Серый чугун (Слиток)", + "item.minecraft.gold_nugget": "Золото (Самородок)", + "item.minecraft.gold_ingot": "Золото (Слиток)", + "block.minecraft.gold_block": "Золото (Блок)", + "item.minecraft.copper_ingot": "Медь (Слиток)", + "block.minecraft.copper_block": "Медь (Блок)", + "item.minecraft.netherite_leggings": "Лаволазные поножи из синей стали", + "item.minecraft.glow_ink_sac": "Светящийся краситель", + "item.minecraft.string": "Шёлковая нить", + "material.tfg.dripstone": "Травертин", + "item.beneath.loose_blackstone": "Камешек пироксенита" +} \ No newline at end of file diff --git a/kubejs/assets/minecraft/lang/zh_cn.json b/kubejs/assets/minecraft/lang/zh_cn.json new file mode 100644 index 000000000..1dd133a04 --- /dev/null +++ b/kubejs/assets/minecraft/lang/zh_cn.json @@ -0,0 +1,69 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.minecraft.iron_block": "铸铁块", + "block.minecraft.chiseled_deepslate": "雕纹混合岩", + "block.minecraft.cobbled_deepslate": "混合岩圆石", + "block.minecraft.cobbled_deepslate_slab": "混合岩圆石台阶", + "block.minecraft.cobbled_deepslate_stairs": "混合岩圆石楼梯", + "block.minecraft.cobbled_deepslate_wall": "混合岩圆石墙", + "block.minecraft.cracked_deepslate_bricks": "裂纹混合岩砖", + "block.minecraft.cracked_deepslate_tiles": "裂纹混合岩瓦", + "block.minecraft.deepslate": "天然混合岩", + "block.minecraft.deepslate_brick_slab": "混合岩砖台阶", + "block.minecraft.deepslate_brick_stairs": "混合岩砖楼梯", + "block.minecraft.deepslate_brick_wall": "混合岩砖墙", + "block.minecraft.deepslate_bricks": "混合岩砖", + "block.minecraft.deepslate_tile_slab": "混合岩瓦台阶", + "block.minecraft.deepslate_tile_stairs": "混合岩瓦楼梯", + "block.minecraft.deepslate_tile_wall": "混合岩瓦墙", + "block.minecraft.deepslate_tiles": "混合岩瓦", + "block.minecraft.infested_deepslate": "虫蚀混合岩", + "block.minecraft.polished_deepslate": "磨制混合岩", + "block.minecraft.polished_deepslate_slab": "磨制混合岩台阶", + "block.minecraft.polished_deepslate_stairs": "磨制混合岩楼梯", + "block.minecraft.polished_deepslate_wall": "磨制混合岩墙", + "block.minecraft.blackstone": "天然辉石岩", + "block.minecraft.blackstone_slab": "辉石岩台阶", + "block.minecraft.blackstone_stairs": "辉石岩楼梯", + "block.minecraft.blackstone_wall": "辉石岩墙", + "block.minecraft.chiseled_polished_blackstone": "雕纹磨制辉石岩", + "block.minecraft.cracked_polished_blackstone_bricks": "裂纹磨制辉石岩砖", + "block.minecraft.gilded_blackstone": "镶金辉石岩", + "block.minecraft.polished_blackstone": "磨制辉石岩", + "block.minecraft.polished_blackstone_brick_slab": "辉石岩砖台阶", + "block.minecraft.polished_blackstone_brick_stairs": "辉石岩砖楼梯", + "block.minecraft.polished_blackstone_brick_wall": "辉石岩砖墙", + "block.minecraft.polished_blackstone_bricks": "辉石岩砖", + "block.minecraft.polished_blackstone_button": "磨制辉石岩按钮", + "block.minecraft.polished_blackstone_pressure_plate": "磨制辉石岩压力板", + "block.minecraft.polished_blackstone_slab": "磨制辉石岩台阶", + "block.minecraft.polished_blackstone_stairs": "磨制辉石岩楼梯", + "block.minecraft.polished_blackstone_wall": "磨制辉石岩墙", + "block.minecraft.dripstone_block": "天然石灰华", + "block.minecraft.magma_block": "辉石岩岩浆块", + "block.minecraft.twisting_vines": "光绽花藤", + "block.minecraft.pearlescent_froglight": "珠光光绽花", + "block.minecraft.verdant_froglight": "青翠光绽花", + "block.minecraft.ochre_froglight": "赭黄光绽花", + "block.minecraft.nether_wart_block": "绯红疣块", + "block.minecraft.weeping_vines_plant": "绯红藤蔓植株", + "block.minecraft.weeping_vines": "绯红藤蔓", + "block.minecraft.red_sand": "赤铁矿砂", + "block.minecraft.red_sandstone": "赤铁矿砂岩", + "block.minecraft.red_sandstone_stairs": "赤铁矿砂岩楼梯", + "block.minecraft.red_sandstone_slab": "赤铁矿砂岩台阶", + "block.minecraft.red_sandstone_wall": "赤铁矿砂岩墙", + "block.minecraft.chiseled_red_sandstone": "雕纹赤铁矿砂岩", + "block.minecraft.smooth_red_sandstone": "平滑赤铁矿砂岩", + "block.minecraft.smooth_red_sandstone_stairs": "平滑赤铁矿砂岩楼梯", + "block.minecraft.smooth_red_sandstone_slab": "平滑赤铁矿砂岩台阶", + "block.minecraft.cut_red_sandstone": "切制赤铁矿砂岩", + "block.minecraft.cut_red_sandstone_slab": "切制赤铁矿砂岩台阶", + "item.minecraft.iron_nugget": "铸铁粒", + "item.minecraft.iron_ingot": "铸铁锭", + "item.minecraft.iron_block": "铸铁块", + "item.minecraft.netherite_leggings": "蓝钢潜水护腿", + "item.minecraft.string": "丝线", + "item.minecraft.glow_ink_sac": "荧光染料", + "material.tfg.dripstone": "石灰华" +} \ No newline at end of file diff --git a/kubejs/assets/primitive_creatures/lang/ru_ru.json b/kubejs/assets/primitive_creatures/lang/ru_ru.json new file mode 100644 index 000000000..5236fcde3 --- /dev/null +++ b/kubejs/assets/primitive_creatures/lang/ru_ru.json @@ -0,0 +1,27 @@ +{ + "__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": "Графитовый Глейз", + "entity.primitive_creatures.iloger_4": "Засадник", + "entity.primitive_creatures.wiloger": "Укротитель зверей", + "entity.primitive_creatures.iloger_2": "Знахарь", + "entity.primitive_creatures.iloger_1": "Фуражир", + "item.primitive_creatures.tfc_spawn_egg": "Яйцо призыва Каолинитового Клейза", + "item.primitive_creatures.golem_2_spawn_egg": "Яйцо призыва Графитового Глейза", + "item.primitive_creatures.iloger_4_spawn_egg": "Яйцо призыва Засадника", + "item.primitive_creatures.wiloger_spawn_egg": "Яйцо призыва Укротителя зверей", + "item.primitive_creatures.iloger_2_spawn_egg": "Яйцо призыва Знахаря", + "item.primitive_creatures.iloger_1_spawn_egg": "Яйцо призыва Фуражира", + "item.primitive_creatures.yhgi": "Булава (Кремень)", + "item.primitive_creatures.reh": "Укрепленная булава (Кремень)", + "item.primitive_creatures.grh": "Изношенная шерсть", + "item.primitive_creatures.totem_0": "Маленький глиняный идол", + "item.primitive_creatures.totem_2": "Деревянный идол Льволюда", + "item.primitive_creatures.totem_3": "Укрепленный глиняный идол", + "item.primitive_creatures.tt_5": "Маленький осколок", + "item.primitive_creatures.f_1": "Примитивная взрывчатка", + "item.primitive_creatures.reh.description_0": "\"Ломает кости при ударе\"", + "item.kaolinclayze.reh.description_0": "\"Ломает кости при ударе\"", + "item.primitive_creatures.yhgi.description_0": "\"Ломает кости при ударе\"", + "item.kaolinclayze.yhgi.description_0": "\"Ломает кости при ударе\"" +} \ No newline at end of file diff --git a/kubejs/assets/primitive_creatures/lang/zh_cn.json b/kubejs/assets/primitive_creatures/lang/zh_cn.json new file mode 100644 index 000000000..45c809f93 --- /dev/null +++ b/kubejs/assets/primitive_creatures/lang/zh_cn.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": "高岭黏土灵", + "entity.primitive_creatures.golem_2": "石墨黏土灵", + "entity.primitive_creatures.iloger_4": "伏击者", + "entity.primitive_creatures.wiloger": "驭兽师", + "entity.primitive_creatures.iloger_2": "采药者", + "entity.primitive_creatures.iloger_1": "觅食者", + "item.primitive_creatures.tfc_spawn_egg": "高岭黏土灵刷怪蛋", + "item.primitive_creatures.golem_2_spawn_egg": "石墨黏土灵刷怪蛋", + "item.primitive_creatures.iloger_4_spawn_egg": "伏击者刷怪蛋", + "item.primitive_creatures.wiloger_spawn_egg": "驭兽师刷怪蛋", + "item.primitive_creatures.iloger_2_spawn_egg": "采药者刷怪蛋", + "item.primitive_creatures.iloger_1_spawn_egg": "觅食者刷怪蛋", + "item.primitive_creatures.yhgi": "燧石棒", + "item.primitive_creatures.reh": "强化燧石棒", + "item.primitive_creatures.grh": "磨损的毛毡", + "item.primitive_creatures.totem_0": "小型黏土图腾", + "item.primitive_creatures.totem_2": "木雕狮人图腾", + "item.primitive_creatures.totem_3": "硬化泥塑图腾", + "item.primitive_creatures.tt_5": "细小碎片", + "item.primitive_creatures.f_1": "原始炸药" +} \ No newline at end of file diff --git a/kubejs/assets/railways/lang/ru_ru.json b/kubejs/assets/railways/lang/ru_ru.json index 5c2f5c108..dcfa938d8 100644 --- a/kubejs/assets/railways/lang/ru_ru.json +++ b/kubejs/assets/railways/lang/ru_ru.json @@ -3,5 +3,82 @@ "item.railways.track_incomplete_create_andesite_wide": "Незаконченный широкий железнодорожный путь", "block.railways.track_create_andesite_wide": "Широкий железнодорожный путь", "item.railways.track_incomplete_create_andesite_narrow": "Незаконченный узкий железнодорожный путь", - "block.railways.track_create_andesite_narrow": "Узкий железнодорожный путь" + "block.railways.track_create_andesite_narrow": "Узкий железнодорожный путь", + "block.railways.track_blackstone_narrow": "Узкий ж/д путь на пироксенитовых шпалах", + "block.railways.track_incomplete_blackstone_narrow": "Незаконченный узкий ж/д путь на пироксенитовых шпалах", + "block.railways.track_blackstone": "Ж/д путь на пироксенитовых шпалах", + "block.railways.track_incomplete_blackstone": "Незаконченный ж/д путь на пироксенитовых шпалах", + "block.railways.track_blackstone_wide": "Широкий ж/д путь на пироксенитовых шпалах", + "block.railways.track_incomplete_blackstone_wide": "Незаконченный широкий ж/д путь на пироксенитовых шпалах", + "block.railways.track_acacia_narrow": "Узкий ж/д путь на баобабовых шпалах", + "block.railways.track_incomplete_acacia_narrow": "Незаконченный узкий ж/д путь на баобабовых шпалах", + "block.railways.track_acacia": "Ж/д путь на баобабовых шпалах", + "block.railways.track_incomplete_acacia": "Незаконченный ж/д путь на баобабовых шпалах", + "block.railways.track_acacia_wide": "Широкий ж/д путь на баобабовых шпалах", + "block.railways.track_incomplete_acacia_wide": "Незаконченный широкий ж/д путь на баобабовых шпалах", + "block.railways.track_birch_narrow": "Узкий ж/д путь на эвкалиптовых шпалах", + "block.railways.track_incomplete_birch_narrow": "Незаконченный узкий ж/д путь на эвкалиптовых шпалах", + "block.railways.track_birch": "Ж/д путь на эвкалиптовых шпалах", + "block.railways.track_incomplete_birch": "Незаконченный ж/д путь на эвкалиптовых шпалах", + "block.railways.track_birch_wide": "Широкий ж/д путь на эвкалиптовых шпалах", + "block.railways.track_incomplete_birch_wide": "Незаконченный широкий ж/д путь на эвкалиптовых шпалах", + "block.railways.track_cherry_narrow": "Узкий ж/д путь на инжирных шпалах", + "block.railways.track_incomplete_cherry_narrow": "Незаконченный узкий ж/д путь на инжирных шпалах", + "block.railways.track_cherry": "Ж/д путь на инжирных шпалах", + "block.railways.track_incomplete_cherry": "Незаконченный ж/д путь на инжирных шпалах", + "block.railways.track_cherry_wide": "Широкий ж/д путь на инжирных шпалах", + "block.railways.track_incomplete_cherry_wide": "Незаконченный широкий ж/д путь на инжирных шпалах", + "block.railways.track_jungle_narrow": "Узкий ж/д путь на шпалах тикового дерева", + "block.railways.track_incomplete_jungle_narrow": "Незаконченный узкий ж/д путь на шпалах тикового дерева", + "block.railways.track_jungle": "Ж/д путь на шпалах тикового дерева", + "block.railways.track_incomplete_jungle": "Незаконченный ж/д путь на шпалах тикового дерева", + "block.railways.track_jungle_wide": "Широкий ж/д путь на шпалах тикового дерева", + "block.railways.track_incomplete_jungle_wide": "Незаконченный широкий ж/д путь на шпалах тикового дерева", + "block.railways.track_spruce_narrow": "Узкий ж/д путь на кипарисовых шпалах", + "block.railways.track_incomplete_spruce_narrow": "Незаконченный узкий ж/д путь на кипарисовых шпалах", + "block.railways.track_spruce": "Ж/д путь на кипарисовых шпалах", + "block.railways.track_incomplete_spruce": "Незаконченный ж/д путь на кипарисовых шпалах", + "block.railways.track_spruce_wide": "Широкий ж/д путь на кипарисовых шпалах", + "block.railways.track_incomplete_spruce_wide": "Незаконченный широкий ж/д путь на кипарисовых шпалах", + "tfc.recipe.barrel.railways.barrel.dyeing.cap_decolor": "Обесцвечивание", + "tfc.recipe.barrel.railways.barrel.dyeing.black_conductor_cap": "Окрашивание", + "tfc.recipe.barrel.railways.barrel.dyeing.gray_conductor_cap": "Окрашивание", + "tfc.recipe.barrel.railways.barrel.dyeing.light_conductor_gray_cap": "Окрашивание", + "tfc.recipe.barrel.railways.barrel.dyeing.white_conductor_cap": "Окрашивание", + "tfc.recipe.barrel.railways.barrel.dyeing.pink_conductor_cap": "Окрашивание", + "tfc.recipe.barrel.railways.barrel.dyeing.magenta_conductor_cap": "Окрашивание", + "tfc.recipe.barrel.railways.barrel.dyeing.purple_conductor_cap": "Окрашивание", + "tfc.recipe.barrel.railways.barrel.dyeing.blue_conductor_cap": "Окрашивание", + "tfc.recipe.barrel.railways.barrel.dyeing.light_conductor_blue_cap": "Окрашивание", + "tfc.recipe.barrel.railways.barrel.dyeing.cyan_conductor_cap": "Окрашивание", + "tfc.recipe.barrel.railways.barrel.dyeing.green_conductor_cap": "Окрашивание", + "tfc.recipe.barrel.railways.barrel.dyeing.lime_conductor_cap": "Окрашивание", + "tfc.recipe.barrel.railways.barrel.dyeing.yellow_conductor_cap": "Окрашивание", + "tfc.recipe.barrel.railways.barrel.dyeing.orange_conductor_cap": "Окрашивание", + "tfc.recipe.barrel.railways.barrel.dyeing.red_conductor_cap": "Окрашивание", + "tfc.recipe.barrel.railways.barrel.dyeing.brown_conductor_cap": "Окрашивание", + "block.railways.track_bamboo": "Ж/д путь на бамбуковых шпалах", + "block.railways.track_bamboo_narrow": "Узкий ж/д путь на бамбуковых шпалах", + "block.railways.track_bamboo_wide": "Широкий ж/д путь на бамбуковых шпалах", + "block.railways.track_crimson": "Ж/д путь на шпалах из багровых досок", + "block.railways.track_phantom": "Фантомный ж/д путь", + "block.railways.track_switch_andesite": "Железнодорожная стрелка", + "block.railways.track_warped": "Ж/д путь на шпалах из искаженного дерева", + "block.railways.track_warped_narrow": "Узкий ж/д путь на искажённых шпалах", + "block.railways.track_warped_wide": "Широкий ж/д путь на искажённых шпалах", + "item.railways.track_incomplete_jungle": "Незаконченный ж/д путь на шпалах тикового дерева", + "item.railways.track_incomplete_blackstone": "Незаконченный ж/д путь на пироксенитовых шпалах", + "item.railways.track_incomplete_blackstone_narrow": "Незаконченный узкий ж/д путь на пироксенитовых шпалах", + "item.railways.track_incomplete_blackstone_wide": "Незаконченный широкий ж/д путь на пироксенитовых шпалах", + "item.railways.track_incomplete_acacia": "Незаконченный ж/д путь на баобабовых шпалах", + "item.railways.track_incomplete_acacia_narrow": "Незаконченный узкий ж/д путь на баобабовых шпалах", + "item.railways.track_incomplete_acacia_wide": "Незаконченный широкий ж/д путь на баобабовых шпалах", + "item.railways.track_incomplete_spruce": "Незаконченный ж/д путь на кипарисовых шпалах", + "item.railways.track_incomplete_birch": "Незаконченный ж/д путь на эвкалиптовых шпалах", + "item.railways.track_incomplete_birch_narrow": "Незаконченный узкий ж/д путь на эвкалиптовых шпалах", + "item.railways.track_incomplete_birch_wide": "Незаконченный широкий ж/д путь на эвкалиптовых шпалах", + "item.railways.track_incomplete_tieless": "Незаконченный ж/д путь", + "block.railways.track_tieless": "Бесшпальный ж/д путь", + "block.railways.track_tieless_narrow": "Узкий бесшпальный ж/д путь", + "block.railways.track_tieless_wide": "Широкий бесшпальный ж/д путь" } \ No newline at end of file diff --git a/kubejs/assets/railways/lang/zh_cn.json b/kubejs/assets/railways/lang/zh_cn.json new file mode 100644 index 000000000..65674e32a --- /dev/null +++ b/kubejs/assets/railways/lang/zh_cn.json @@ -0,0 +1,60 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.railways.track_create_andesite_wide": "列车宽轨", + "block.railways.track_create_andesite_narrow": "列车窄轨", + "block.railways.track_blackstone_narrow": "辉石岩列车窄轨", + "block.railways.track_incomplete_blackstone_narrow": "未完成的辉石岩列车窄轨", + "block.railways.track_blackstone": "辉石岩列车轨道", + "block.railways.track_incomplete_blackstone": "未完成的辉石岩列车轨道", + "block.railways.track_blackstone_wide": "辉石岩列车宽轨", + "block.railways.track_incomplete_blackstone_wide": "未完成的辉石岩列车宽轨", + "block.railways.track_acacia_narrow": "猴面包木列车窄轨", + "block.railways.track_incomplete_acacia_narrow": "未完成的猴面包木列车窄轨", + "block.railways.track_acacia": "猴面包木列车轨道", + "block.railways.track_incomplete_acacia": "未完成的猴面包木列车轨道", + "block.railways.track_acacia_wide": "猴面包木列车宽轨", + "block.railways.track_incomplete_acacia_wide": "未完成的猴面包木列车宽轨", + "block.railways.track_birch_narrow": "桉木列车窄轨", + "block.railways.track_incomplete_birch_narrow": "未完成的桉木列车窄轨", + "block.railways.track_birch": "桉木列车轨道", + "block.railways.track_incomplete_birch": "未完成的桉木列车轨道", + "block.railways.track_birch_wide": "桉木列车宽轨", + "block.railways.track_incomplete_birch_wide": "未完成的桉木列车宽轨", + "block.railways.track_cherry_narrow": "无花果木列车窄轨", + "block.railways.track_incomplete_cherry_narrow": "未完成的无花果木列车窄轨", + "block.railways.track_cherry": "无花果木列车轨道", + "block.railways.track_incomplete_cherry": "未完成的无花果木列车轨道", + "block.railways.track_cherry_wide": "无花果木列车宽轨", + "block.railways.track_incomplete_cherry_wide": "未完成的无花果木列车宽轨", + "block.railways.track_jungle_narrow": "柚木列车窄轨", + "block.railways.track_incomplete_jungle_narrow": "未完成的柚木列车窄轨", + "block.railways.track_jungle": "柚木列车轨道", + "block.railways.track_incomplete_jungle": "未完成的柚木列车轨道", + "block.railways.track_jungle_wide": "柚木列车宽轨", + "block.railways.track_incomplete_jungle_wide": "未完成的柚木列车宽轨", + "block.railways.track_spruce_narrow": "柏木列车窄轨", + "block.railways.track_incomplete_spruce_narrow": "未完成的柏木列车窄轨", + "block.railways.track_spruce": "柏木列车轨道", + "block.railways.track_incomplete_spruce": "未完成的柏木列车轨道", + "block.railways.track_spruce_wide": "柏木列车宽轨", + "block.railways.track_incomplete_spruce_wide": "未完成的柏木列车宽轨", + "item.railways.track_incomplete_create_andesite_wide": "未完成的列车宽轨", + "item.railways.track_incomplete_create_andesite_narrow": "未完成的列车窄轨", + "tfc.recipe.barrel.railways.barrel.dyeing.cap_decolor": "褪色处理", + "tfc.recipe.barrel.railways.barrel.dyeing.black_conductor_cap": "染色", + "tfc.recipe.barrel.railways.barrel.dyeing.gray_conductor_cap": "染色", + "tfc.recipe.barrel.railways.barrel.dyeing.light_conductor_gray_cap": "染色", + "tfc.recipe.barrel.railways.barrel.dyeing.white_conductor_cap": "染色", + "tfc.recipe.barrel.railways.barrel.dyeing.pink_conductor_cap": "染色", + "tfc.recipe.barrel.railways.barrel.dyeing.magenta_conductor_cap": "染色", + "tfc.recipe.barrel.railways.barrel.dyeing.purple_conductor_cap": "染色", + "tfc.recipe.barrel.railways.barrel.dyeing.blue_conductor_cap": "染色", + "tfc.recipe.barrel.railways.barrel.dyeing.light_conductor_blue_cap": "染色", + "tfc.recipe.barrel.railways.barrel.dyeing.cyan_conductor_cap": "染色", + "tfc.recipe.barrel.railways.barrel.dyeing.green_conductor_cap": "染色", + "tfc.recipe.barrel.railways.barrel.dyeing.lime_conductor_cap": "染色", + "tfc.recipe.barrel.railways.barrel.dyeing.yellow_conductor_cap": "染色", + "tfc.recipe.barrel.railways.barrel.dyeing.orange_conductor_cap": "染色", + "tfc.recipe.barrel.railways.barrel.dyeing.red_conductor_cap": "染色", + "tfc.recipe.barrel.railways.barrel.dyeing.brown_conductor_cap": "染色" +} \ No newline at end of file diff --git a/kubejs/assets/rnr/lang/ru_ru.json b/kubejs/assets/rnr/lang/ru_ru.json new file mode 100644 index 000000000..b41c80214 --- /dev/null +++ b/kubejs/assets/rnr/lang/ru_ru.json @@ -0,0 +1,606 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.rnr.rock.flagstones.granite": "Гранитная брусчатка", + "block.rnr.rock.flagstones.granite_slab": "Плита из гранитной брусчатки", + "block.rnr.rock.flagstones.granite_stairs": "Ступеньки из гранитной брусчатки", + "block.rnr.rock.sett_road.granite": "Мозаичная гранитная брусчатка", + "block.rnr.rock.sett_road.granite_slab": "Плита из мозаичной гранитной брусчатки", + "block.rnr.rock.sett_road.granite_stairs": "Ступеньки из мозаичной гранитной брусчатки", + "block.rnr.rock.macadam_road.granite": "Гранитный щебень", + "block.rnr.rock.macadam_road.granite_slab": "Плита из гранитного щебня", + "block.rnr.rock.macadam_road.granite_stairs": "Ступеньки из гранитного щебня", + "block.rnr.rock.gravel_road.granite": "Гранитный гравий", + "block.rnr.rock.gravel_road.granite_slab": "Плита из гранитного гравия", + "block.rnr.rock.gravel_road.granite_stairs": "Ступеньки из гранитного гравия", + "block.rnr.rock.cobbled_road.granite": "Булыжная гранитная брусчатка", + "block.rnr.rock.cobbled_road.granite_slab": "Плита из булыжной гранитной брусчатки", + "block.rnr.rock.cobbled_road.granite_stairs": "Ступеньки из булыжной гранитной брусчатки", + "block.rnr.rock.over_height_gravel.granite": "Возвышенный гранитный гравий", + "item.rnr.gravel_fill.granite": "Насыпь гранитного гравия", + "item.rnr.flagstone.granite": "Гранитная брусчатка", + "block.rnr.rock.flagstones.diorite": "Диоритовая брусчатка", + "block.rnr.rock.flagstones.diorite_slab": "Плита из диоритовой брусчатки", + "block.rnr.rock.flagstones.diorite_stairs": "Ступеньки из диоритовой брусчатки", + "block.rnr.rock.sett_road.diorite": "Мозаичная диоритовая брусчатка", + "block.rnr.rock.sett_road.diorite_slab": "Плита из мозаичной диоритовой брусчатки", + "block.rnr.rock.sett_road.diorite_stairs": "Ступеньки из мозаичной диоритовой брусчатки", + "block.rnr.rock.macadam_road.diorite": "Диоритовый щебень", + "block.rnr.rock.macadam_road.diorite_slab": "Плита из диоритового щебня", + "block.rnr.rock.macadam_road.diorite_stairs": "Ступеньки из диоритового щебня", + "block.rnr.rock.gravel_road.diorite": "Диоритовый гравий", + "block.rnr.rock.gravel_road.diorite_slab": "Плита из диоритового гравия", + "block.rnr.rock.gravel_road.diorite_stairs": "Ступеньки из диоритового гравия", + "block.rnr.rock.cobbled_road.diorite": "Булыжная диоритовая брусчатка", + "block.rnr.rock.cobbled_road.diorite_slab": "Плита из булыжной диоритовой брусчатки", + "block.rnr.rock.cobbled_road.diorite_stairs": "Ступеньки из булыжной диоритовой брусчатки", + "block.rnr.rock.over_height_gravel.diorite": "Возвышенный диоритовый гравий", + "item.rnr.gravel_fill.diorite": "Насыпь диоритового гравия", + "item.rnr.flagstone.diorite": "Диоритовая брусчатка", + "block.rnr.rock.flagstones.gabbro": "Габбровая брусчатка", + "block.rnr.rock.flagstones.gabbro_slab": "Плита из габбровой брусчатки", + "block.rnr.rock.flagstones.gabbro_stairs": "Ступеньки из габбровой брусчатки", + "block.rnr.rock.sett_road.gabbro": "Мозаичная габбровая брусчатка", + "block.rnr.rock.sett_road.gabbro_slab": "Плита из мозаичной габбровой брусчатки", + "block.rnr.rock.sett_road.gabbro_stairs": "Ступеньки из мозаичной габбровой брусчатки", + "block.rnr.rock.macadam_road.gabbro": "Габбровый щебень", + "block.rnr.rock.macadam_road.gabbro_slab": "Плита из габбрового щебня", + "block.rnr.rock.macadam_road.gabbro_stairs": "Ступеньки из габбрового щебня", + "block.rnr.rock.gravel_road.gabbro": "Габбровый гравий", + "block.rnr.rock.gravel_road.gabbro_slab": "Плита из габбрового гравия", + "block.rnr.rock.gravel_road.gabbro_stairs": "Ступеньки из габбрового гравия", + "block.rnr.rock.cobbled_road.gabbro": "Булыжная габбровая брусчатка", + "block.rnr.rock.cobbled_road.gabbro_slab": "Плита из булыжной габбровой брусчатки", + "block.rnr.rock.cobbled_road.gabbro_stairs": "Ступеньки из булыжной габбровой брусчатки", + "block.rnr.rock.over_height_gravel.gabbro": "Возвышенный габбровый гравий", + "item.rnr.gravel_fill.gabbro": "Насыпь габбрового гравия", + "item.rnr.flagstone.gabbro": "Габбровая брусчатка", + "block.rnr.rock.flagstones.shale": "Сланцевая брусчатка", + "block.rnr.rock.flagstones.shale_slab": "Плита из сланцевой брусчатки", + "block.rnr.rock.flagstones.shale_stairs": "Ступеньки из сланцевой брусчатки", + "block.rnr.rock.sett_road.shale": "Мозаичная сланцевая брусчатка", + "block.rnr.rock.sett_road.shale_slab": "Плита из мозаичной сланцевой брусчатки", + "block.rnr.rock.sett_road.shale_stairs": "Ступеньки из мозаичной сланцевой брусчатки", + "block.rnr.rock.macadam_road.shale": "Сланцевый щебень", + "block.rnr.rock.macadam_road.shale_slab": "Плита из сланцевого щебня", + "block.rnr.rock.macadam_road.shale_stairs": "Ступеньки из сланцевого щебня", + "block.rnr.rock.gravel_road.shale": "Сланцевый гравий", + "block.rnr.rock.gravel_road.shale_slab": "Плита из сланцевого гравия", + "block.rnr.rock.gravel_road.shale_stairs": "Ступеньки из сланцевого гравия", + "block.rnr.rock.cobbled_road.shale": "Булыжная сланцевая брусчатка", + "block.rnr.rock.cobbled_road.shale_slab": "Плита из булыжной сланцевой брусчатки", + "block.rnr.rock.cobbled_road.shale_stairs": "Ступеньки из булыжной сланцевой брусчатки", + "block.rnr.rock.over_height_gravel.shale": "Возвышенный сланцевый гравий", + "item.rnr.gravel_fill.shale": "Насыпь сланцевого гравия", + "item.rnr.flagstone.shale": "Сланцевая брусчатка", + "block.rnr.rock.flagstones.claystone": "Аргиллитовая брусчатка", + "block.rnr.rock.flagstones.claystone_slab": "Плита из аргиллитовой брусчатки", + "block.rnr.rock.flagstones.claystone_stairs": "Ступеньки из аргиллитовой брусчатки", + "block.rnr.rock.sett_road.claystone": "Мозаичная аргиллитовая брусчатка", + "block.rnr.rock.sett_road.claystone_slab": "Плита из мозаичной аргиллитовой брусчатки", + "block.rnr.rock.sett_road.claystone_stairs": "Ступеньки из мозаичной аргиллитовой брусчатки", + "block.rnr.rock.macadam_road.claystone": "Аргиллитовый щебень", + "block.rnr.rock.macadam_road.claystone_slab": "Плита из аргиллитового щебня", + "block.rnr.rock.macadam_road.claystone_stairs": "Ступеньки из аргиллитового щебня", + "block.rnr.rock.gravel_road.claystone": "Аргиллитовый гравий", + "block.rnr.rock.gravel_road.claystone_slab": "Плита из аргиллитового гравия", + "block.rnr.rock.gravel_road.claystone_stairs": "Ступеньки из аргиллитового гравия", + "block.rnr.rock.cobbled_road.claystone": "Булыжная аргиллитовая брусчатка", + "block.rnr.rock.cobbled_road.claystone_slab": "Плита из булыжной аргиллитовой брусчатки", + "block.rnr.rock.cobbled_road.claystone_stairs": "Ступеньки из булыжной аргиллитовой брусчатки", + "block.rnr.rock.over_height_gravel.claystone": "Возвышенный аргиллитовый гравий", + "item.rnr.gravel_fill.claystone": "Насыпь аргиллитового гравия", + "item.rnr.flagstone.claystone": "Аргиллитовая брусчатка", + "block.rnr.rock.flagstones.limestone": "Известняковая брусчатка", + "block.rnr.rock.flagstones.limestone_slab": "Плита из известняковой брусчатки", + "block.rnr.rock.flagstones.limestone_stairs": "Ступеньки из известняковой брусчатки", + "block.rnr.rock.sett_road.limestone": "Мозаичная известняковая брусчатка", + "block.rnr.rock.sett_road.limestone_slab": "Плита из мозаичной известняковой брусчатки", + "block.rnr.rock.sett_road.limestone_stairs": "Ступеньки из мозаичной известняковой брусчатки", + "block.rnr.rock.macadam_road.limestone": "Известняковый щебень", + "block.rnr.rock.macadam_road.limestone_slab": "Плита из известнякового щебня", + "block.rnr.rock.macadam_road.limestone_stairs": "Ступеньки из известнякового щебня", + "block.rnr.rock.gravel_road.limestone": "Известняковый гравий", + "block.rnr.rock.gravel_road.limestone_slab": "Плита из известнякового гравия", + "block.rnr.rock.gravel_road.limestone_stairs": "Ступеньки из известнякового гравия", + "block.rnr.rock.cobbled_road.limestone": "Булыжная известняковая брусчатка", + "block.rnr.rock.cobbled_road.limestone_slab": "Плита из булыжной известняковой брусчатки", + "block.rnr.rock.cobbled_road.limestone_stairs": "Ступеньки из булыжной известняковой брусчатки", + "block.rnr.rock.over_height_gravel.limestone": "Возвышенный известняковый гравий", + "item.rnr.gravel_fill.limestone": "Насыпь известнякового гравия", + "item.rnr.flagstone.limestone": "Известняковая брусчатка", + "block.rnr.rock.flagstones.conglomerate": "Конгломератовая брусчатка", + "block.rnr.rock.flagstones.conglomerate_slab": "Плита из конгломератовой брусчатки", + "block.rnr.rock.flagstones.conglomerate_stairs": "Ступеньки из конгломератовой брусчатки", + "block.rnr.rock.sett_road.conglomerate": "Мозаичная конгломератовая брусчатка", + "block.rnr.rock.sett_road.conglomerate_slab": "Плита из мозаичной конгломератовой брусчатки", + "block.rnr.rock.sett_road.conglomerate_stairs": "Ступеньки из мозаичной конгломератовой брусчатки", + "block.rnr.rock.macadam_road.conglomerate": "Конгломератовый щебень", + "block.rnr.rock.macadam_road.conglomerate_slab": "Плита из конгломератового щебня", + "block.rnr.rock.macadam_road.conglomerate_stairs": "Ступеньки из конгломератового щебня", + "block.rnr.rock.gravel_road.conglomerate": "Конгломератовый гравий", + "block.rnr.rock.gravel_road.conglomerate_slab": "Плита из конгломератового гравия", + "block.rnr.rock.gravel_road.conglomerate_stairs": "Ступеньки из конгломератового гравия", + "block.rnr.rock.cobbled_road.conglomerate": "Булыжная конгломератовая брусчатка", + "block.rnr.rock.cobbled_road.conglomerate_slab": "Плита из булыжной конгломератовой брусчатки", + "block.rnr.rock.cobbled_road.conglomerate_stairs": "Ступеньки из булыжной конгломератовой брусчатки", + "block.rnr.rock.over_height_gravel.conglomerate": "Возвышенный конгломератовый гравий", + "item.rnr.gravel_fill.conglomerate": "Насыпь конгломератового гравия", + "item.rnr.flagstone.conglomerate": "Конгломератовая брусчатка", + "block.rnr.rock.flagstones.dolomite": "Доломитовая брусчатка", + "block.rnr.rock.flagstones.dolomite_slab": "Плита из доломитовой брусчатки", + "block.rnr.rock.flagstones.dolomite_stairs": "Ступеньки из доломитовой брусчатки", + "block.rnr.rock.sett_road.dolomite": "Мозаичная доломитовая брусчатка", + "block.rnr.rock.sett_road.dolomite_slab": "Плита из мозаичной доломитовой брусчатки", + "block.rnr.rock.sett_road.dolomite_stairs": "Ступеньки из мозаичной доломитовой брусчатки", + "block.rnr.rock.macadam_road.dolomite": "Доломитовый щебень", + "block.rnr.rock.macadam_road.dolomite_slab": "Плита из доломитового щебня", + "block.rnr.rock.macadam_road.dolomite_stairs": "Ступеньки из доломитового щебня", + "block.rnr.rock.gravel_road.dolomite": "Доломитовый гравий", + "block.rnr.rock.gravel_road.dolomite_slab": "Плита из доломитового гравия", + "block.rnr.rock.gravel_road.dolomite_stairs": "Ступеньки из доломитового гравия", + "block.rnr.rock.cobbled_road.dolomite": "Булыжная доломитовая брусчатка", + "block.rnr.rock.cobbled_road.dolomite_slab": "Плита из булыжной доломитовой брусчатки", + "block.rnr.rock.cobbled_road.dolomite_stairs": "Ступеньки из булыжной доломитовой брусчатки", + "block.rnr.rock.over_height_gravel.dolomite": "Возвышенный доломитовый гравий", + "item.rnr.gravel_fill.dolomite": "Насыпь доломитового гравия", + "item.rnr.flagstone.dolomite": "Доломитовая брусчатка", + "block.rnr.rock.flagstones.chert": "Кремнистая сланцевая брусчатка", + "block.rnr.rock.flagstones.chert_slab": "Плита из кремнистой сланцевой брусчатки", + "block.rnr.rock.flagstones.chert_stairs": "Ступеньки из кремнистой сланцевой брусчатки", + "block.rnr.rock.sett_road.chert": "Мозаичная кремнистая сланцевая брусчатка", + "block.rnr.rock.sett_road.chert_slab": "Плита из мозаичной кремнистой сланцевой брусчатки", + "block.rnr.rock.sett_road.chert_stairs": "Ступеньки из мозаичной кремнистой сланцевой брусчатки", + "block.rnr.rock.macadam_road.chert": "Кремнистый сланцевый щебень", + "block.rnr.rock.macadam_road.chert_slab": "Плита из кремнистого сланцевого щебня", + "block.rnr.rock.macadam_road.chert_stairs": "Ступеньки из кремнистого сланцевого щебня", + "block.rnr.rock.gravel_road.chert": "Кремнистый сланцевый гравий", + "block.rnr.rock.gravel_road.chert_slab": "Плита из кремнистого сланцевого гравия", + "block.rnr.rock.gravel_road.chert_stairs": "Ступеньки из кремнистого сланцевого гравия", + "block.rnr.rock.cobbled_road.chert": "Булыжная кремнистая сланцевая брусчатка", + "block.rnr.rock.cobbled_road.chert_slab": "Плита из булыжной кремнистой сланцевой брусчатки", + "block.rnr.rock.cobbled_road.chert_stairs": "Ступеньки из булыжной кремнистой сланцевой брусчатки", + "block.rnr.rock.over_height_gravel.chert": "Возвышенный кремнистый сланцевый гравий", + "item.rnr.gravel_fill.chert": "Насыпь кремнистого сланцевого гравия", + "item.rnr.flagstone.chert": "Кремнистая сланцевая брусчатка", + "block.rnr.rock.flagstones.chalk": "Меловая брусчатка", + "block.rnr.rock.flagstones.chalk_slab": "Плита из меловой брусчатки", + "block.rnr.rock.flagstones.chalk_stairs": "Ступеньки из меловой брусчатки", + "block.rnr.rock.sett_road.chalk": "Мозаичная меловая брусчатка", + "block.rnr.rock.sett_road.chalk_slab": "Плита из мозаичной меловой брусчатки", + "block.rnr.rock.sett_road.chalk_stairs": "Ступеньки из мозаичной меловой брусчатки", + "block.rnr.rock.macadam_road.chalk": "Меловой щебень", + "block.rnr.rock.macadam_road.chalk_slab": "Плита из мелового щебня", + "block.rnr.rock.macadam_road.chalk_stairs": "Ступеньки из мелового щебня", + "block.rnr.rock.gravel_road.chalk": "Меловой гравий", + "block.rnr.rock.gravel_road.chalk_slab": "Плита из мелового гравия", + "block.rnr.rock.gravel_road.chalk_stairs": "Ступеньки из мелового гравия", + "block.rnr.rock.cobbled_road.chalk": "Булыжная меловая брусчатка", + "block.rnr.rock.cobbled_road.chalk_slab": "Плита из булыжной меловой брусчатки", + "block.rnr.rock.cobbled_road.chalk_stairs": "Ступеньки из булыжной меловой брусчатки", + "block.rnr.rock.over_height_gravel.chalk": "Возвышенный меловой гравий", + "item.rnr.gravel_fill.chalk": "Насыпь мелового гравия", + "item.rnr.flagstone.chalk": "Меловая брусчатка", + "block.rnr.rock.flagstones.rhyolite": "Риолитовая брусчатка", + "block.rnr.rock.flagstones.rhyolite_slab": "Плита из риолитовой брусчатки", + "block.rnr.rock.flagstones.rhyolite_stairs": "Ступеньки из риолитовой брусчатки", + "block.rnr.rock.sett_road.rhyolite": "Мозаичная риолитовая брусчатка", + "block.rnr.rock.sett_road.rhyolite_slab": "Плита из мозаичной риолитовой брусчатки", + "block.rnr.rock.sett_road.rhyolite_stairs": "Ступеньки из мозаичной риолитовой брусчатки", + "block.rnr.rock.macadam_road.rhyolite": "Риолитовый щебень", + "block.rnr.rock.macadam_road.rhyolite_slab": "Плита из риолитового щебня", + "block.rnr.rock.macadam_road.rhyolite_stairs": "Ступеньки из риолитового щебня", + "block.rnr.rock.gravel_road.rhyolite": "Риолитовый гравий", + "block.rnr.rock.gravel_road.rhyolite_slab": "Плита из риолитового гравия", + "block.rnr.rock.gravel_road.rhyolite_stairs": "Ступеньки из риолитового гравия", + "block.rnr.rock.cobbled_road.rhyolite": "Булыжная риолитовая брусчатка", + "block.rnr.rock.cobbled_road.rhyolite_slab": "Плита из булыжной риолитовой брусчатки", + "block.rnr.rock.cobbled_road.rhyolite_stairs": "Ступеньки из булыжной риолитовой брусчатки", + "block.rnr.rock.over_height_gravel.rhyolite": "Возвышенный риолитовый гравий", + "item.rnr.gravel_fill.rhyolite": "Насыпь риолитового гравия", + "item.rnr.flagstone.rhyolite": "Риолитовая брусчатка", + "block.rnr.rock.flagstones.basalt": "Базальтовая брусчатка", + "block.rnr.rock.flagstones.basalt_slab": "Плита из базальтовой брусчатки", + "block.rnr.rock.flagstones.basalt_stairs": "Ступеньки из базальтовой брусчатки", + "block.rnr.rock.sett_road.basalt": "Мозаичная базальтовая брусчатка", + "block.rnr.rock.sett_road.basalt_slab": "Плита из мозаичной базальтовой брусчатки", + "block.rnr.rock.sett_road.basalt_stairs": "Ступеньки из мозаичной базальтовой брусчатки", + "block.rnr.rock.macadam_road.basalt": "Базальтовый щебень", + "block.rnr.rock.macadam_road.basalt_slab": "Плита из базальтового щебня", + "block.rnr.rock.macadam_road.basalt_stairs": "Ступеньки из базальтового щебня", + "block.rnr.rock.gravel_road.basalt": "Базальтовый гравий", + "block.rnr.rock.gravel_road.basalt_slab": "Плита из базальтового гравия", + "block.rnr.rock.gravel_road.basalt_stairs": "Ступеньки из базальтового гравия", + "block.rnr.rock.cobbled_road.basalt": "Булыжная базальтовая брусчатка", + "block.rnr.rock.cobbled_road.basalt_slab": "Плита из булыжной базальтовой брусчатки", + "block.rnr.rock.cobbled_road.basalt_stairs": "Ступеньки из булыжной базальтовой брусчатки", + "block.rnr.rock.over_height_gravel.basalt": "Возвышенный базальтовый гравий", + "item.rnr.gravel_fill.basalt": "Насыпь базальтового гравия", + "item.rnr.flagstone.basalt": "Базальтовая брусчатка", + "block.rnr.rock.flagstones.andesite": "Андезитовая брусчатка", + "block.rnr.rock.flagstones.andesite_slab": "Плита из андезитовой брусчатки", + "block.rnr.rock.flagstones.andesite_stairs": "Ступеньки из андезитовой брусчатки", + "block.rnr.rock.sett_road.andesite": "Мозаичная андезитовая брусчатка", + "block.rnr.rock.sett_road.andesite_slab": "Плита из мозаичной андезитовой брусчатки", + "block.rnr.rock.sett_road.andesite_stairs": "Ступеньки из мозаичной андезитовой брусчатки", + "block.rnr.rock.macadam_road.andesite": "Андезитовый щебень", + "block.rnr.rock.macadam_road.andesite_slab": "Плита из андезитового щебня", + "block.rnr.rock.macadam_road.andesite_stairs": "Ступеньки из андезитового щебня", + "block.rnr.rock.gravel_road.andesite": "Андезитовый гравий", + "block.rnr.rock.gravel_road.andesite_slab": "Плита из андезитового гравия", + "block.rnr.rock.gravel_road.andesite_stairs": "Ступеньки из андезитового гравия", + "block.rnr.rock.cobbled_road.andesite": "Булыжная андезитовая брусчатка", + "block.rnr.rock.cobbled_road.andesite_slab": "Плита из булыжной андезитовой брусчатки", + "block.rnr.rock.cobbled_road.andesite_stairs": "Ступеньки из булыжной андезитовой брусчатки", + "block.rnr.rock.over_height_gravel.andesite": "Возвышенный андезитовый гравий", + "item.rnr.gravel_fill.andesite": "Насыпь андезитового гравия", + "item.rnr.flagstone.andesite": "Андезитовая брусчатка", + "block.rnr.rock.flagstones.dacite": "Дацитовая брусчатка", + "block.rnr.rock.flagstones.dacite_slab": "Плита из дацитовой брусчатки", + "block.rnr.rock.flagstones.dacite_stairs": "Ступеньки из дацитовой брусчатки", + "block.rnr.rock.sett_road.dacite": "Мозаичная дацитовая брусчатка", + "block.rnr.rock.sett_road.dacite_slab": "Плита из мозаичной дацитовой брусчатки", + "block.rnr.rock.sett_road.dacite_stairs": "Ступеньки из мозаичной дацитовой брусчатки", + "block.rnr.rock.macadam_road.dacite": "Дацитовый щебень", + "block.rnr.rock.macadam_road.dacite_slab": "Плита из дацитового щебня", + "block.rnr.rock.macadam_road.dacite_stairs": "Ступеньки из дацитового щебня", + "block.rnr.rock.gravel_road.dacite": "Дацитовый гравий", + "block.rnr.rock.gravel_road.dacite_slab": "Плита из дацитового гравия", + "block.rnr.rock.gravel_road.dacite_stairs": "Ступеньки из дацитового гравия", + "block.rnr.rock.cobbled_road.dacite": "Булыжная дацитовая брусчатка", + "block.rnr.rock.cobbled_road.dacite_slab": "Плита из булыжной дацитовой брусчатки", + "block.rnr.rock.cobbled_road.dacite_stairs": "Ступеньки из булыжной дацитовой брусчатки", + "block.rnr.rock.over_height_gravel.dacite": "Возвышенный дацитовый гравий", + "item.rnr.gravel_fill.dacite": "Насыпь дацитового гравия", + "item.rnr.flagstone.dacite": "Дацитовая брусчатка", + "block.rnr.rock.flagstones.quartzite": "Кварцитовая брусчатка", + "block.rnr.rock.flagstones.quartzite_slab": "Плита из кварцитовой брусчатки", + "block.rnr.rock.flagstones.quartzite_stairs": "Ступеньки из кварцитовой брусчатки", + "block.rnr.rock.sett_road.quartzite": "Мозаичная кварцитовая брусчатка", + "block.rnr.rock.sett_road.quartzite_slab": "Плита из мозаичной кварцитовой брусчатки", + "block.rnr.rock.sett_road.quartzite_stairs": "Ступеньки из мозаичной кварцитовой брусчатки", + "block.rnr.rock.macadam_road.quartzite": "Кварцитовый щебень", + "block.rnr.rock.macadam_road.quartzite_slab": "Плита из кварцитового щебня", + "block.rnr.rock.macadam_road.quartzite_stairs": "Ступеньки из кварцитового щебня", + "block.rnr.rock.gravel_road.quartzite": "Кварцитовый гравий", + "block.rnr.rock.gravel_road.quartzite_slab": "Плита из кварцитового гравия", + "block.rnr.rock.gravel_road.quartzite_stairs": "Ступеньки из кварцитового гравия", + "block.rnr.rock.cobbled_road.quartzite": "Булыжная кварцитовая брусчатка", + "block.rnr.rock.cobbled_road.quartzite_slab": "Плита из булыжной кварцитовой брусчатки", + "block.rnr.rock.cobbled_road.quartzite_stairs": "Ступеньки из булыжной кварцитовой брусчатки", + "block.rnr.rock.over_height_gravel.quartzite": "Возвышенный кварцитовый гравий", + "item.rnr.gravel_fill.quartzite": "Насыпь кварцитового гравия", + "item.rnr.flagstone.quartzite": "Кварцитовая брусчатка", + "block.rnr.rock.flagstones.slate": "Шиферная сланцевая брусчатка", + "block.rnr.rock.flagstones.slate_slab": "Плита из шиферной сланцевой брусчатки", + "block.rnr.rock.flagstones.slate_stairs": "Ступеньки из шиферной сланцевой брусчатки", + "block.rnr.rock.sett_road.slate": "Мозаичная шиферная сланцевая брусчатка", + "block.rnr.rock.sett_road.slate_slab": "Плита из мозаичной шиферной сланцевой брусчатки", + "block.rnr.rock.sett_road.slate_stairs": "Ступеньки из мозаичной шиферной сланцевой брусчатки", + "block.rnr.rock.macadam_road.slate": "Шиферный сланцевый щебень", + "block.rnr.rock.macadam_road.slate_slab": "Плита из шиферного сланцевого щебня", + "block.rnr.rock.macadam_road.slate_stairs": "Ступеньки из шиферного сланцевого щебня", + "block.rnr.rock.gravel_road.slate": "Шиферный сланцевый гравий", + "block.rnr.rock.gravel_road.slate_slab": "Плита из шиферного сланцевого гравия", + "block.rnr.rock.gravel_road.slate_stairs": "Ступеньки из шиферного сланцевого гравия", + "block.rnr.rock.cobbled_road.slate": "Булыжная шиферная сланцевая брусчатка", + "block.rnr.rock.cobbled_road.slate_slab": "Плита из булыжной шиферной сланцевой брусчатки", + "block.rnr.rock.cobbled_road.slate_stairs": "Ступеньки из булыжной шиферной сланцевой брусчатки", + "block.rnr.rock.over_height_gravel.slate": "Возвышенный шиферный сланцевый гравий", + "item.rnr.gravel_fill.slate": "Насыпь шиферного сланцевого гравия", + "item.rnr.flagstone.slate": "Шиферная сланцевая брусчатка", + "block.rnr.rock.flagstones.phyllite": "Филлитовая брусчатка", + "block.rnr.rock.flagstones.phyllite_slab": "Плита из филлитовой брусчатки", + "block.rnr.rock.flagstones.phyllite_stairs": "Ступеньки из филлитовой брусчатки", + "block.rnr.rock.sett_road.phyllite": "Мозаичная филлитовая брусчатка", + "block.rnr.rock.sett_road.phyllite_slab": "Плита из мозаичной филлитовой брусчатки", + "block.rnr.rock.sett_road.phyllite_stairs": "Ступеньки из мозаичной филлитовой брусчатки", + "block.rnr.rock.macadam_road.phyllite": "Филлитовый щебень", + "block.rnr.rock.macadam_road.phyllite_slab": "Плита из филлитового щебня", + "block.rnr.rock.macadam_road.phyllite_stairs": "Ступеньки из филлитового щебня", + "block.rnr.rock.gravel_road.phyllite": "Филлитовый гравий", + "block.rnr.rock.gravel_road.phyllite_slab": "Плита из филлитового гравия", + "block.rnr.rock.gravel_road.phyllite_stairs": "Ступеньки из филлитового гравия", + "block.rnr.rock.cobbled_road.phyllite": "Булыжная филлитовая брусчатка", + "block.rnr.rock.cobbled_road.phyllite_slab": "Плита из булыжной филлитовой брусчатки", + "block.rnr.rock.cobbled_road.phyllite_stairs": "Ступеньки из булыжной филлитовой брусчатки", + "block.rnr.rock.over_height_gravel.phyllite": "Возвышенный филлитовый гравий", + "item.rnr.gravel_fill.phyllite": "Насыпь филлитового гравия", + "item.rnr.flagstone.phyllite": "Филлитовая брусчатка", + "block.rnr.rock.flagstones.schist": "Аспидная сланцевая брусчатка", + "block.rnr.rock.flagstones.schist_slab": "Плита из аспидной сланцевой брусчатки", + "block.rnr.rock.flagstones.schist_stairs": "Ступеньки из аспидной сланцевой брусчатки", + "block.rnr.rock.sett_road.schist": "Мозаичная аспидная сланцевая брусчатка", + "block.rnr.rock.sett_road.schist_slab": "Плита из мозаичной аспидной сланцевой брусчатки", + "block.rnr.rock.sett_road.schist_stairs": "Ступеньки из мозаичной аспидной сланцевой брусчатки", + "block.rnr.rock.macadam_road.schist": "Аспидный сланцевый щебень", + "block.rnr.rock.macadam_road.schist_slab": "Плита из аспидного сланцевого щебня", + "block.rnr.rock.macadam_road.schist_stairs": "Ступеньки из аспидного сланцевого щебня", + "block.rnr.rock.gravel_road.schist": "Аспидный сланцевый гравий", + "block.rnr.rock.gravel_road.schist_slab": "Плита из аспидного сланцевого гравия", + "block.rnr.rock.gravel_road.schist_stairs": "Ступеньки из аспидного сланцевого гравия", + "block.rnr.rock.cobbled_road.schist": "Булыжная аспидная сланцевая брусчатка", + "block.rnr.rock.cobbled_road.schist_slab": "Плита из булыжной аспидной сланцевой брусчатки", + "block.rnr.rock.cobbled_road.schist_stairs": "Ступеньки из булыжной аспидной сланцевой брусчатки", + "block.rnr.rock.over_height_gravel.schist": "Возвышенный аспидный сланцевый гравий", + "item.rnr.gravel_fill.schist": "Насыпь аспидного сланцевого гравия", + "item.rnr.flagstone.schist": "Аспидная сланцевая брусчатка", + "block.rnr.rock.flagstones.gneiss": "Гнейсовая брусчатка", + "block.rnr.rock.flagstones.gneiss_slab": "Плита из гнейсовой брусчатки", + "block.rnr.rock.flagstones.gneiss_stairs": "Ступеньки из гнейсовой брусчатки", + "block.rnr.rock.sett_road.gneiss": "Мозаичная гнейсовая брусчатка", + "block.rnr.rock.sett_road.gneiss_slab": "Плита из мозаичной гнейсовой брусчатки", + "block.rnr.rock.sett_road.gneiss_stairs": "Ступеньки из мозаичной гнейсовой брусчатки", + "block.rnr.rock.macadam_road.gneiss": "Гнейсовый щебень", + "block.rnr.rock.macadam_road.gneiss_slab": "Плита из гнейсового щебня", + "block.rnr.rock.macadam_road.gneiss_stairs": "Ступеньки из гнейсового щебня", + "block.rnr.rock.gravel_road.gneiss": "Гнейсовый гравий", + "block.rnr.rock.gravel_road.gneiss_slab": "Плита из гнейсового гравия", + "block.rnr.rock.gravel_road.gneiss_stairs": "Ступеньки из гнейсового гравия", + "block.rnr.rock.cobbled_road.gneiss": "Булыжная гнейсовая брусчатка", + "block.rnr.rock.cobbled_road.gneiss_slab": "Плита из булыжной гнейсовой брусчатки", + "block.rnr.rock.cobbled_road.gneiss_stairs": "Ступеньки из булыжной гнейсовой брусчатки", + "block.rnr.rock.over_height_gravel.gneiss": "Возвышенный гнейсовый гравий", + "item.rnr.gravel_fill.gneiss": "Насыпь гнейсового гравия", + "item.rnr.flagstone.gneiss": "Гнейсовая брусчатка", + "block.rnr.rock.flagstones.marble": "Мраморная брусчатка", + "block.rnr.rock.flagstones.marble_slab": "Плита из мраморной брусчатки", + "block.rnr.rock.flagstones.marble_stairs": "Ступеньки из мраморной брусчатки", + "block.rnr.rock.sett_road.marble": "Мозаичная мраморная брусчатка", + "block.rnr.rock.sett_road.marble_slab": "Плита из мозаичной мраморной брусчатки", + "block.rnr.rock.sett_road.marble_stairs": "Ступеньки из мозаичной мраморной брусчатки", + "block.rnr.rock.macadam_road.marble": "Мраморный щебень", + "block.rnr.rock.macadam_road.marble_slab": "Плита из мраморного щебня", + "block.rnr.rock.macadam_road.marble_stairs": "Ступеньки из мраморного щебня", + "block.rnr.rock.gravel_road.marble": "Мраморный гравий", + "block.rnr.rock.gravel_road.marble_slab": "Плита из мраморного гравия", + "block.rnr.rock.gravel_road.marble_stairs": "Ступеньки из мраморного гравия", + "block.rnr.rock.cobbled_road.marble": "Булыжная мраморная брусчатка", + "block.rnr.rock.cobbled_road.marble_slab": "Плита из булыжной мраморной брусчатки", + "block.rnr.rock.cobbled_road.marble_stairs": "Ступеньки из булыжной мраморной брусчатки", + "block.rnr.rock.over_height_gravel.marble": "Возвышенный мраморный гравий", + "item.rnr.gravel_fill.marble": "Насыпь мраморного гравия", + "item.rnr.flagstone.marble": "Мраморная брусчатка", + "item.rnr.flagstone.black_sandstone": "Брусчатка из чёрного песчаника", + "block.rnr.black_sandstone_flagstones": "Брусчатка из чёрного песчаника", + "block.rnr.black_sandstone_flagstones_slab": "Плита брусчатки из чёрного песчаника", + "block.rnr.black_sandstone_flagstones_stairs": "Ступеньки брусчатки из чёрного песчаника", + "item.rnr.flagstone.brown_sandstone": "Брусчатка из коричневого песчаника", + "block.rnr.brown_sandstone_flagstones": "Брусчатка из коричневого песчаника", + "block.rnr.brown_sandstone_flagstones_slab": "Плита брусчатки из коричневого песчаника", + "block.rnr.brown_sandstone_flagstones_stairs": "Ступеньки брусчатки из коричневого песчаника", + "item.rnr.flagstone.green_sandstone": "Брусчатка из зелёного песчаника", + "block.rnr.green_sandstone_flagstones": "Брусчатка из зелёного песчаника", + "block.rnr.green_sandstone_flagstones_slab": "Плита брусчатки из зелёного песчаника", + "block.rnr.green_sandstone_flagstones_stairs": "Ступеньки брусчатки из зелёного песчаника", + "item.rnr.flagstone.pink_sandstone": "Брусчатка из розового песчаника", + "block.rnr.pink_sandstone_flagstones": "Брусчатка из розового песчаника", + "block.rnr.pink_sandstone_flagstones_slab": "Плита брусчатки из розового песчаника", + "block.rnr.pink_sandstone_flagstones_stairs": "Ступеньки брусчатки из розового песчаника", + "item.rnr.flagstone.red_sandstone": "Брусчатка из красного песчаника", + "block.rnr.red_sandstone_flagstones": "Брусчатка из красного песчаника", + "block.rnr.red_sandstone_flagstones_slab": "Плита брусчатки из красного песчаника", + "block.rnr.red_sandstone_flagstones_stairs": "Ступеньки брусчатки из красного песчаника", + "item.rnr.flagstone.white_sandstone": "Брусчатка из белого песчаника", + "block.rnr.white_sandstone_flagstones": "Брусчатка из белого песчаника", + "block.rnr.white_sandstone_flagstones_slab": "Плита брусчатки из белого песчаника", + "block.rnr.white_sandstone_flagstones_stairs": "Ступеньки брусчатки из белого песчаника", + "item.rnr.flagstone.yellow_sandstone": "Брусчатка из жёлтого песчаника", + "block.rnr.yellow_sandstone_flagstones": "Брусчатка из жёлтого песчаника", + "block.rnr.yellow_sandstone_flagstones_slab": "Плита брусчатки из жёлтого песчаника", + "block.rnr.yellow_sandstone_flagstones_stairs": "Ступеньки брусчатки из жёлтого песчаника", + "block.rnr.tamped_loam": "Утрамбованный суглинок", + "block.rnr.tamped_sandy_loam": "Утрамбованный песчаный суглинок", + "block.rnr.tamped_silty_loam": "Утрамбованный илистый суглинок", + "block.rnr.tamped_silt": "Утрамбованный ил", + "block.rnr.tamped_loam_mud": "Утрамбованный суглинок из грязи", + "block.rnr.tamped_sandy_loam_mud": "Утрамбованный песчаный суглинок из грязи", + "block.rnr.tamped_silty_loam_mud": "Утрамбованный илистый суглинок из грязи", + "block.rnr.tamped_silt_mud": "Утрамбованный ил из грязи", + "block.rnr.tamped_kaolin": "Утрамбованная каолинитовая глина", + "block.rnr.tamped_peat": "Утрамбованный торф", + "item.rnr.metal.mattock_head.copper": "Медь (Оголовье кайла)", + "item.rnr.metal.mattock.copper": "Кайло (Медь)", + "item.rnr.metal.mattock_head.bronze": "Бронза (Оголовье кайла)", + "item.rnr.metal.mattock.bronze": "Кайло (Бронза)", + "item.rnr.metal.mattock_head.black_bronze": "Чёрная бронза (Оголовье кайла)", + "item.rnr.metal.mattock.black_bronze": "Кайло (Чёрная бронза)", + "item.rnr.metal.mattock_head.bismuth_bronze": "Висмутовая бронза (Оголовье кайла)", + "item.rnr.metal.mattock.bismuth_bronze": "Кайло (Висмутовая бронза)", + "item.rnr.metal.mattock_head.wrought_iron": "Кованое железо (Оголовье кайла)", + "item.rnr.metal.mattock.wrought_iron": "Кайло (Кованое железо)", + "item.rnr.metal.mattock_head.steel": "Сталь (Оголовье кайла)", + "item.rnr.metal.mattock.steel": "Кайло (Сталь)", + "item.rnr.metal.mattock_head.black_steel": "Чёрная сталь (Оголовье кайла)", + "item.rnr.metal.mattock.black_steel": "Кайло (Чёрная сталь)", + "item.rnr.metal.mattock_head.red_steel": "Красная сталь (Оголовье кайла)", + "item.rnr.metal.mattock.red_steel": "Кайло (Красная сталь)", + "item.rnr.metal.mattock_head.blue_steel": "Синяя сталь (Оголовье кайла)", + "item.rnr.metal.mattock.blue_steel": "Кайло (Синяя сталь)", + "item.rnr.wood.shingle.acacia": "Акациевая черепица", + "block.rnr.wood.shingles.acacia": "Кровля из акациевой черепицы", + "block.rnr.wood.shingles.acacia_slab": "Плита кровли из акациевой черепицы", + "block.rnr.wood.shingles.acacia_stairs": "Ступеньки кровли из акациевой черепицы", + "item.rnr.wood.shingle.ash": "Ясеневая черепица", + "block.rnr.wood.shingles.ash": "Кровля из ясеневой черепицы", + "block.rnr.wood.shingles.ash_slab": "Плита кровли из ясеневой черепицы", + "block.rnr.wood.shingles.ash_stairs": "Ступеньки кровли из ясеневой черепицы", + "item.rnr.wood.shingle.aspen": "Осиновая черепица", + "block.rnr.wood.shingles.aspen": "Кровля из осиновой черепицы", + "block.rnr.wood.shingles.aspen_slab": "Плита кровли из осиновой черепицы", + "block.rnr.wood.shingles.aspen_stairs": "Ступеньки кровли из осиновой черепицы", + "item.rnr.wood.shingle.birch": "Берёзовая черепица", + "block.rnr.wood.shingles.birch": "Кровля из берёзовой черепицы", + "block.rnr.wood.shingles.birch_slab": "Плита кровли из берёзовой черепицы", + "block.rnr.wood.shingles.birch_stairs": "Ступеньки кровли из берёзовой черепицы", + "item.rnr.wood.shingle.blackwood": "Гренадиловая черепица", + "block.rnr.wood.shingles.blackwood": "Кровля из гренадиловой черепицы", + "block.rnr.wood.shingles.blackwood_slab": "Плита кровли из гренадиловой черепицы", + "block.rnr.wood.shingles.blackwood_stairs": "Ступеньки кровли из гренадиловой черепицы", + "item.rnr.wood.shingle.chestnut": "Каштановая черепица", + "block.rnr.wood.shingles.chestnut": "Кровля из каштановой черепицы", + "block.rnr.wood.shingles.chestnut_slab": "Плита кровли из каштановой черепицы", + "block.rnr.wood.shingles.chestnut_stairs": "Ступеньки кровли из каштановой черепицы", + "item.rnr.wood.shingle.douglas_fir": "Черепица из дугласовой пихты", + "block.rnr.wood.shingles.douglas_fir": "Кровля из черепицы дугласовой пихты", + "block.rnr.wood.shingles.douglas_fir_slab": "Плита кровли из черепицы дугласовой пихты", + "block.rnr.wood.shingles.douglas_fir_stairs": "Ступеньки кровли из черепицы дугласовой пихты", + "item.rnr.wood.shingle.hickory": "Каштановая черепица", + "block.rnr.wood.shingles.hickory": "Кровля из каштановой черепицы", + "block.rnr.wood.shingles.hickory_slab": "Плита кровли из каштановой черепицы", + "block.rnr.wood.shingles.hickory_stairs": "Ступеньки кровли из каштановой черепицы", + "item.rnr.wood.shingle.kapok": "Сейбовая черепица", + "block.rnr.wood.shingles.kapok": "Кровля из сейбовой черепицы", + "block.rnr.wood.shingles.kapok_slab": "Плита кровли из сейбовой черепицы", + "block.rnr.wood.shingles.kapok_stairs": "Ступеньки кровли из сейбовой черепицы", + "item.rnr.wood.shingle.maple": "Кленовая черепица", + "block.rnr.wood.shingles.maple": "Кровля из кленовой черепицы", + "block.rnr.wood.shingles.maple_slab": "Плита кровли из кленовой черепицы", + "block.rnr.wood.shingles.maple_stairs": "Ступеньки кровли из кленовой черепицы", + "item.rnr.wood.shingle.oak": "Дубовая черепица", + "block.rnr.wood.shingles.oak": "Кровля из дубовой черепицы", + "block.rnr.wood.shingles.oak_slab": "Плита кровли из дубовой черепицы", + "block.rnr.wood.shingles.oak_stairs": "Ступеньки кровли из дубовой черепицы", + "item.rnr.wood.shingle.palm": "Пальмовая черепица", + "block.rnr.wood.shingles.palm": "Кровля из пальмовой черепицы", + "block.rnr.wood.shingles.palm_slab": "Плита кровли из пальмовой черепицы", + "block.rnr.wood.shingles.palm_stairs": "Ступеньки кровли из пальмовой черепицы", + "item.rnr.wood.shingle.pine": "Сосновая черепица", + "block.rnr.wood.shingles.pine": "Кровля из сосновой черепицы", + "block.rnr.wood.shingles.pine_slab": "Плита кровли из сосновой черепицы", + "block.rnr.wood.shingles.pine_stairs": "Ступеньки кровли из сосновой черепицы", + "item.rnr.wood.shingle.rosewood": "Палисандровая черепица", + "block.rnr.wood.shingles.rosewood": "Кровля из палисандровой черепицы", + "block.rnr.wood.shingles.rosewood_slab": "Плита кровли из палисандровой черепицы", + "block.rnr.wood.shingles.rosewood_stairs": "Ступеньки кровли из палисандровой черепицы", + "item.rnr.wood.shingle.sequoia": "Секвойная черепица", + "block.rnr.wood.shingles.sequoia": "Кровля из секвойной черепицы", + "block.rnr.wood.shingles.sequoia_slab": "Плита кровли из секвойной черепицы", + "block.rnr.wood.shingles.sequoia_stairs": "Ступеньки кровли из секвойной черепицы", + "item.rnr.wood.shingle.spruce": "Еловая черепица", + "block.rnr.wood.shingles.spruce": "Кровля из еловой черепицы", + "block.rnr.wood.shingles.spruce_slab": "Плита кровли из еловой черепицы", + "block.rnr.wood.shingles.spruce_stairs": "Ступеньки кровли из еловой черепицы", + "item.rnr.wood.shingle.sycamore": "Платановая черепица", + "block.rnr.wood.shingles.sycamore": "Кровля из платановой черепицы", + "block.rnr.wood.shingles.sycamore_slab": "Плита кровли из платановой черепицы", + "block.rnr.wood.shingles.sycamore_stairs": "Ступеньки кровли из платановой черепицы", + "item.rnr.wood.shingle.white_cedar": "Черепица из белого кедра", + "block.rnr.wood.shingles.white_cedar": "Кровля из черепицы белого кедра", + "block.rnr.wood.shingles.white_cedar_slab": "Плита кровли из черепицы белого кедра", + "block.rnr.wood.shingles.white_cedar_stairs": "Ступеньки кровли из черепицы белого кедра", + "item.rnr.wood.shingle.willow": "Ивовая черепица", + "block.rnr.wood.shingles.willow": "Кровля из ивовой черепицы", + "block.rnr.wood.shingles.willow_slab": "Плита кровли из ивовой черепицы", + "block.rnr.wood.shingles.willow_stairs": "Ступеньки кровли из ивовой черепицы", + "item.rnr.wood.shingle.mangrove": "Мангровая черепица", + "block.rnr.wood.shingles.mangrove": "Кровля из мангровой черепицы", + "block.rnr.wood.shingles.mangrove_slab": "Плита кровли из мангровой черепицы", + "block.rnr.wood.shingles.mangrove_stairs": "Ступеньки кровли из мангровой черепицы", + "item.rnr.wood.shingle.baobab": "Баобабовая черепица", + "block.rnr.wood.shingles.baobab": "Кровля из баобабовой черепицы", + "block.rnr.wood.shingles.baobab_slab": "Плита кровли из баобабовой черепицы", + "block.rnr.wood.shingles.baobab_stairs": "Ступеньки кровли из баобабовой черепицы", + "item.rnr.wood.shingle.cypress": "Кипарисовая черепица", + "block.rnr.wood.shingles.cypress": "Кровля из кипарисовой черепицы", + "block.rnr.wood.shingles.cypress_slab": "Плита кровли из кипарисовой черепицы", + "block.rnr.wood.shingles.cypress_stairs": "Ступеньки кровли из кипарисовой черепицы", + "item.rnr.wood.shingle.eucalyptus": "Эвкалиптовая черепица", + "block.rnr.wood.shingles.eucalyptus": "Кровля из эвкалиптовой черепицы", + "block.rnr.wood.shingles.eucalyptus_slab": "Плита кровли из эвкалиптовой черепицы", + "block.rnr.wood.shingles.eucalyptus_stairs": "Ступеньки кровли из эвкалиптовой черепицы", + "item.rnr.wood.shingle.fig": "Инжирная черепица", + "block.rnr.wood.shingles.fig": "Кровля из инжирной черепицы", + "block.rnr.wood.shingles.fig_slab": "Плита кровли из инжирной черепицы", + "block.rnr.wood.shingles.fig_stairs": "Ступеньки кровли из инжирной черепицы", + "item.rnr.wood.shingle.hevea": "Черепица из гевеи", + "block.rnr.wood.shingles.hevea": "Кровля из черепицы гевеи", + "block.rnr.wood.shingles.hevea_slab": "Плита кровли из черепицы гевеи", + "block.rnr.wood.shingles.hevea_stairs": "Ступеньки кровли из черепицы гевеи", + "item.rnr.wood.shingle.mahogany": "Черепица из махагони", + "block.rnr.wood.shingles.mahogany": "Кровля из черепицы махагони", + "block.rnr.wood.shingles.mahogany_slab": "Плита кровли из черепицы махагони", + "block.rnr.wood.shingles.mahogany_stairs": "Ступеньки кровли из черепицы махагони", + "item.rnr.wood.shingle.teak": "Черепица из тикового дерева", + "block.rnr.wood.shingles.teak": "Кровля из черепицы тикового дерева", + "block.rnr.wood.shingles.teak_slab": "Плита кровли из черепицы тикового дерева", + "block.rnr.wood.shingles.teak_stairs": "Ступеньки кровли из черепицы тикового дерева", + "item.rnr.wood.shingle.tualang": "Черепица из компассии", + "block.rnr.wood.shingles.tualang": "Кровля из черепицы компассии", + "block.rnr.wood.shingles.tualang_slab": "Плита кровли из черепицы компассии", + "block.rnr.wood.shingles.tualang_stairs": "Ступеньки кровли из черепицы компассии", + "item.rnr.wood.shingle.ipe": "Черепица из ипе", + "block.rnr.wood.shingles.ipe": "Кровля из черепицы ипе", + "block.rnr.wood.shingles.ipe_slab": "Плита кровли из черепицы ипе", + "block.rnr.wood.shingles.ipe_stairs": "Ступеньки кровли из черепицы ипе", + "item.rnr.wood.shingle.ironwood": "Ironwood Shingle", + "block.rnr.wood.shingles.ironwood": "Ironwood Shingled Roof", + "block.rnr.wood.shingles.ironwood_slab": "Ironwood Shingled Roof Slab", + "block.rnr.wood.shingles.ironwood_stairs": "Ironwood Shingled Roof Stairs", + "rnr.mattock.cannot_place": "Версия блока, обработанная кайлом, не может существовать здесь", + "rnr.mattock.no_recipe": "Этот блок не может быть обработан кайлом", + "rnr.mattock.bad_fluid": "Версия блока, обработанная кайлом, не может содержать жидкость здесь", + "block.rnr.base_course": "Основание покрытия", + "block.rnr.hoggin": "Песчано-гравийная галька", + "block.rnr.hoggin_slab": "Плита песчано-гравийной гальки", + "block.rnr.hoggin_stairs": "Ступеньки песчано-гравийной гальки", + "block.rnr.brick_road": "Мозаичная брусчатка", + "block.rnr.brick_road_slab": "Плита мозаичной брусчатки", + "block.rnr.brick_road_stairs": "Ступеньки мозаичной брусчатки", + "block.rnr.concrete_road": "Бетонный тротуар", + "block.rnr.concrete_road_slab": "Плита бетонного тротуара", + "block.rnr.concrete_road_stairs": "Ступеньки бетонного тротуара", + "block.rnr.cracked_concrete_road": "Треснутый бетонный тротуар", + "block.rnr.cracked_concrete_road_slab": "Плита треснутого бетонного тротуара", + "block.rnr.cracked_concrete_road_stairs": "Ступеньки треснутого бетонного тротуара", + "block.rnr.trodden_concrete_road": "Бетонный тротуар со следами", + "block.rnr.trodden_concrete_road_slab": "Плита бетонного тротуара со следами", + "block.rnr.trodden_concrete_road_stairs": "Ступеньки бетонного тротуара со следами", + "block.rnr.cracked_trodden_concrete_road": "Треснутый бетонный тротуар со следами", + "block.rnr.cracked_trodden_concrete_road_slab": "Плита треснутого бетонного тротуара со следами", + "block.rnr.cracked_trodden_concrete_road_stairs": "Ступеньки треснутого бетонного тротуара со следами", + "block.rnr.concrete_road_panel": "Бетонная тротуарная панель", + "block.rnr.concrete_road_panel_slab": "Плита бетонной тротуарной панели", + "block.rnr.concrete_road_panel_stairs": "Ступеньки бетонной тротуарной панели", + "block.rnr.concrete_road_sett": "Бетонная мозаичная тротуарная плитка", + "block.rnr.concrete_road_sett_slab": "Плита бетонной мозаичной тротуарной плитки", + "block.rnr.concrete_road_sett_stairs": "Ступеньки бетонной мозаичной тротуарной плитки", + "block.rnr.concrete_road_flagstones": "Бетонная тротуарная плитка", + "block.rnr.concrete_road_flagstones_slab": "Плита бетонной тротуарной плитки", + "block.rnr.concrete_road_flagstones_stairs": "Ступеньки бетонной тротуарной плитки", + "block.rnr.concrete_road_control_joint": "Бетонный тротуар с компенсационным швом", + "block.rnr.pouring_concrete_road": "Разливающийся бетонный тротуар", + "block.rnr.wet_concrete_road": "Жидкий бетонный тротуар", + "block.rnr.wet_trodden_concrete_road": "Жидкий бетонный тротуар со следами", + "block.rnr.wet_concrete_road_control_joint": "Жидкий бетонный тротуар с компенсационным швом", + "block.rnr.wet_concrete_road_sett": "Жидкая бетонная мозаичная тротуарная плитка", + "block.rnr.wet_concrete_road_flagstones": "Жидкая бетонная тротуарная плитка", + "block.rnr.wet_concrete_road_panel": "Жидкая бетонная тротуарная панель", + "item.rnr.bucket.concrete": "Ведро жидкого бетона", + "item.rnr.hoggin_mix": "Песчано-гравийная смесь", + "item.rnr.unfired_terracotta_roof_tile": "Необожённая терракотовая черепица", + "item.rnr.terracotta_roof_tile": "Терракотовая черепица", + "item.rnr.unfired_roof_tile": "Необожённая черепица", + "item.rnr.ceramic_roof_tile": "Черепица", + "item.rnr.concrete_powder": "Сухой бетон", + "fluid.rnr.concrete": "Жидкий бетон", + "item.rnr.crushed_base_course": "Дроблённое основание покрытия", + "block.rnr.roof_frame": "Каркас кровли", + "block.rnr.roof_frame_stairs": "Ступеньки каркаса кровли", + "block.rnr.roof_frame_slab": "Плита каркаса кровли", + "block.rnr.thatch_roof": "Соломенная крыша", + "block.rnr.thatch_roof_stairs": "Ступеньки соломенной крыши", + "block.rnr.thatch_roof_slab": "Плита соломенной крыши", + "block.rnr.terracotta_roof": "Терракотовая кровля", + "block.rnr.terracotta_roof_stairs": "Ступеньки терракотовой крыши", + "block.rnr.terracotta_roof_slab": "Плита терракотовой крыши", + "block.rnr.ceramic_roof": "Кровля", + "block.rnr.ceramic_roof_stairs": "Ступеньки кровли", + "block.rnr.ceramic_roof_slab": "Плита кровли", + "rnr.creative_tab.roads_and_roofs": "Roads and Roofs", + "roads_and_roofs": "Roads and Roofs", + "tfc.jei.block_mod": "Модификация блока", + "tfc.jei.mattock": "Кайло", + "config.jade.plugin_tfc.wet_concrete": "Жидкий бетон", + "rnr.jade.will_crack": "Треснет после высыхания", + "rnr.jade.will_not_crack": "Не треснет" +} \ No newline at end of file diff --git a/kubejs/assets/sophisticatedbackpacks/lang/zh_cn.json b/kubejs/assets/sophisticatedbackpacks/lang/zh_cn.json new file mode 100644 index 000000000..934d1504b --- /dev/null +++ b/kubejs/assets/sophisticatedbackpacks/lang/zh_cn.json @@ -0,0 +1,11 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.sophisticatedbackpacks.iron_backpack": "红钢背包", + "block.sophisticatedbackpacks.gold_backpack": "铝背包", + "block.sophisticatedbackpacks.diamond_backpack": "钛背包", + "block.sophisticatedbackpacks.netherite_backpack": "钨钢背包", + "item.sophisticatedbackpacks.iron_backpack": "红钢背包", + "item.sophisticatedbackpacks.gold_backpack": "铝背包", + "item.sophisticatedbackpacks.diamond_backpack": "钛背包", + "item.sophisticatedbackpacks.netherite_backpack": "钨钢背包" +} \ No newline at end of file diff --git a/kubejs/assets/species/lang/zh_cn.json b/kubejs/assets/species/lang/zh_cn.json new file mode 100644 index 000000000..7bdee92b5 --- /dev/null +++ b/kubejs/assets/species/lang/zh_cn.json @@ -0,0 +1,4 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.species.alphacene_moss_block": "冰川菌盖" +} \ No newline at end of file diff --git a/kubejs/assets/tacz/lang/ru_ru.json b/kubejs/assets/tacz/lang/ru_ru.json new file mode 100644 index 000000000..b6ceae912 --- /dev/null +++ b/kubejs/assets/tacz/lang/ru_ru.json @@ -0,0 +1,18 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "applied_armorer.attachment.extended_mag_aa_1.name": "Истинно-кварцевый рифлёный магазин", + "applied_armorer.attachment.extended_mag_aa_2.name": "§9Истинно-кварцевый рифлёный магазин", + "applied_armorer.attachment.extended_mag_aa_3.name": "§dИстинно-кварцевый рифлёный магазин", + "applied_armorer.attachment.extended_mid_mag_aa_1.name": "Флаксовый рифлёный магазин", + "applied_armorer.attachment.extended_mid_mag_aa_2.name": "§9Флаксовый рифлёный магазин", + "applied_armorer.attachment.extended_mid_mag_aa_3.name": "§dФлаксовый рифлёный магазин", + "applied_armorer.attachment.grip_lf11.name": "ЛЦУ-рукоятка LF-11", + "applied_armorer.attachment.grip_sl_2.name": "ЛЦУ-рукоятка SL-2", + "applied_armorer.attachment.grip_stable.name": "Рукоятка ST-61", + "applied_armorer.attachment.grip_light.name": "Рукоятка LI-13", + "applied_armorer.attachment.grip_hf_17.name": "Рукоятка HF-17", + "create_armorer.attachment.extended_mag_ca_1.name": "Инваровый магазин", + "create_armorer.attachment.extended_mag_ca_2.name": "Магазин с медным покрытием", + "create_armorer.attachment.extended_mag_ca_3.name": "Магазин с латунным покрытием", + "create_armorer.ammo.rbapb.name": "Закраинные тупоголовые патроны" +} \ No newline at end of file diff --git a/kubejs/assets/tacz/lang/zh_cn.json b/kubejs/assets/tacz/lang/zh_cn.json new file mode 100644 index 000000000..1437ad564 --- /dev/null +++ b/kubejs/assets/tacz/lang/zh_cn.json @@ -0,0 +1,18 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "applied_armorer.attachment.extended_mag_aa_1.name": "赛斯特凹槽弹匣", + "applied_armorer.attachment.extended_mag_aa_2.name": "§9赛斯特凹槽弹匣", + "applied_armorer.attachment.extended_mag_aa_3.name": "§d赛斯特凹槽弹匣", + "applied_armorer.attachment.extended_mid_mag_aa_1.name": "福鲁伊克斯凹槽弹匣", + "applied_armorer.attachment.extended_mid_mag_aa_2.name": "§9福鲁伊克斯凹槽弹匣", + "applied_armorer.attachment.extended_mid_mag_aa_3.name": "§d福鲁伊克斯凹槽弹匣", + "applied_armorer.attachment.grip_lf11.name": "LF-11激光握把", + "applied_armorer.attachment.grip_sl_2.name": "SL-2 激光握把", + "applied_armorer.attachment.grip_stable.name": "ST-61 握把", + "applied_armorer.attachment.grip_light.name": "LI-13 握把", + "applied_armorer.attachment.grip_hf_17.name": "HF-17 握把", + "create_armorer.attachment.extended_mag_ca_1.name": "殷钢弹匣", + "create_armorer.attachment.extended_mag_ca_2.name": "镀铜弹匣", + "create_armorer.attachment.extended_mag_ca_3.name": "镀黄铜弹匣", + "create_armorer.ammo.rbapb.name": "凸缘式钝头弹" +} \ No newline at end of file diff --git a/kubejs/assets/tfc/lang/ru_ru.json b/kubejs/assets/tfc/lang/ru_ru.json index 8a8cf334b..6fb71b2d1 100644 --- a/kubejs/assets/tfc/lang/ru_ru.json +++ b/kubejs/assets/tfc/lang/ru_ru.json @@ -2,5 +2,129 @@ "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", "metal.tfg.redstone": "Красный камень", "metal.tfg.red_alloy": "Красный сплав", - "metal.tfg.tin_alloy": "Оловянный сплав" + "metal.tfg.tin_alloy": "Оловянный сплав", + "tfc.advancements.story.propick.description": "Создайте свой первый геологический молоток", + "item.tfc.metal.double_ingot.cast_iron": "Серый чугун (Двойной слиток)", + "item.tfc.metal.double_ingot.black_steel": "Чёрная сталь (Двойной слиток)", + "item.tfc.metal.double_ingot.blue_steel": "Синяя сталь (Двойной слиток)", + "item.tfc.metal.double_ingot.red_steel": "Красная сталь (Двойной слиток)", + "item.tfc.metal.ingot.black_steel": "Чёрная сталь (Слиток)", + "item.tfc.metal.ingot.blue_steel": "Синяя сталь (Слиток)", + "item.tfc.metal.ingot.red_steel": "Красная сталь (Слиток)", + "item.tfc.metal.ingot.pig_iron": "Белый чугун (Слиток)", + "item.tfc.metal.ingot.weak_steel": "Сырая сталь (Слиток)", + "item.tfc.metal.ingot.weak_blue_steel": "Сырая синяя сталь (Слиток)", + "item.tfc.metal.ingot.weak_red_steel": "Сырая красная сталь (Слиток)", + "item.tfc.metal.ingot.high_carbon_steel": "Высокоуглеродистая сталь (Слиток)", + "item.tfc.metal.ingot.high_carbon_black_steel": "Высокоуглеродистая черная сталь (Слиток)", + "item.tfc.metal.ingot.high_carbon_blue_steel": "Высокоуглеродистая синяя сталь (Слиток)", + "item.tfc.metal.ingot.high_carbon_red_steel": "Высокоуглеродистая красная сталь (Слиток)", + "item.tfc.metal.tuyere.bronze": "Фурма (Бронза)", + "item.tfc.metal.tuyere.bismuth_bronze": "Фурма (Висмутовая бронза)", + "item.tfc.metal.tuyere.black_bronze": "Фурма (Чёрная бронза)", + "item.tfc.metal.tuyere.copper": "Фурма (Медь)", + "item.tfc.metal.tuyere.wrought_iron": "Фурма (Кованое железо)", + "item.tfc.metal.tuyere.steel": "Фурма (Сталь)", + "item.tfc.metal.tuyere.black_steel": "Фурма (Чёрная сталь)", + "item.tfc.metal.tuyere.blue_steel": "Фурма (Синяя сталь)", + "item.tfc.metal.tuyere.red_steel": "Фурма (Красная сталь)", + "item.tfc.metal.propick_head.bismuth_bronze": "Головка геологического молотка (Висмутовая бронза)", + "item.tfc.metal.propick_head.black_bronze": "Головка геологического молотка (Чёрная бронза)", + "item.tfc.metal.propick_head.bronze": "Головка геологического молотка (Бронза)", + "item.tfc.metal.propick_head.copper": "Головка геологического молотка (Медь)", + "item.tfc.metal.propick_head.wrought_iron": "Головка геологического молотка (Кованое железо)", + "item.tfc.metal.propick_head.steel": "Головка геологического молотка (Кованое железо)", + "item.tfc.metal.propick_head.black_steel": "Головка геологического молотка (Чёрная сталь)", + "item.tfc.metal.propick_head.blue_steel": "Головка геологического молотка (Синяя сталь)", + "item.tfc.metal.propick_head.red_steel": "Головка геологического молотка (Красная сталь)", + "item.tfc.metal.propick.bismuth_bronze": "Геологический молоток (Висмутовая бронза)", + "item.tfc.metal.propick.black_bronze": "Геологический молоток (Чёрная бронза)", + "item.tfc.metal.propick.bronze": "Геологический молоток (Бронза)", + "item.tfc.metal.propick.copper": "Геологический молоток (Медь)", + "item.tfc.metal.propick.wrought_iron": "Геологический молоток (Кованое железо)", + "item.tfc.metal.propick.steel": "Геологический молоток (Сталь)", + "item.tfc.metal.propick.black_steel": "Геологический молоток (Чёрная сталь)", + "item.tfc.metal.propick.blue_steel": "Геологический молоток (Синяя сталь)", + "item.tfc.metal.propick.red_steel": "Геологический молоток (Красная сталь)", + "item.tfc.metal.chisel.bismuth_bronze": "Зубило (Висмутовая бронза)", + "item.tfc.metal.chisel.black_bronze": "Зубило (Чёрная бронза)", + "item.tfc.metal.chisel.bronze": "Зубило (Бронза)", + "item.tfc.metal.chisel.copper": "Зубило (Медь)", + "item.tfc.metal.chisel.wrought_iron": "Зубило (Кованое железо)", + "item.tfc.metal.chisel.steel": "Зубило (Сталь)", + "item.tfc.metal.chisel.black_steel": "Зубило (Чёрная сталь)", + "item.tfc.metal.chisel.blue_steel": "Зубило (Синяя сталь)", + "item.tfc.metal.chisel.red_steel": "Зубило (Красная сталь)", + "item.tfc.metal.chisel_head.bismuth_bronze": "Головка зубила (Висмутовая бронза)", + "item.tfc.metal.chisel_head.black_bronze": "Головка зубила (Чёрная бронза)", + "item.tfc.metal.chisel_head.bronze": "Головка зубила (Бронза)", + "item.tfc.metal.chisel_head.copper": "Головка зубила (Медь)", + "item.tfc.metal.chisel_head.wrought_iron": "Головка зубила (Кованое железо)", + "item.tfc.metal.chisel_head.steel": "Головка зубила (Сталь)", + "item.tfc.metal.chisel_head.black_steel": "Головка зубила (Чёрная сталь)", + "item.tfc.metal.chisel_head.blue_steel": "Головка зубила (Синяя сталь)", + "item.tfc.metal.chisel_head.red_steel": "Головка зубила (Красная сталь)", + "item.tfc.metal.mace.bismuth_bronze": "Булава (Висмутовая бронза)", + "item.tfc.metal.mace.black_bronze": "Булава (Чёрная бронза)", + "item.tfc.metal.mace.bronze": "Булава (Бронза)", + "item.tfc.metal.mace.copper": "Булава (Медь)", + "item.tfc.metal.mace.wrought_iron": "Булава (Кованое железо)", + "item.tfc.metal.mace.steel": "Булава (Сталь)", + "item.tfc.metal.mace.black_steel": "Булава (Чёрная сталь)", + "item.tfc.metal.mace.blue_steel": "Булава (Синяя сталь)", + "item.tfc.metal.mace.red_steel": "Булава (Красная сталь)", + "item.tfc.metal.mace_head.bismuth_bronze": "Навершие булавы (Висмутовая бронза)", + "item.tfc.metal.mace_head.black_bronze": "Навершие булавы (Чёрная бронза)", + "item.tfc.metal.mace_head.bronze": "Навершие булавы (Бронза)", + "item.tfc.metal.mace_head.copper": "Навершие булавы (Медь)", + "item.tfc.metal.mace_head.wrought_iron": "Навершие булавы (Кованое железо)", + "item.tfc.metal.mace_head.steel": "Навершие булавы (Сталь)", + "item.tfc.metal.mace_head.black_steel": "Навершие булавы (Чёрная сталь)", + "item.tfc.metal.mace_head.blue_steel": "Навершие булавы (Синяя сталь)", + "item.tfc.metal.mace_head.red_steel": "Навершие булавы (Красная сталь)", + "item.tfc.metal.javelin.bismuth_bronze": "Копьё (Висмутовая бронза)", + "item.tfc.metal.javelin.black_bronze": "Копьё (Чёрная бронза)", + "item.tfc.metal.javelin.bronze": "Копьё (Бронза)", + "item.tfc.metal.javelin.copper": "Копьё (Медь)", + "item.tfc.metal.javelin.wrought_iron": "Копьё (Кованое железо)", + "item.tfc.metal.javelin.steel": "Копьё (Сталь)", + "item.tfc.metal.javelin.black_steel": "Копьё (Чёрная сталь)", + "item.tfc.metal.javelin.blue_steel": "Копьё (Синяя сталь)", + "item.tfc.metal.javelin.red_steel": "Копьё (Красная сталь)", + "item.tfc.metal.javelin_head.bismuth_bronze": "Наконечник копья (Висмутовая бронза)", + "item.tfc.metal.javelin_head.black_bronze": "Наконечник копья (Чёрная бронза)", + "item.tfc.metal.javelin_head.bronze": "Наконечник копья (Бронза)", + "item.tfc.metal.javelin_head.copper": "Наконечник копья (Медь)", + "item.tfc.metal.javelin_head.wrought_iron": "Наконечник копья (Кованое железо)", + "item.tfc.metal.javelin_head.steel": "Наконечник копья (Сталь)", + "item.tfc.metal.javelin_head.black_steel": "Наконечник копья (Чёрная сталь)", + "item.tfc.metal.javelin_head.blue_steel": "Наконечник копья (Синяя сталь)", + "item.tfc.metal.javelin_head.red_steel": "Наконечник копья (Красная сталь)", + "item.tfc.metal.shears.bismuth_bronze": "Ножницы (Висмутовая бронза)", + "item.tfc.metal.shears.black_bronze": "Ножницы (Чёрная бронза)", + "item.tfc.metal.shears.bronze": "Ножницы (Бронза)", + "item.tfc.metal.shears.copper": "Ножницы (Медь)", + "item.tfc.metal.shears.wrought_iron": "Ножницы (Кованое железо)", + "item.tfc.metal.shears.steel": "Ножницы (Сталь)", + "item.tfc.metal.shears.black_steel": "Ножницы (Чёрная сталь)", + "item.tfc.metal.shears.blue_steel": "Ножницы (Синяя сталь)", + "item.tfc.metal.shears.red_steel": "Ножницы (Красная сталь)", + "item.tfc.metal.fishing_rod.bismuth_bronze": "Удочка с крючком (Висмутовая бронза)", + "item.tfc.metal.fishing_rod.black_bronze": "Удочка с крючком (Чёрная бронза)", + "item.tfc.metal.fishing_rod.bronze": "Удочка с крючком (Бронза)", + "item.tfc.metal.fishing_rod.copper": "Удочка с крючком (Медь)", + "item.tfc.metal.fishing_rod.wrought_iron": "Удочка с крючком (Кованое железо)", + "item.tfc.metal.fishing_rod.steel": "Удочка с крючком (Сталь)", + "item.tfc.metal.fishing_rod.black_steel": "Удочка с крючком (Чёрная сталь)", + "item.tfc.metal.fishing_rod.blue_steel": "Удочка с крючком (Синяя сталь)", + "item.tfc.metal.fishing_rod.red_steel": "Удочка с крючком (Красная сталь)", + "item.tfc.metal.fish_hook.bismuth_bronze": "Крючок (Висмутовая бронза)", + "item.tfc.metal.fish_hook.black_bronze": "Крючок (Чёрная бронза)", + "item.tfc.metal.fish_hook.bronze": "Крючок (Бронза)", + "item.tfc.metal.fish_hook.copper": "Крючок (Медь)", + "item.tfc.metal.fish_hook.wrought_iron": "Крючок (Кованое железо)", + "item.tfc.metal.fish_hook.steel": "Крючок (Сталь)", + "item.tfc.metal.fish_hook.black_steel": "Крючок (Чёрная сталь)", + "item.tfc.metal.fish_hook.blue_steel": "Крючок (Синяя сталь)", + "item.tfc.metal.fish_hook.red_steel": "Крючок (Красная сталь)" } \ No newline at end of file diff --git a/kubejs/assets/tfc/lang/uk_ua.json b/kubejs/assets/tfc/lang/uk_ua.json index 43c8df416..8521fc769 100644 --- a/kubejs/assets/tfc/lang/uk_ua.json +++ b/kubejs/assets/tfc/lang/uk_ua.json @@ -9,7 +9,7 @@ "item.tfc.bucket.salt_water": "Відро морської води", "item.tfc.powder.saltpeter": "Порошок Селітри", "item.tfc.powder.sulfur": "Сірчаний Порошок", - "tfc.jei.raw_hide_knapping": "Обробка сирої шкіри", + "tfc.jei.raw_hide_knapping": "Обробка Сирої Шкіри", "metal.tfg.redstone": "Редстоун", "metal.tfg.red_alloy": "Червоний сплав", "metal.tfg.tin_alloy": "Олов'яний сплав", @@ -19,6 +19,7 @@ "metal.tfg.cobalt": "Кобальт", "metal.tfg.cobalt_brass": "Кобальтова латунь", "metal.tfg.aluminium_silicate": "Алюмосилікат", + "tfc.tooltip.propick.accuracy": "Точність: 100%", "trim_material.tfc.almandine_tfc": "Альмандин", "trim_material.tfc.andradite_tfc": "Андрадіт", "trim_material.tfc.blue_topaz_tfc": "Синій Топаз", diff --git a/kubejs/assets/tfc/lang/zh_cn.json b/kubejs/assets/tfc/lang/zh_cn.json new file mode 100644 index 000000000..26d85a704 --- /dev/null +++ b/kubejs/assets/tfc/lang/zh_cn.json @@ -0,0 +1,71 @@ +{ + "__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": "海水", + "block.tfc.cauldron.salt_water": "盛有海水的坩埚", + "fluid.tfc.salt_water": "海水", + "block.fluid.tfc.salt_water": "海水", + "fluid.tfc.river_water": "河水", + "block.fluid.tfc.river_water": "河水", + "item.tfc.bucket.salt_water": "海水桶", + "item.tfc.powder.saltpeter": "硝石粉", + "item.tfc.powder.sulfur": "硫磺粉", + "tfc.jei.raw_hide_knapping": "剥制生皮", + "metal.tfg.redstone": "红石", + "metal.tfg.red_alloy": "红色合金", + "metal.tfg.tin_alloy": "锡铁合金", + "metal.tfg.lead": "铅", + "metal.tfg.invar": "殷钢", + "metal.tfg.potin": "粗青铜", + "metal.tfg.cobalt": "钴", + "metal.tfg.cobalt_brass": "钴黄铜", + "metal.tfg.aluminium_silicate": "硅酸铝", + "tfc.tooltip.propick.accuracy": "精准度:100%", + "trim_material.tfc.almandine_tfc": "铁铝榴石", + "trim_material.tfc.andradite_tfc": "钙铁榴石", + "trim_material.tfc.blue_topaz_tfc": "蓝黄玉", + "trim_material.tfc.cinnabar_tfc": "朱砂", + "trim_material.tfc.coal_tfc": "煤炭", + "trim_material.tfc.diamond_tfc": "钻石", + "trim_material.tfc.emerald_tfc": "绿宝石", + "trim_material.tfc.green_sapphire_tfc": "绿色蓝宝石", + "trim_material.tfc.grossular_tfc": "钙铝榴石", + "trim_material.tfc.rutile_tfc": "金红石", + "trim_material.tfc.lazurite_tfc": "蓝金石", + "trim_material.tfc.pyrope_tfc": "镁铝榴石", + "trim_material.tfc.rock_salt_tfc": "岩盐", + "trim_material.tfc.ruby_tfc": "红宝石", + "trim_material.tfc.salt_tfc": "盐", + "trim_material.tfc.sapphire_tfc": "蓝宝石", + "trim_material.tfc.sodalite_tfc": "方钠石", + "trim_material.tfc.coke_tfc": "焦煤", + "trim_material.tfc.spessartine_tfc": "锰铝榴石", + "trim_material.tfc.topaz_tfc": "黄玉", + "trim_material.tfc.uvarovite_tfc": "钙铬榴石", + "trim_material.tfc.nether_quartz_tfc": "下界石英", + "trim_material.tfc.certus_quartz_tfc": "赛特斯石英", + "trim_material.tfc.quartzite_tfc": "石英岩", + "trim_material.tfc.realgar_tfc": "雄黄", + "trim_material.tfc.malachite_tfc": "孔雀石", + "trim_material.tfc.glass_tfc": "玻璃", + "trim_material.tfc.olivine_tfc": "橄榄石", + "trim_material.tfc.opal_tfc": "蛋白石", + "trim_material.tfc.amethyst_tfc": "紫水晶", + "trim_material.tfc.lapis_tfc": "青金石", + "trim_material.tfc.apatite_tfc": "磷灰石", + "trim_material.tfc.red_garnet_tfc": "红色石榴石", + "trim_material.tfc.yellow_garnet_tfc": "黄色石榴石", + "trim_material.tfc.monazite_tfc": "独居石", + "trim_material.tfc.rose_quartz_tfc": "玫瑰石英", + "trim_material.tfc.fluix_tfc": "福鲁伊克斯", + "trim_material.tfc.silver_tfc": "银", + "trim_material.tfc.sterling_silver_tfc": "纯银", + "trim_material.tfc.gold_tfc": "金", + "trim_material.tfc.rose_gold_tfc": "玫瑰金", + "trim_material.tfc.nickel_tfc": "镍", + "trim_material.tfc.platinum_tfc": "铂", + "trim_material.tfc.titanium_tfc": "钛", + "trim_material.tfc.bismuth_tfc": "铋", + "trim_material.tfc.neutronium_tfc": "中子素", + "trim_material.tfc.pyrite_tfc": "黄铁矿", + "trim_material.tfc.redx_tfc": "红石X" +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/earth_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/earth_ore_index.json index a548ee3b6..0686176ea 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/earth_ore_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/earth_ore_index.json @@ -14,7 +14,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)Almandine: $(l:tfg_ores/earth_vein_index#deep_sapphire)38%$(/l)$()$(li)Alunite: $(l:tfg_ores/earth_vein_index#normal_saltpeter)15%$(/l)$()$(li)Amethyst: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)65%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)25%$(/l)$()$(li)Apatite: $(l:tfg_ores/earth_vein_index#normal_apatite)50%$(/l)$()$(li)Asbestos: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_quartz)18%$(/l)$()$(li)Barite: $(l:tfg_ores/earth_vein_index#normal_quartz)37%$(/l)$()$(li)Basaltic Mineral Sands: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)35%$(/l)$()$(li)Bastnasite: $(l:tfg_ores/earth_vein_index#normal_monazite)62%$(/l)$()$(li)Bauxite: $(l:tfg_ores/earth_vein_index#normal_mica)25%$(/l)$()$(li)Bentonite: $(l:tfg_ores/earth_vein_index#normal_olivine)35%$(/l)$()$(li)Beryllium: $(l:tfg_ores/earth_vein_index#normal_beryllium)35%$(/l)$()$(li)Bismuth: $(l:tfg_ores/earth_vein_index#surface_bismuthinite)90%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)80%$(/l)$()$(li)Blue Topaz: $(l:tfg_ores/earth_vein_index#deep_topaz)35%$(/l)$()$(li)Borax: $(l:tfg_ores/earth_vein_index#normal_gypsum)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l)$()", + "text": "$(li)Almandine: $(l:tfg_ores/earth_vein_index#deep_sapphire)38%$(/l)$()$(li)Alunite: $(l:tfg_ores/earth_vein_index#normal_saltpeter)15%$(/l)$()$(li)Amethyst: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)65%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)25%$(/l)$()$(li)Apatite: $(l:tfg_ores/earth_vein_index#normal_apatite)50%$(/l)$()$(li)Asbestos: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_quartz)18%$(/l)$()$(li)Barite: $(l:tfg_ores/earth_vein_index#normal_quartz)37%$(/l)$()$(li)Basaltic Mineral Sands: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)35%$(/l)$()$(li)Bastnasite: $(l:tfg_ores/earth_vein_index#normal_monazite)62%$(/l)$()$(li)Bauxite: $(l:tfg_ores/earth_vein_index#normal_mica)25%$(/l)$()$(li)Bentonite: $(l:tfg_ores/earth_vein_index#normal_olivine)35%$(/l)$()$(li)Beryllium: $(l:tfg_ores/earth_vein_index#normal_beryllium)35%$(/l)$()$(li)Bismuth: $(l:tfg_ores/earth_vein_index#surface_bismuthinite)85%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)80%$(/l)$()$(li)Blue Topaz: $(l:tfg_ores/earth_vein_index#deep_topaz)35%$(/l)$()$(li)Borax: $(l:tfg_ores/earth_vein_index#normal_gypsum)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l)$()", "type": "patchouli:text" }, { @@ -34,7 +34,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)Native Silver: $(l:tfg_ores/earth_vein_index#normal_silver)15%$(/l)$()$(li)Neodymium: $(l:tfg_ores/earth_vein_index#normal_monazite)6%$(/l)$()$(li)Nickel: $(l:tfg_ores/earth_vein_index#normal_garnierite)10%$(/l)$()$(li)Oilsands: $(l:tfg_ores/earth_vein_index#normal_oilsands)100%$(/l)$()$(li)Olivine: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/l)$()$(li)Opal: $(l:tfg_ores/earth_vein_index#deep_garnet_opal)55%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)15%$(/l)$()$(li)Pentlandite: $(l:tfg_ores/earth_vein_index#normal_garnierite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_lubricant)15%$(/l)$()$(li)Pitchblende: $(l:tfg_ores/earth_vein_index#deep_pitchblende)50%$(/l)$()$(li)Platinum: $(l:tfg_ores/earth_vein_index#deep_sheldonite)7%$(/l)$()$(li)Pollucite: $(l:tfg_ores/earth_vein_index#normal_mica)15%$(/l)$()$(li)Powellite: $(l:tfg_ores/earth_vein_index#deep_molybdenum)17%$(/l)$()$(li)Pyrite: $(l:tfg_ores/earth_vein_index#normal_sulfur)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_sphalerite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_sphalerite)5%$(/l)$()$(li)Pyrochlore: $(l:tfg_ores/earth_vein_index#normal_apatite)15%$(/l)$()$(li)Pyrolusite: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()", + "text": "$(li)Native Silver: $(l:tfg_ores/earth_vein_index#normal_silver)15%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)5%$(/l)$()$(li)Neodymium: $(l:tfg_ores/earth_vein_index#normal_monazite)6%$(/l)$()$(li)Nickel: $(l:tfg_ores/earth_vein_index#normal_garnierite)10%$(/l)$()$(li)Oilsands: $(l:tfg_ores/earth_vein_index#normal_oilsands)100%$(/l)$()$(li)Olivine: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/l)$()$(li)Opal: $(l:tfg_ores/earth_vein_index#deep_garnet_opal)55%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)15%$(/l)$()$(li)Pentlandite: $(l:tfg_ores/earth_vein_index#normal_garnierite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_lubricant)15%$(/l)$()$(li)Pitchblende: $(l:tfg_ores/earth_vein_index#deep_pitchblende)62%$(/l)$()$(li)Platinum: $(l:tfg_ores/earth_vein_index#deep_sheldonite)7%$(/l)$()$(li)Pollucite: $(l:tfg_ores/earth_vein_index#normal_mica)15%$(/l)$()$(li)Powellite: $(l:tfg_ores/earth_vein_index#deep_molybdenum)17%$(/l)$()$(li)Pyrite: $(l:tfg_ores/earth_vein_index#normal_sulfur)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_sphalerite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_sphalerite)5%$(/l)$()$(li)Pyrochlore: $(l:tfg_ores/earth_vein_index#normal_apatite)15%$(/l)$()$(li)Pyrolusite: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()", "type": "patchouli:text" }, { @@ -44,12 +44,12 @@ }, { "Type": "patchouli:text", - "text": "$(li)Sphalerite: $(l:tfg_ores/earth_vein_index#normal_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#surface_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)15%$(/l)$()$(li)Spodumene: $(l:tfg_ores/earth_vein_index#normal_spodumene)35%$(/l)$()$(li)Stibnite: $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)20%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()$(li)Sulfur: $(l:tfg_ores/earth_vein_index#surface_sphalerite)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)50%$(/l), $(l:tfg_ores/earth_vein_index#normal_sphalerite)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)9%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)3%$(/l)$()$(li)Talc: $(l:tfg_ores/earth_vein_index#normal_lubricant)20%$(/l)$()$(li)Tantalite: $(l:tfg_ores/earth_vein_index#normal_manganese)12%$(/l)$()$(li)Tetrahedrite: $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)50%$(/l)$()$(li)Thorium: $(l:tfg_ores/earth_vein_index#normal_beryllium)15%$(/l)$()$(li)Tin: $(l:tfg_ores/earth_vein_index#normal_cassiterite)60%$(/l), $(l:tfg_ores/earth_vein_index#surface_cassiterite)40%$(/l)$()$(li)Topaz: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)Tricalcium Phosphate: $(l:tfg_ores/earth_vein_index#normal_apatite)35%$(/l)$()$(li)Trona: $(l:tfg_ores/earth_vein_index#normal_lubricant)10%$(/l)$()$(li)Tungstate: $(l:tfg_ores/earth_vein_index#deep_scheelite)35%$(/l)$()$(li)Uraninite: $(l:tfg_ores/earth_vein_index#deep_pitchblende)50%$(/l)$()", + "text": "$(li)Sphalerite: $(l:tfg_ores/earth_vein_index#normal_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#surface_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)15%$(/l)$()$(li)Spodumene: $(l:tfg_ores/earth_vein_index#normal_spodumene)35%$(/l)$()$(li)Stibnite: $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)20%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()$(li)Sulfur: $(l:tfg_ores/earth_vein_index#surface_sphalerite)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)50%$(/l), $(l:tfg_ores/earth_vein_index#normal_sphalerite)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)9%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)3%$(/l)$()$(li)Talc: $(l:tfg_ores/earth_vein_index#normal_lubricant)20%$(/l)$()$(li)Tantalite: $(l:tfg_ores/earth_vein_index#normal_manganese)12%$(/l)$()$(li)Tetrahedrite: $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)50%$(/l)$()$(li)Thorium: $(l:tfg_ores/earth_vein_index#normal_beryllium)15%$(/l)$()$(li)Tin: $(l:tfg_ores/earth_vein_index#normal_cassiterite)60%$(/l), $(l:tfg_ores/earth_vein_index#surface_cassiterite)40%$(/l)$()$(li)Topaz: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)Tricalcium Phosphate: $(l:tfg_ores/earth_vein_index#normal_apatite)35%$(/l)$()$(li)Trona: $(l:tfg_ores/earth_vein_index#normal_lubricant)10%$(/l)$()$(li)Tungstate: $(l:tfg_ores/earth_vein_index#deep_scheelite)35%$(/l)$()$(li)Uraninite: $(l:tfg_ores/earth_vein_index#deep_pitchblende)25%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)Vanadium Magnetite: $(l:tfg_ores/earth_vein_index#normal_magnetite)22%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)25%$(/l)$()$(li)Wulfenite: $(l:tfg_ores/earth_vein_index#deep_molybdenum)47%$(/l)$()$(li)Yellow Garnet: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)15%$(/l)$()$(li)Yellow Limonite: $(l:tfg_ores/earth_vein_index#normal_limonite)50%$(/l), $(l:tfg_ores/earth_vein_index#normal_hematite)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)20%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)5%$(/l)$()$(li)Zeolite: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()", + "text": "$(li)Vanadium Magnetite: $(l:tfg_ores/earth_vein_index#normal_magnetite)22%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)25%$(/l)$()$(li)Wulfenite: $(l:tfg_ores/earth_vein_index#deep_molybdenum)47%$(/l), $(l:tfg_ores/earth_vein_index#deep_pitchblende)12%$(/l)$()$(li)Yellow Garnet: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)15%$(/l)$()$(li)Yellow Limonite: $(l:tfg_ores/earth_vein_index#normal_limonite)50%$(/l), $(l:tfg_ores/earth_vein_index#normal_hematite)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)20%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)5%$(/l)$()$(li)Zeolite: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()", "type": "patchouli:text" } ], diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/earth_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/earth_vein_index.json index 6d90ccabf..e4abe219e 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/earth_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/earth_vein_index.json @@ -446,7 +446,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 90%$(br)$(thing)Melts into$(): Bismuth$(br)$(thing)Formula$(): Bi", + "text": "$(thing)Percentage$(): 85%$(br)$(thing)Melts into$(): Bismuth$(br)$(thing)Formula$(): Bi", "type": "patchouli:multiblock" }, { @@ -469,6 +469,26 @@ "text": "$(thing)Percentage$(): 7%$(br)$(thing)Smelts into$(): Lead$(br)$(thing)Formula$(): Pb$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", "type": "patchouli:multiblock" }, + { + "Type": "patchouli:multiblock", + "name": "Native Silver", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Silver$(br)$(thing)Formula$(): Ag", + "type": "patchouli:multiblock" + }, { "Type": "patchouli:multiblock", "name": "Sulfur", @@ -489,6 +509,11 @@ "text": "$(thing)Percentage$(): 3%$(br)$(thing)Source of$(): Sulfur$(br)$(thing)Formula$(): S", "type": "patchouli:multiblock" }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, { "Type": "patchouli:text", "text": "$(thing)Rarity$(): 170$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -32 — 75$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 60$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Granite", @@ -3721,7 +3746,7 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Rarity$(): 220$(br)$(thing)Density$(): 0.45$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -64 — -20$(br)$(thing)Size$(): 24$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Marble, Phyllite, Quartzite, Schist, Slate", + "text": "$(thing)Rarity$(): 240$(br)$(thing)Density$(): 0.45$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -64 — -20$(br)$(thing)Size$(): 24$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Marble, Phyllite, Quartzite, Schist, Slate", "title": "Uraninite & Pitchblende", "type": "patchouli:text", "anchor": "deep_pitchblende" @@ -3743,7 +3768,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 50%$(br)$(thing)Source of$(): Uranium, Thorium, Lead$(br)$(thing)Formula$(): (UO₂)₃ThPb$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "text": "$(thing)Percentage$(): 62%$(br)$(thing)Source of$(): Uranium, Thorium, Lead$(br)$(thing)Formula$(): (UO₂)₃ThPb$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", "type": "patchouli:multiblock" }, { @@ -3763,13 +3788,28 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 50%$(br)$(thing)Source of$(): Uranium$(br)$(thing)Formula$(): UO₂$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Uranium$(br)$(thing)Formula$(): UO₂$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "Type": "patchouli:multiblock", + "name": "Wulfenite", + "multiblock": { + "mapping": { + "0": "#forge:ores/wulfenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 12%$(br)$(thing)Source of$(): Lead, Molybdenum$(br)$(thing)Formula$(): PbMoO₄", + "type": "patchouli:multiblock" }, { "Type": "patchouli:text", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/mars_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/mars_ore_index.json index 39be0fa88..ffc7b4fcf 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/mars_ore_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/mars_ore_index.json @@ -14,7 +14,27 @@ }, { "Type": "patchouli:text", - "text": "$(li)Hematite: $(l:tfg_ores/mars_vein_index#mars_hematite)100%$(/l)$()", + "text": "$(li)Almandine: $(l:tfg_ores/mars_vein_index#mars_almandine)36%$(/l)$()$(li)Apatite: $(l:tfg_ores/mars_vein_index#mars_apatite)47%$(/l)$()$(li)Asbestos: $(l:tfg_ores/mars_vein_index#mars_quartzite)17%$(/l)$()$(li)Barite: $(l:tfg_ores/mars_vein_index#mars_quartzite)35%$(/l)$()$(li)Bastnasite: $(l:tfg_ores/mars_vein_index#mars_neodynium)58%$(/l)$()$(li)Bauxite: $(l:tfg_ores/mars_vein_index#mars_sapphire)20%$(/l)$()$(li)Beryllium: $(l:tfg_ores/mars_vein_index#mars_beryllium)35%$(/l)$()$(li)Bismuth: $(l:tfg_ores/mars_vein_index#surface_bismuthinite)40%$(/l)$()$(li)Bornite: $(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)35%$(/l)$()$(li)Calcite: $(l:tfg_ores/mars_vein_index#surface_hematite)5%$(/l)$()$(li)Cassiterite: $(l:tfg_ores/mars_vein_index#surface_cassiterite)55%$(/l)$()$(li)Chalcopyrite: $(l:tfg_ores/mars_vein_index#mars_copper)65%$(/l)$()$(li)Chromite: $(l:tfg_ores/mars_vein_index#deep_mars_chromite)20%$(/l)$()$(li)Coal: $(l:tfg_ores/mars_vein_index#mars_coal)70%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Cobaltite: $(l:tfg_ores/mars_vein_index#mars_nickel)28%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)11%$(/l)$()$(li)Cooperite: $(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)25%$(/l)$()$(li)Electrotine: $(l:tfg_ores/mars_vein_index#mars_sapphire)20%$(/l)$()$(li)Emerald: $(l:tfg_ores/mars_vein_index#mars_beryllium)50%$(/l)$()$(li)Galena: $(l:tfg_ores/mars_vein_index#mars_galena)40%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)35%$(/l)$()$(li)Garnierite: $(l:tfg_ores/mars_vein_index#mars_nickel)35%$(/l)$()$(li)Glauconite Sand: $(l:tfg_ores/mars_vein_index#mars_lubricant)26%$(/l)$()$(li)Goethite: $(l:tfg_ores/mars_vein_index#mars_hematite)15%$(/l)$()$(li)Green Sapphire: $(l:tfg_ores/mars_vein_index#mars_almandine)15%$(/l), $(l:tfg_ores/mars_vein_index#mars_sapphire)5%$(/l)$()$(li)Grossular: $(l:tfg_ores/mars_vein_index#mars_tantalite)37%$(/l)$()$(li)Gypsum: $(l:tfg_ores/mars_vein_index#surface_bismuthinite)20%$(/l)$()$(li)Hematite: $(l:tfg_ores/mars_vein_index#mars_hematite)50%$(/l), $(l:tfg_ores/mars_vein_index#surface_hematite)55%$(/l), $(l:tfg_ores/mars_vein_index#mars_coal)30%$(/l), $(l:tfg_ores/mars_vein_index#mars_pitchblende)29%$(/l), $(l:tfg_ores/mars_vein_index#mars_sulfur)19%$(/l), $(l:tfg_ores/mars_vein_index#surface_bismuthinite)20%$(/l), $(l:tfg_ores/mars_vein_index#mars_almandine)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_apatite)4%$(/l), $(l:tfg_ores/mars_vein_index#mars_copper)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_galena)6%$(/l), $(l:tfg_ores/mars_vein_index#mars_lubricant)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_neodynium)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_nickel)7%$(/l), $(l:tfg_ores/mars_vein_index#mars_quartzite)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_stibnite)4%$(/l), $(l:tfg_ores/mars_vein_index#mars_tungsten)4%$(/l)$()$(li)Lead: $(l:tfg_ores/mars_vein_index#mars_galena)33%$(/l)$()$(li)Lepidolite: $(l:tfg_ores/mars_vein_index#mars_salt)15%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Lithium: $(l:tfg_ores/mars_vein_index#mars_tungsten)19%$(/l)$()$(li)Monazite: $(l:tfg_ores/mars_vein_index#mars_neodynium)29%$(/l)$()$(li)Native Copper: $(l:tfg_ores/mars_vein_index#mars_stibnite)28%$(/l), $(l:tfg_ores/mars_vein_index#mars_copper)20%$(/l), $(l:tfg_ores/mars_vein_index#surface_tetrahedrite)19%$(/l)$()$(li)Native Gold: $(l:tfg_ores/mars_vein_index#mars_sapphire)55%$(/l), $(l:tfg_ores/mars_vein_index#mars_hematite)5%$(/l), $(l:tfg_ores/mars_vein_index#surface_hematite)5%$(/l)$()$(li)Native Silver: $(l:tfg_ores/mars_vein_index#mars_galena)20%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)11%$(/l)$()$(li)Neodymium: $(l:tfg_ores/mars_vein_index#mars_neodynium)5%$(/l)$()$(li)Nickel: $(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)25%$(/l), $(l:tfg_ores/mars_vein_index#mars_nickel)28%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)23%$(/l)$()$(li)Pentlandite: $(l:tfg_ores/mars_vein_index#mars_lubricant)15%$(/l)$()$(li)Pitchblende: $(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)52%$(/l), $(l:tfg_ores/mars_vein_index#mars_pitchblende)41%$(/l)$()$(li)Platinum: $(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)15%$(/l)$()$(li)Pyrite: $(l:tfg_ores/mars_vein_index#mars_sulfur)42%$(/l), $(l:tfg_ores/mars_vein_index#mars_copper)10%$(/l)$()$(li)Pyrochlore: $(l:tfg_ores/mars_vein_index#mars_apatite)14%$(/l)$()$(li)Pyrolusite: $(l:tfg_ores/mars_vein_index#mars_tantalite)25%$(/l)$()$(li)Pyrope: $(l:tfg_ores/mars_vein_index#mars_almandine)26%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Quartzite: $(l:tfg_ores/mars_vein_index#mars_quartzite)41%$(/l)$()$(li)Realgar: $(l:tfg_ores/mars_vein_index#mars_beryllium)15%$(/l)$()$(li)Redstone: $(l:tfg_ores/mars_vein_index#deep_mars_chromite)45%$(/l), $(l:tfg_ores/mars_vein_index#surface_tetrahedrite)4%$(/l)$()$(li)Rock Salt: $(l:tfg_ores/mars_vein_index#mars_salt)20%$(/l)$()$(li)Ruby: $(l:tfg_ores/mars_vein_index#deep_mars_chromite)35%$(/l)$()$(li)Salt: $(l:tfg_ores/mars_vein_index#mars_salt)30%$(/l)$()$(li)Saltpeter: $(l:tfg_ores/mars_vein_index#surface_cassiterite)10%$(/l)$()$(li)Sapphire: $(l:tfg_ores/mars_vein_index#mars_almandine)15%$(/l)$()$(li)Scheelite: $(l:tfg_ores/mars_vein_index#mars_tungsten)42%$(/l)$()$(li)Soapstone: $(l:tfg_ores/mars_vein_index#mars_lubricant)31%$(/l)$()$(li)Spessartine: $(l:tfg_ores/mars_vein_index#mars_tantalite)25%$(/l)$()$(li)Sphalerite: $(l:tfg_ores/mars_vein_index#mars_sulfur)23%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)17%$(/l)$()$(li)Spodumene: $(l:tfg_ores/mars_vein_index#mars_salt)35%$(/l)$()$(li)Stibnite: $(l:tfg_ores/mars_vein_index#mars_stibnite)19%$(/l), $(l:tfg_ores/mars_vein_index#surface_tetrahedrite)19%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Sulfur: $(l:tfg_ores/mars_vein_index#mars_sulfur)14%$(/l), $(l:tfg_ores/mars_vein_index#surface_bismuthinite)20%$(/l)$()$(li)Talc: $(l:tfg_ores/mars_vein_index#mars_lubricant)21%$(/l)$()$(li)Tantalite: $(l:tfg_ores/mars_vein_index#mars_tantalite)12%$(/l)$()$(li)Tetrahedrite: $(l:tfg_ores/mars_vein_index#surface_tetrahedrite)57%$(/l), $(l:tfg_ores/mars_vein_index#mars_stibnite)47%$(/l)$()$(li)Thorium: $(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)26%$(/l), $(l:tfg_ores/mars_vein_index#mars_pitchblende)29%$(/l)$()$(li)Tin: $(l:tfg_ores/mars_vein_index#surface_cassiterite)35%$(/l)$()$(li)Tricalcium Phosphate: $(l:tfg_ores/mars_vein_index#mars_apatite)33%$(/l)$()$(li)Tungstate: $(l:tfg_ores/mars_vein_index#mars_tungsten)33%$(/l)$()$(li)Uraninite: $(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)21%$(/l)$()$(li)Yellow Limonite: $(l:tfg_ores/mars_vein_index#mars_hematite)30%$(/l), $(l:tfg_ores/mars_vein_index#surface_hematite)33%$(/l)$()", "type": "patchouli:text" } ], diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/mars_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/mars_vein_index.json index ff302ed25..b86e295cb 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/mars_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/mars_vein_index.json @@ -14,13 +14,960 @@ }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_hematite)(Placeholder Vein)$()$()", + "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_almandine)Almandine & Sapphire$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_apatite)Apatite & Pyrochlore$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_neodynium)Bastnasite & Monazite$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_bismuthinite)Bismuth$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)Bornite & Cooperite$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_cassiterite)Cassiterite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_coal)Coal & Hematite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_copper)Copper & Chalcopyrite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_beryllium)Emerald & Beryllium$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_nickel)Garnierite & Cobaltite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_sapphire)Gold, Electrotine, & Bauxite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_hematite)Hematite & Limonite$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_hematite)Hematite & Limonite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_tantalite)Manganese & Tantalum$()$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(thing)Rarity$(): 210$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -16 — 100$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 50$(br2)$(thing)Stone Types$(): Argillite, Basalt, Chalk, Chert, Claystone, Conglomerate, Dacite, Diorite, Dolomite, Gabbro, Granite, Limestone, Red Granite, Shale, Trachyte", - "title": "(Placeholder Vein)", + "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_pitchblende)Pitchblende, Thorium, & Hematite$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)Pitchblende, Thorium, & Uraninite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_quartzite)Quartzite, Asbestos, & Barite$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_chromite)Redstone & Chromite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_salt)Salts & Spodumene$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_tungsten)Scheelite & Tungstate$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_galena)Silver, Galena, & Lead$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_lubricant)Soapstone, Talc, & Glauconite$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_nickel_galena)Sphalerite & Galena$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_sulfur)Sphalerite & Pyrite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_stibnite)Tetrahedrite (Normal)$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_tetrahedrite)Tetrahedrite (Surface)$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 280$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Size$(): 65$(br)$(thing)Height$(): 8$(br)$(thing)Indicator Max Depth$(): 15$(br2)$(thing)Stone Types$(): Argillite, Chert, Claystone, Diorite, Dolomite, Gabbro, Limestone, Red Granite, Shale, Trachyte", + "title": "Almandine & Sapphire", + "type": "patchouli:text", + "anchor": "mars_almandine" + }, + { + "Type": "patchouli:multiblock", + "name": "Almandine", + "multiblock": { + "mapping": { + "0": "#forge:ores/almandine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 36%$(br)$(thing)Source of$(): Aluminium, Iron$(br)$(thing)Formula$(): Al₂Fe₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pyrope", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrope" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 26%$(br)$(thing)Source of$(): Aluminium, Magnesium$(br)$(thing)Formula$(): Al₂Mg₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sapphire", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Aluminium$(br)$(thing)Formula$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Green Sapphire", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Aluminium$(br)$(thing)Formula$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 220$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Size$(): 45$(br)$(thing)Indicator Max Depth$(): 15$(br2)$(thing)Stone Types$(): Basalt, Chalk, Chert, Claystone, Conglomerate, Dacite, Limestone, Red Granite, Shale, Trachyte", + "title": "Apatite & Pyrochlore", + "type": "patchouli:text", + "anchor": "mars_apatite" + }, + { + "Type": "patchouli:multiblock", + "name": "Apatite", + "multiblock": { + "mapping": { + "0": "#forge:ores/apatite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 47%$(br)$(thing)Source of$(): Calcium, Phosphorus, Forestry PTSD$(br)$(thing)Formula$(): Ca₅(PO₄)₃Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Tricalcium Phosphate", + "multiblock": { + "mapping": { + "0": "#forge:ores/tricalcium_phosphate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 33%$(br)$(thing)Source of$(): Calcium, Phosphorus$(br)$(thing)Formula$(): Ca₃(PO₄)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pyrochlore", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrochlore" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 14%$(br)$(thing)Source of$(): Niobium$(br)$(thing)Formula$(): Ca₂Nb₂O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 4%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 215$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Size$(): 45$(br)$(thing)Indicator Max Depth$(): 15$(br2)$(thing)Stone Types$(): Argillite, Basalt, Chalk, Chert, Diorite, Dolomite, Gabbro, Trachyte", + "title": "Bastnasite & Monazite", + "type": "patchouli:text", + "anchor": "mars_neodynium" + }, + { + "Type": "patchouli:multiblock", + "name": "Bastnasite", + "multiblock": { + "mapping": { + "0": "#forge:ores/bastnasite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 58%$(br)$(thing)Source of$(): Cerium, Fluorine$(br)$(thing)Formula$(): CeCFO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Monazite", + "multiblock": { + "mapping": { + "0": "#forge:ores/monazite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 29%$(br)$(thing)Source of$(): Phosphorous, Rare Earth$(br)$(thing)Formula$(): ?(PO₄)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Neodymium", + "multiblock": { + "mapping": { + "0": "#forge:ores/neodymium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Source of$(): Neodymium$(br)$(thing)Formula$(): Nd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 140$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 80 — 180$(br)$(thing)Size$(): 45$(br)$(thing)Indicator Max Depth$(): 40$(br2)$(thing)Stone Types$(): Argillite, Basalt, Chalk, Chert, Claystone, Conglomerate, Dacite, Diorite, Dolomite, Gabbro, Granite, Limestone, Red Granite, Shale, Trachyte", + "title": "Bismuth", + "type": "patchouli:text", + "anchor": "surface_bismuthinite" + }, + { + "Type": "patchouli:multiblock", + "name": "Bismuth", + "multiblock": { + "mapping": { + "0": "#forge:ores/bismuth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 40%$(br)$(thing)Melts into$(): Bismuth$(br)$(thing)Formula$(): Bi", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sulfur", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Sulfur$(br)$(thing)Formula$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Gypsum", + "multiblock": { + "mapping": { + "0": "#forge:ores/gypsum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Used for$(): Alabaster (dyeable) bricks$(br)$(thing)Formula$(): CaS(H₂O)₂O₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 370$(br)$(thing)Density$(): 0.3$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -20 — 0$(br)$(thing)Size$(): 60$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Argillite, Basalt, Chalk, Chert, Conglomerate, Dacite, Diorite, Red Granite, Trachyte", + "title": "Bornite & Cooperite", + "type": "patchouli:text", + "anchor": "deep_mars_sheldonite" + }, + { + "Type": "patchouli:multiblock", + "name": "Bornite", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): Cu₅FeS₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cooperite", + "multiblock": { + "mapping": { + "0": "#forge:ores/cooperite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Platinum, Nickel, Palladium$(br)$(thing)Formula$(): Pt₃NiSPd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Nickel", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Melts into$(): Nickel$(br)$(thing)Formula$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Platinum", + "multiblock": { + "mapping": { + "0": "#forge:ores/platinum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Smelts into$(): Platinum$(br)$(thing)Formula$(): Pt", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 135$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 80 — 180$(br)$(thing)Size$(): 45$(br)$(thing)Indicator Max Depth$(): 40$(br2)$(thing)Stone Types$(): Argillite, Basalt, Chalk, Chert, Claystone, Conglomerate, Dacite, Diorite, Dolomite, Gabbro, Granite, Limestone, Red Granite, Shale, Trachyte", + "title": "Cassiterite", + "type": "patchouli:text", + "anchor": "surface_cassiterite" + }, + { + "Type": "patchouli:multiblock", + "name": "Cassiterite", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 55%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): SnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Tin", + "multiblock": { + "mapping": { + "0": "#forge:ores/tin" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): Sn", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Saltpeter", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 10%$(br)$(thing)Source of$(): Potassium, Nitrogen$(br)$(thing)Formula$(): KNO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 215$(br)$(thing)Density$(): 0.6$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Size$(): 55$(br)$(thing)Indicator Max Depth$(): 10$(br2)$(thing)Stone Types$(): Argillite, Basalt, Chalk, Claystone, Conglomerate, Dacite, Diorite, Dolomite, Granite, Red Granite, Trachyte", + "title": "Coal & Hematite", + "type": "patchouli:text", + "anchor": "mars_coal" + }, + { + "Type": "patchouli:multiblock", + "name": "Coal", + "multiblock": { + "mapping": { + "0": "#forge:ores/coal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 70%$(br)$(thing)Used for$(): Fuel, Distillation$(br)$(thing)Formula$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 30%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 220$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Size$(): 50$(br)$(thing)Indicator Max Depth$(): 40$(br2)$(thing)Stone Types$(): Argillite, Basalt, Claystone, Conglomerate, Dacite, Dolomite, Limestone, Shale, Trachyte", + "title": "Copper & Chalcopyrite", + "type": "patchouli:text", + "anchor": "mars_copper" + }, + { + "Type": "patchouli:multiblock", + "name": "Chalcopyrite", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcopyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 65%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): CuFeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Copper", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pyrite", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 10%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 350$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Pipe Vein$(br)$(thing)Y$(): -20 — 50$(br)$(thing)Height$(): 40$(br)$(thing)Radius$(): 8$(br)$(thing)Indicator Max Depth$(): 15$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Rhyolite", + "title": "Emerald & Beryllium", + "type": "patchouli:text", + "anchor": "mars_beryllium" + }, + { + "Type": "patchouli:multiblock", + "name": "Emerald", + "multiblock": { + "mapping": { + "0": "#forge:ores/emerald" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 50%$(br)$(thing)Used for$(): MV components, Item tag filters$(br)$(thing)Formula$(): Be₃Al₂Si₆O₁₈", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Beryllium", + "multiblock": { + "mapping": { + "0": "#forge:ores/beryllium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Beryllium$(br)$(thing)Formula$(): Be$(br)$(thing)Hazard$(): $(c)$(t:Requires Rubber Gloves)Berylliosis (Skin Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Realgar", + "multiblock": { + "mapping": { + "0": "#forge:ores/realgar" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Arsenic$(br)$(thing)Formula$(): As₄S₄$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Arsenicosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 250$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Size$(): 55$(br)$(thing)Indicator Max Depth$(): 40$(br2)$(thing)Stone Types$(): Argillite, Basalt, Chalk, Claystone, Dacite, Granite, Limestone, Red Granite, Shale", + "title": "Garnierite & Cobaltite", + "type": "patchouli:text", + "anchor": "mars_nickel" + }, + { + "Type": "patchouli:multiblock", + "name": "Garnierite", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnierite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Melts into$(): Nickel$(br)$(thing)Formula$(): NiO", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Nickel", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 28%$(br)$(thing)Melts into$(): Nickel$(br)$(thing)Formula$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cobaltite", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobaltite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 28%$(br)$(thing)Source of$(): Cobalt, Arsenic$(br)$(thing)Formula$(): CoAsS$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Arsenicosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 7%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 230$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 15$(br2)$(thing)Stone Types$(): Chalk, Chert, Claystone, Diorite, Gabbro, Granite, Shale", + "title": "Gold, Electrotine, & Bauxite", + "type": "patchouli:text", + "anchor": "mars_sapphire" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Gold", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 55%$(br)$(thing)Melts into$(): Gold$(br)$(thing)Formula$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Bauxite", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Aluminium$(br)$(thing)Formula$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Electrotine", + "multiblock": { + "mapping": { + "0": "#forge:ores/electrotine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Gold, Silver, Redstone$(br)$(thing)Formula$(): (Si(FeS₂)₅(CrAl₂O₃)Hg₃)(AgAu)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Green Sapphire", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Source of$(): Aluminium$(br)$(thing)Formula$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 210$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 30$(br2)$(thing)Stone Types$(): Argillite, Basalt, Claystone, Conglomerate, Dacite, Dolomite, Limestone, Red Granite", + "title": "Hematite & Limonite", "type": "patchouli:text", "anchor": "mars_hematite" }, @@ -41,8 +988,1316 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 100%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Fe₂O₃", + "text": "$(thing)Percentage$(): 50%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Fe₂O₃", "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Yellow Limonite", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 30%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Goethite", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Gold", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Gold$(br)$(thing)Formula$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 140$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 80 — 180$(br)$(thing)Size$(): 45$(br)$(thing)Indicator Max Depth$(): 40$(br2)$(thing)Stone Types$(): Argillite, Basalt, Chalk, Chert, Claystone, Conglomerate, Dacite, Diorite, Dolomite, Gabbro, Granite, Limestone, Red Granite, Shale, Trachyte", + "title": "Hematite & Limonite", + "type": "patchouli:text", + "anchor": "surface_hematite" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 55%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Yellow Limonite", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 33%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Gold", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Gold$(br)$(thing)Formula$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Calcite", + "multiblock": { + "mapping": { + "0": "#forge:ores/calcite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Source of$(): Calcium$(br)$(thing)Formula$(): CaCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 230$(br)$(thing)Density$(): 0.3$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Size$(): 42$(br)$(thing)Indicator Max Depth$(): 15$(br2)$(thing)Stone Types$(): Argillite, Basalt, Chalk, Chert, Claystone, Gabbro, Limestone, Red Granite, Shale, Trachyte", + "title": "Manganese & Tantalum", + "type": "patchouli:text", + "anchor": "mars_tantalite" + }, + { + "Type": "patchouli:multiblock", + "name": "Grossular", + "multiblock": { + "mapping": { + "0": "#forge:ores/grossular" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 37%$(br)$(thing)Source of$(): Calcium, Aluminium$(br)$(thing)Formula$(): Ca₃Al₂Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Spessartine", + "multiblock": { + "mapping": { + "0": "#forge:ores/spessartine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Manganese, Aluminium$(br)$(thing)Formula$(): Al₂Mn₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pyrolusite", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrolusite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Manganese$(br)$(thing)Formula$(): MnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Tantalite", + "multiblock": { + "mapping": { + "0": "#forge:ores/tantalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 12%$(br)$(thing)Source of$(): Manganese, Tantalum$(br)$(thing)Formula$(): MnTa₂O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 220$(br)$(thing)Density$(): 0.55$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Size$(): 20$(br)$(thing)Indicator Max Depth$(): 15$(br2)$(thing)Stone Types$(): Argillite, Conglomerate, Dacite, Diorite, Dolomite, Gabbro, Red Granite, Shale, Trachyte", + "title": "Pitchblende, Thorium, & Hematite", + "type": "patchouli:text", + "anchor": "mars_pitchblende" + }, + { + "Type": "patchouli:multiblock", + "name": "Pitchblende", + "multiblock": { + "mapping": { + "0": "#forge:ores/pitchblende" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 41%$(br)$(thing)Source of$(): Uranium, Thorium, Lead$(br)$(thing)Formula$(): (UO₂)₃ThPb$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Thorium", + "multiblock": { + "mapping": { + "0": "#forge:ores/thorium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 29%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): Th", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 29%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 370$(br)$(thing)Density$(): 0.3$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -20 — 0$(br)$(thing)Size$(): 60$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Argillite, Claystone, Dacite, Diorite, Gabbro, Shale, Trachyte", + "title": "Pitchblende, Thorium, & Uraninite", + "type": "patchouli:text", + "anchor": "deep_mars_pitchblende" + }, + { + "Type": "patchouli:multiblock", + "name": "Pitchblende", + "multiblock": { + "mapping": { + "0": "#forge:ores/pitchblende" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 52%$(br)$(thing)Source of$(): Uranium, Thorium, Lead$(br)$(thing)Formula$(): (UO₂)₃ThPb$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Thorium", + "multiblock": { + "mapping": { + "0": "#forge:ores/thorium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 26%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): Th", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Uraninite", + "multiblock": { + "mapping": { + "0": "#forge:ores/uraninite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 21%$(br)$(thing)Source of$(): Uranium$(br)$(thing)Formula$(): UO₂$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 210$(br)$(thing)Density$(): 0.3$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 15$(br2)$(thing)Stone Types$(): Argillite, Chalk, Chert, Claystone, Granite, Limestone, Red Granite, Shale, Trachyte", + "title": "Quartzite, Asbestos, & Barite", + "type": "patchouli:text", + "anchor": "mars_quartzite" + }, + { + "Type": "patchouli:multiblock", + "name": "Quartzite", + "multiblock": { + "mapping": { + "0": "#forge:ores/quartzite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 41%$(br)$(thing)Used for$(): LV components$(br)$(thing)Formula$(): SiO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Barite", + "multiblock": { + "mapping": { + "0": "#forge:ores/barite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Barium$(br)$(thing)Formula$(): BaSO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Asbestos", + "multiblock": { + "mapping": { + "0": "#forge:ores/asbestos" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 17%$(br)$(thing)Source of$(): Magnesium, Lung cancer$(br)$(thing)Formula$(): Mg₃Si₂H₄O₉$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Asbestosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 370$(br)$(thing)Density$(): 0.3$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -20 — 0$(br)$(thing)Size$(): 60$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Argillite, Basalt, Chalk, Chert, Claystone, Dacite, Limestone, Shale", + "title": "Redstone & Chromite", + "type": "patchouli:text", + "anchor": "deep_mars_chromite" + }, + { + "Type": "patchouli:multiblock", + "name": "Redstone", + "multiblock": { + "mapping": { + "0": "#forge:ores/redstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 45%$(br)$(thing)Melts into$(): Redstone$(br)$(thing)Formula$(): Si(FeS₂)₅(CrAl₂O₃)Hg₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Ruby", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Chromium, Aluminium$(br)$(thing)Formula$(): CrAl₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Chromite", + "multiblock": { + "mapping": { + "0": "#forge:ores/chromite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Chromium$(br)$(thing)Formula$(): FeCr₂O₄$(br)$(thing)Hazard$(): $(c)$(t:Requires Rubber Gloves)Irritant (Skin Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 210$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Size$(): 40$(br)$(thing)Height$(): 6$(br)$(thing)Indicator Max Depth$(): 15$(br2)$(thing)Stone Types$(): Argillite, Chalk, Chert, Claystone, Diorite, Granite, Limestone, Red Granite, Trachyte", + "title": "Salts & Spodumene", + "type": "patchouli:text", + "anchor": "mars_salt" + }, + { + "Type": "patchouli:multiblock", + "name": "Spodumene", + "multiblock": { + "mapping": { + "0": "#forge:ores/spodumene" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Lithium, Aluminium$(br)$(thing)Formula$(): LiAlSi₂O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Salt", + "multiblock": { + "mapping": { + "0": "#forge:ores/salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 30%$(br)$(thing)Source of$(): Sodium, Chlorine$(br)$(thing)Formula$(): NaCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Rock Salt", + "multiblock": { + "mapping": { + "0": "#forge:ores/rock_salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Potassium, Chlorine$(br)$(thing)Formula$(): KCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Lepidolite", + "multiblock": { + "mapping": { + "0": "#forge:ores/lepidolite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Potassium, Lithium, Aluminium, Fluorine$(br)$(thing)Formula$(): KLi₃Al₄F₂O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 280$(br)$(thing)Density$(): 0.45$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Size$(): 50$(br)$(thing)Indicator Max Depth$(): 15$(br2)$(thing)Stone Types$(): Basalt, Chalk, Chert, Claystone, Dolomite, Limestone, Red Granite, Shale", + "title": "Scheelite & Tungstate", + "type": "patchouli:text", + "anchor": "mars_tungsten" + }, + { + "Type": "patchouli:multiblock", + "name": "Scheelite", + "multiblock": { + "mapping": { + "0": "#forge:ores/scheelite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 42%$(br)$(thing)Source of$(): Tungsten$(br)$(thing)Formula$(): Ca(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Tungstate", + "multiblock": { + "mapping": { + "0": "#forge:ores/tungstate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 33%$(br)$(thing)Source of$(): Tungsten, Lithium$(br)$(thing)Formula$(): Li₂(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Lithium", + "multiblock": { + "mapping": { + "0": "#forge:ores/lithium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 19%$(br)$(thing)Source of$(): Lithium$(br)$(thing)Formula$(): Li", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 4%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 215$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Size$(): 50$(br)$(thing)Indicator Max Depth$(): 40$(br2)$(thing)Stone Types$(): Argillite, Basalt, Chalk, Chert, Claystone, Dacite, Gabbro, Granite, Red Granite, Shale", + "title": "Silver, Galena, & Lead", + "type": "patchouli:text", + "anchor": "mars_galena" + }, + { + "Type": "patchouli:multiblock", + "name": "Galena", + "multiblock": { + "mapping": { + "0": "#forge:ores/galena" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 40%$(br)$(thing)Smelts into$(): Lead$(br)$(thing)Formula$(): PbS$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Lead", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 33%$(br)$(thing)Smelts into$(): Lead$(br)$(thing)Formula$(): Pb$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Silver", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Melts into$(): Silver$(br)$(thing)Formula$(): Ag", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 6%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 220$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Size$(): 30$(br)$(thing)Indicator Max Depth$(): 15$(br2)$(thing)Stone Types$(): Argillite, Claystone, Conglomerate, Dacite, Diorite, Dolomite, Granite, Limestone, Red Granite, Shale", + "title": "Soapstone, Talc, & Glauconite", + "type": "patchouli:text", + "anchor": "mars_lubricant" + }, + { + "Type": "patchouli:multiblock", + "name": "Soapstone", + "multiblock": { + "mapping": { + "0": "#forge:ores/soapstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 31%$(br)$(thing)Source of$(): Magnesium$(br)$(thing)Formula$(): Mg₃Si₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Glauconite Sand", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 26%$(br)$(thing)Source of$(): Magnesium, Aluminium$(br)$(thing)Formula$(): KMg₂Al₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Talc", + "multiblock": { + "mapping": { + "0": "#forge:ores/talc" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 21%$(br)$(thing)Source of$(): Magnesium$(br)$(thing)Formula$(): Mg₃Si₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pentlandite", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Nickel$(br)$(thing)Formula$(): Ni₉S₈", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 150$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 80 — 180$(br)$(thing)Size$(): 45$(br)$(thing)Indicator Max Depth$(): 40$(br2)$(thing)Stone Types$(): Argillite, Basalt, Chalk, Chert, Claystone, Conglomerate, Dacite, Diorite, Dolomite, Gabbro, Granite, Limestone, Red Granite, Shale, Trachyte", + "title": "Sphalerite & Galena", + "type": "patchouli:text", + "anchor": "surface_nickel_galena" + }, + { + "Type": "patchouli:multiblock", + "name": "Galena", + "multiblock": { + "mapping": { + "0": "#forge:ores/galena" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Smelts into$(): Lead$(br)$(thing)Formula$(): PbS$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Nickel", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 23%$(br)$(thing)Melts into$(): Nickel$(br)$(thing)Formula$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sphalerite", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 17%$(br)$(thing)Melts into$(): Zinc$(br)$(thing)Formula$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Silver", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 11%$(br)$(thing)Melts into$(): Silver$(br)$(thing)Formula$(): Ag", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cobaltite", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobaltite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 11%$(br)$(thing)Source of$(): Cobalt, Arsenic$(br)$(thing)Formula$(): CoAsS$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Arsenicosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 215$(br)$(thing)Density$(): 0.2$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Size$(): 45$(br)$(thing)Indicator Max Depth$(): 30$(br2)$(thing)Stone Types$(): Argillite, Basalt, Chalk, Chert, Dacite, Diorite, Gabbro, Granite, Trachyte", + "title": "Sphalerite & Pyrite", + "type": "patchouli:text", + "anchor": "mars_sulfur" + }, + { + "Type": "patchouli:multiblock", + "name": "Pyrite", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 42%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sphalerite", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 23%$(br)$(thing)Melts into$(): Zinc$(br)$(thing)Formula$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 19%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sulfur", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 14%$(br)$(thing)Source of$(): Sulfur$(br)$(thing)Formula$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 210$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 40$(br2)$(thing)Stone Types$(): Argillite, Basalt, Chalk, Chert, Dacite, Diorite, Dolomite, Gabbro, Red Granite, Shale, Trachyte", + "title": "Tetrahedrite (Normal)", + "type": "patchouli:text", + "anchor": "mars_stibnite" + }, + { + "Type": "patchouli:multiblock", + "name": "Tetrahedrite", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 47%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Copper", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 28%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Stibnite", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 19%$(br)$(thing)Smelts into$(): Antimony$(br)$(thing)Formula$(): Sb₂S₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 4%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 140$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 80 — 180$(br)$(thing)Size$(): 45$(br)$(thing)Indicator Max Depth$(): 40$(br2)$(thing)Stone Types$(): Argillite, Basalt, Chalk, Chert, Claystone, Conglomerate, Dacite, Diorite, Dolomite, Gabbro, Granite, Limestone, Red Granite, Shale, Trachyte", + "title": "Tetrahedrite (Surface)", + "type": "patchouli:text", + "anchor": "surface_tetrahedrite" + }, + { + "Type": "patchouli:multiblock", + "name": "Tetrahedrite", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 57%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Copper", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 19%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Stibnite", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 19%$(br)$(thing)Smelts into$(): Antimony$(br)$(thing)Formula$(): Sb₂S₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Redstone", + "multiblock": { + "mapping": { + "0": "#forge:ores/redstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 4%$(br)$(thing)Melts into$(): Redstone$(br)$(thing)Formula$(): Si(FeS₂)₅(CrAl₂O₃)Hg₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" } ], "sortnum": 7 diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/earth_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/earth_ore_index.json index 88ba2dfe7..74fc7f74b 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/earth_ore_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/earth_ore_index.json @@ -19,7 +19,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)Bentonita: $(l:tfg_ores/earth_vein_index#normal_olivine)35%$(/l)$()$(li)Berílio: $(l:tfg_ores/earth_vein_index#normal_beryllium)35%$(/l)$()$(li)Bismuto: $(l:tfg_ores/earth_vein_index#surface_bismuthinite)90%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)80%$(/l)$()$(li)Bórax: $(l:tfg_ores/earth_vein_index#normal_gypsum)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l)$()$(li)Bornita: $(l:tfg_ores/earth_vein_index#deep_sheldonite)53%$(/l), $(l:tfg_ores/earth_vein_index#deep_topaz)15%$(/l)$()$(li)Calcita: $(l:tfg_ores/earth_vein_index#normal_gypsum)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_lapis)15%$(/l)$()$(li)Calcocita: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)Calcopirita: $(l:tfg_ores/earth_vein_index#surface_copper)61%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)20%$(/l)$()$(li)Carvão: $(l:tfg_ores/earth_vein_index#normal_coal)100%$(/l), $(l:tfg_ores/earth_vein_index#normal_graphite)30%$(/l)$()$(li)Cassiterita: $(l:tfg_ores/earth_vein_index#surface_cassiterite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_cassiterite)40%$(/l), $(l:tfg_ores/earth_vein_index#surface_copper)5%$(/l)$()$(li)Chumbo: $(l:tfg_ores/earth_vein_index#normal_silver)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)11%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)7%$(/l)$()$(li)Cianita: $(l:tfg_ores/earth_vein_index#normal_mica)35%$(/l)$()$(li)Cinábrio: $(l:tfg_ores/earth_vein_index#normal_redstone)20%$(/l)$()$(li)Cobaltita: $(l:tfg_ores/earth_vein_index#normal_garnierite)20%$(/l)$()", + "text": "$(li)Bentonita: $(l:tfg_ores/earth_vein_index#normal_olivine)35%$(/l)$()$(li)Berílio: $(l:tfg_ores/earth_vein_index#normal_beryllium)35%$(/l)$()$(li)Bismuto: $(l:tfg_ores/earth_vein_index#surface_bismuthinite)85%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)80%$(/l)$()$(li)Bórax: $(l:tfg_ores/earth_vein_index#normal_gypsum)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l)$()$(li)Bornita: $(l:tfg_ores/earth_vein_index#deep_sheldonite)53%$(/l), $(l:tfg_ores/earth_vein_index#deep_topaz)15%$(/l)$()$(li)Calcita: $(l:tfg_ores/earth_vein_index#normal_gypsum)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_lapis)15%$(/l)$()$(li)Calcocita: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)Calcopirita: $(l:tfg_ores/earth_vein_index#surface_copper)61%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)20%$(/l)$()$(li)Carvão: $(l:tfg_ores/earth_vein_index#normal_coal)100%$(/l), $(l:tfg_ores/earth_vein_index#normal_graphite)30%$(/l)$()$(li)Cassiterita: $(l:tfg_ores/earth_vein_index#surface_cassiterite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_cassiterite)40%$(/l), $(l:tfg_ores/earth_vein_index#surface_copper)5%$(/l)$()$(li)Chumbo: $(l:tfg_ores/earth_vein_index#normal_silver)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)11%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)7%$(/l)$()$(li)Cianita: $(l:tfg_ores/earth_vein_index#normal_mica)35%$(/l)$()$(li)Cinábrio: $(l:tfg_ores/earth_vein_index#normal_redstone)20%$(/l)$()$(li)Cobaltita: $(l:tfg_ores/earth_vein_index#normal_garnierite)20%$(/l)$()", "type": "patchouli:text" }, { @@ -34,12 +34,12 @@ }, { "Type": "patchouli:text", - "text": "$(li)Lítio: $(l:tfg_ores/earth_vein_index#deep_scheelite)20%$(/l)$()$(li)Magnesita: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/l)$()$(li)Magnetita: $(l:tfg_ores/earth_vein_index#normal_magnetite)63%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/l)$()$(li)Magnetita de Vanádio: $(l:tfg_ores/earth_vein_index#normal_magnetite)22%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)25%$(/l)$()$(li)Malaquita: $(l:tfg_ores/earth_vein_index#deep_limonite)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)15%$(/l)$()$(li)Mica: $(l:tfg_ores/earth_vein_index#normal_mica)25%$(/l)$()$(li)Molibdenita: $(l:tfg_ores/earth_vein_index#deep_molybdenum)35%$(/l)$()$(li)Monazita: $(l:tfg_ores/earth_vein_index#normal_monazite)31%$(/l)$()$(li)Neodímio: $(l:tfg_ores/earth_vein_index#normal_monazite)6%$(/l)$()$(li)Níquel: $(l:tfg_ores/earth_vein_index#normal_garnierite)10%$(/l)$()$(li)Olivina: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/l)$()$(li)Opala: $(l:tfg_ores/earth_vein_index#deep_garnet_opal)55%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)15%$(/l)$()$(li)Ouro Nativo: $(l:tfg_ores/earth_vein_index#deep_gold)75%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)55%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_magnetite)9%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)5%$(/l), $(l:tfg_ores/earth_vein_index#normal_hematite)5%$(/l)$()$(li)Pechblenda: $(l:tfg_ores/earth_vein_index#deep_pitchblende)50%$(/l)$()", + "text": "$(li)Lítio: $(l:tfg_ores/earth_vein_index#deep_scheelite)20%$(/l)$()$(li)Magnesita: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/l)$()$(li)Magnetita: $(l:tfg_ores/earth_vein_index#normal_magnetite)63%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/l)$()$(li)Magnetita de Vanádio: $(l:tfg_ores/earth_vein_index#normal_magnetite)22%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)25%$(/l)$()$(li)Malaquita: $(l:tfg_ores/earth_vein_index#deep_limonite)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)15%$(/l)$()$(li)Mica: $(l:tfg_ores/earth_vein_index#normal_mica)25%$(/l)$()$(li)Molibdenita: $(l:tfg_ores/earth_vein_index#deep_molybdenum)35%$(/l)$()$(li)Monazita: $(l:tfg_ores/earth_vein_index#normal_monazite)31%$(/l)$()$(li)Neodímio: $(l:tfg_ores/earth_vein_index#normal_monazite)6%$(/l)$()$(li)Níquel: $(l:tfg_ores/earth_vein_index#normal_garnierite)10%$(/l)$()$(li)Olivina: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/l)$()$(li)Opala: $(l:tfg_ores/earth_vein_index#deep_garnet_opal)55%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)15%$(/l)$()$(li)Ouro Nativo: $(l:tfg_ores/earth_vein_index#deep_gold)75%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)55%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_magnetite)9%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)5%$(/l), $(l:tfg_ores/earth_vein_index#normal_hematite)5%$(/l)$()$(li)Pechblenda: $(l:tfg_ores/earth_vein_index#deep_pitchblende)62%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)Pedra-sabão: $(l:tfg_ores/earth_vein_index#normal_lubricant)30%$(/l)$()$(li)Pentlandita: $(l:tfg_ores/earth_vein_index#normal_garnierite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_lubricant)15%$(/l)$()$(li)Pirita: $(l:tfg_ores/earth_vein_index#normal_sulfur)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_sphalerite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_sphalerite)5%$(/l)$()$(li)Pirocloro: $(l:tfg_ores/earth_vein_index#normal_apatite)15%$(/l)$()$(li)Pirolusita: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()$(li)Piropo: $(l:tfg_ores/earth_vein_index#deep_sapphire)27%$(/l)$()$(li)Platina: $(l:tfg_ores/earth_vein_index#deep_sheldonite)7%$(/l)$()$(li)Polucita: $(l:tfg_ores/earth_vein_index#normal_mica)15%$(/l)$()$(li)Powellita: $(l:tfg_ores/earth_vein_index#deep_molybdenum)17%$(/l)$()$(li)Prata Nativa: $(l:tfg_ores/earth_vein_index#normal_silver)15%$(/l)$()$(li)Quartzito: $(l:tfg_ores/earth_vein_index#normal_quartz)43%$(/l)$()$(li)Realgar: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()$(li)Redstone: $(l:tfg_ores/earth_vein_index#normal_redstone)45%$(/l)$()$(li)Rubi: $(l:tfg_ores/earth_vein_index#normal_redstone)35%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)20%$(/l)$()", + "text": "$(li)Pedra-sabão: $(l:tfg_ores/earth_vein_index#normal_lubricant)30%$(/l)$()$(li)Pentlandita: $(l:tfg_ores/earth_vein_index#normal_garnierite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_lubricant)15%$(/l)$()$(li)Pirita: $(l:tfg_ores/earth_vein_index#normal_sulfur)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_sphalerite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_sphalerite)5%$(/l)$()$(li)Pirocloro: $(l:tfg_ores/earth_vein_index#normal_apatite)15%$(/l)$()$(li)Pirolusita: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()$(li)Piropo: $(l:tfg_ores/earth_vein_index#deep_sapphire)27%$(/l)$()$(li)Platina: $(l:tfg_ores/earth_vein_index#deep_sheldonite)7%$(/l)$()$(li)Polucita: $(l:tfg_ores/earth_vein_index#normal_mica)15%$(/l)$()$(li)Powellita: $(l:tfg_ores/earth_vein_index#deep_molybdenum)17%$(/l)$()$(li)Prata Nativa: $(l:tfg_ores/earth_vein_index#normal_silver)15%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)5%$(/l)$()$(li)Quartzito: $(l:tfg_ores/earth_vein_index#normal_quartz)43%$(/l)$()$(li)Realgar: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()$(li)Redstone: $(l:tfg_ores/earth_vein_index#normal_redstone)45%$(/l)$()$(li)Rubi: $(l:tfg_ores/earth_vein_index#normal_redstone)35%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)20%$(/l)$()", "type": "patchouli:text" }, { @@ -49,7 +49,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)Trona: $(l:tfg_ores/earth_vein_index#normal_lubricant)10%$(/l)$()$(li)Tungstato: $(l:tfg_ores/earth_vein_index#deep_scheelite)35%$(/l)$()$(li)Uraninita: $(l:tfg_ores/earth_vein_index#deep_pitchblende)50%$(/l)$()$(li)Wulfenita: $(l:tfg_ores/earth_vein_index#deep_molybdenum)47%$(/l)$()$(li)Zeólita: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()", + "text": "$(li)Trona: $(l:tfg_ores/earth_vein_index#normal_lubricant)10%$(/l)$()$(li)Tungstato: $(l:tfg_ores/earth_vein_index#deep_scheelite)35%$(/l)$()$(li)Uraninita: $(l:tfg_ores/earth_vein_index#deep_pitchblende)25%$(/l)$()$(li)Wulfenita: $(l:tfg_ores/earth_vein_index#deep_molybdenum)47%$(/l), $(l:tfg_ores/earth_vein_index#deep_pitchblende)12%$(/l)$()$(li)Zeólita: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()", "type": "patchouli:text" } ], 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 f1d4c2eb5..8a7631562 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 @@ -565,7 +565,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 90%$(br)$(thing)Derrete em$(): Bismuto$(br)$(thing)Fórmula$(): Bi", + "text": "$(thing)Porcentagem$(): 85%$(br)$(thing)Derrete em$(): Bismuto$(br)$(thing)Fórmula$(): Bi", "type": "patchouli:multiblock" }, { @@ -588,6 +588,26 @@ "text": "$(thing)Porcentagem$(): 7%$(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": "Prata Nativa", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Derrete em$(): Prata$(br)$(thing)Fórmula$(): Ag", + "type": "patchouli:multiblock" + }, { "Type": "patchouli:multiblock", "name": "Enxofre", @@ -608,6 +628,11 @@ "text": "$(thing)Porcentagem$(): 3%$(br)$(thing)Fonte de$(): Enxofre$(br)$(thing)Fórmula$(): S", "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$(): Andesito, Basalto, Dacito, Riolito", @@ -3721,7 +3746,7 @@ }, { "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$(): Ardósia, Diorito, Filito, Gabro, Gnaisse, Granito, Mármore, Quartzito, Xisto", + "text": "$(thing)Raridade$(): 240$(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" @@ -3743,7 +3768,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 50%$(br)$(thing)Fonte de$(): Urânio, Tório, Chumbo$(br)$(thing)Fórmula$(): (UO₂)₃ThPb$(br)$(thing)Perigo$(): $(c)$(t:Requer Proteção Completa)Carcinogênico (Qualquer Contato)$(/t)$()", + "text": "$(thing)Porcentagem$(): 62%$(br)$(thing)Fonte de$(): Urânio, Tório, Chumbo$(br)$(thing)Fórmula$(): (UO₂)₃ThPb$(br)$(thing)Perigo$(): $(c)$(t:Requer Proteção Completa)Carcinogênico (Qualquer Contato)$(/t)$()", "type": "patchouli:multiblock" }, { @@ -3763,13 +3788,28 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 50%$(br)$(thing)Fonte de$(): Urânio$(br)$(thing)Fórmula$(): UO₂$(br)$(thing)Perigo$(): $(c)$(t:Requer Proteção Completa)Carcinogênico (Qualquer Contato)$(/t)$()", + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Urânio$(br)$(thing)Fórmula$(): UO₂$(br)$(thing)Perigo$(): $(c)$(t:Requer Proteção Completa)Carcinogênico (Qualquer Contato)$(/t)$()", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "Type": "patchouli:multiblock", + "name": "Wulfenita", + "multiblock": { + "mapping": { + "0": "#forge:ores/wulfenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 12%$(br)$(thing)Fonte de$(): Chumbo, Molibdênio$(br)$(thing)Fórmula$(): PbMoO₄", + "type": "patchouli:multiblock" }, { "Type": "patchouli:text", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/mars_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/mars_ore_index.json index 96566acf8..efc273b52 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/mars_ore_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/mars_ore_index.json @@ -14,7 +14,27 @@ }, { "Type": "patchouli:text", - "text": "$(li)Hematita: $(l:tfg_ores/mars_vein_index#mars_hematite)100%$(/l)$()", + "text": "$(li)Almandina: $(l:tfg_ores/mars_vein_index#mars_almandine)36%$(/l)$()$(li)Amianto: $(l:tfg_ores/mars_vein_index#mars_quartzite)17%$(/l)$()$(li)Apatita: $(l:tfg_ores/mars_vein_index#mars_apatite)47%$(/l)$()$(li)Areia Glauconita: $(l:tfg_ores/mars_vein_index#mars_lubricant)26%$(/l)$()$(li)Barita: $(l:tfg_ores/mars_vein_index#mars_quartzite)35%$(/l)$()$(li)Bastnasita: $(l:tfg_ores/mars_vein_index#mars_neodynium)58%$(/l)$()$(li)Bauxita: $(l:tfg_ores/mars_vein_index#mars_sapphire)20%$(/l)$()$(li)Berílio: $(l:tfg_ores/mars_vein_index#mars_beryllium)35%$(/l)$()$(li)Bismuto: $(l:tfg_ores/mars_vein_index#surface_bismuthinite)40%$(/l)$()$(li)Bornita: $(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)35%$(/l)$()$(li)Calcita: $(l:tfg_ores/mars_vein_index#surface_hematite)5%$(/l)$()$(li)Calcopirita: $(l:tfg_ores/mars_vein_index#mars_copper)65%$(/l)$()$(li)Carvão: $(l:tfg_ores/mars_vein_index#mars_coal)70%$(/l)$()$(li)Cassiterita: $(l:tfg_ores/mars_vein_index#surface_cassiterite)55%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Chumbo: $(l:tfg_ores/mars_vein_index#mars_galena)33%$(/l)$()$(li)Cobaltita: $(l:tfg_ores/mars_vein_index#mars_nickel)28%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)11%$(/l)$()$(li)Cobre Nativo: $(l:tfg_ores/mars_vein_index#mars_stibnite)28%$(/l), $(l:tfg_ores/mars_vein_index#mars_copper)20%$(/l), $(l:tfg_ores/mars_vein_index#surface_tetrahedrite)19%$(/l)$()$(li)Cooperita: $(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)25%$(/l)$()$(li)Cromita: $(l:tfg_ores/mars_vein_index#deep_mars_chromite)20%$(/l)$()$(li)Eletrotina: $(l:tfg_ores/mars_vein_index#mars_sapphire)20%$(/l)$()$(li)Enxofre: $(l:tfg_ores/mars_vein_index#mars_sulfur)14%$(/l), $(l:tfg_ores/mars_vein_index#surface_bismuthinite)20%$(/l)$()$(li)Esfalerita: $(l:tfg_ores/mars_vein_index#mars_sulfur)23%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)17%$(/l)$()$(li)Esmeralda: $(l:tfg_ores/mars_vein_index#mars_beryllium)50%$(/l)$()$(li)Espessartita: $(l:tfg_ores/mars_vein_index#mars_tantalite)25%$(/l)$()$(li)Espodumena: $(l:tfg_ores/mars_vein_index#mars_salt)35%$(/l)$()$(li)Estanho: $(l:tfg_ores/mars_vein_index#surface_cassiterite)35%$(/l)$()$(li)Estibnita: $(l:tfg_ores/mars_vein_index#mars_stibnite)19%$(/l), $(l:tfg_ores/mars_vein_index#surface_tetrahedrite)19%$(/l)$()$(li)Fosfato Tricálcico: $(l:tfg_ores/mars_vein_index#mars_apatite)33%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Galena: $(l:tfg_ores/mars_vein_index#mars_galena)40%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)35%$(/l)$()$(li)Garnierita: $(l:tfg_ores/mars_vein_index#mars_nickel)35%$(/l)$()$(li)Gipsita: $(l:tfg_ores/mars_vein_index#surface_bismuthinite)20%$(/l)$()$(li)Glossulária: $(l:tfg_ores/mars_vein_index#mars_tantalite)37%$(/l)$()$(li)Goethita: $(l:tfg_ores/mars_vein_index#mars_hematite)15%$(/l)$()$(li)Hematita: $(l:tfg_ores/mars_vein_index#mars_hematite)50%$(/l), $(l:tfg_ores/mars_vein_index#surface_hematite)55%$(/l), $(l:tfg_ores/mars_vein_index#mars_coal)30%$(/l), $(l:tfg_ores/mars_vein_index#mars_pitchblende)29%$(/l), $(l:tfg_ores/mars_vein_index#mars_sulfur)19%$(/l), $(l:tfg_ores/mars_vein_index#surface_bismuthinite)20%$(/l), $(l:tfg_ores/mars_vein_index#mars_almandine)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_apatite)4%$(/l), $(l:tfg_ores/mars_vein_index#mars_copper)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_galena)6%$(/l), $(l:tfg_ores/mars_vein_index#mars_lubricant)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_neodynium)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_nickel)7%$(/l), $(l:tfg_ores/mars_vein_index#mars_quartzite)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_stibnite)4%$(/l), $(l:tfg_ores/mars_vein_index#mars_tungsten)4%$(/l)$()$(li)Lepidorita: $(l:tfg_ores/mars_vein_index#mars_salt)15%$(/l)$()$(li)Limonita Amarela: $(l:tfg_ores/mars_vein_index#mars_hematite)30%$(/l), $(l:tfg_ores/mars_vein_index#surface_hematite)33%$(/l)$()$(li)Lítio: $(l:tfg_ores/mars_vein_index#mars_tungsten)19%$(/l)$()$(li)Monazita: $(l:tfg_ores/mars_vein_index#mars_neodynium)29%$(/l)$()$(li)Neodímio: $(l:tfg_ores/mars_vein_index#mars_neodynium)5%$(/l)$()$(li)Níquel: $(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)25%$(/l), $(l:tfg_ores/mars_vein_index#mars_nickel)28%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)23%$(/l)$()$(li)Ouro Nativo: $(l:tfg_ores/mars_vein_index#mars_sapphire)55%$(/l), $(l:tfg_ores/mars_vein_index#mars_hematite)5%$(/l), $(l:tfg_ores/mars_vein_index#surface_hematite)5%$(/l)$()$(li)Pechblenda: $(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)52%$(/l), $(l:tfg_ores/mars_vein_index#mars_pitchblende)41%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Pedra-sabão: $(l:tfg_ores/mars_vein_index#mars_lubricant)31%$(/l)$()$(li)Pentlandita: $(l:tfg_ores/mars_vein_index#mars_lubricant)15%$(/l)$()$(li)Pirita: $(l:tfg_ores/mars_vein_index#mars_sulfur)42%$(/l), $(l:tfg_ores/mars_vein_index#mars_copper)10%$(/l)$()$(li)Pirocloro: $(l:tfg_ores/mars_vein_index#mars_apatite)14%$(/l)$()$(li)Pirolusita: $(l:tfg_ores/mars_vein_index#mars_tantalite)25%$(/l)$()$(li)Piropo: $(l:tfg_ores/mars_vein_index#mars_almandine)26%$(/l)$()$(li)Platina: $(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)15%$(/l)$()$(li)Prata Nativa: $(l:tfg_ores/mars_vein_index#mars_galena)20%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)11%$(/l)$()$(li)Quartzito: $(l:tfg_ores/mars_vein_index#mars_quartzite)41%$(/l)$()$(li)Realgar: $(l:tfg_ores/mars_vein_index#mars_beryllium)15%$(/l)$()$(li)Redstone: $(l:tfg_ores/mars_vein_index#deep_mars_chromite)45%$(/l), $(l:tfg_ores/mars_vein_index#surface_tetrahedrite)4%$(/l)$()$(li)Rubi: $(l:tfg_ores/mars_vein_index#deep_mars_chromite)35%$(/l)$()$(li)Safira: $(l:tfg_ores/mars_vein_index#mars_almandine)15%$(/l)$()$(li)Safira Verde: $(l:tfg_ores/mars_vein_index#mars_almandine)15%$(/l), $(l:tfg_ores/mars_vein_index#mars_sapphire)5%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Sal: $(l:tfg_ores/mars_vein_index#mars_salt)30%$(/l)$()$(li)Sal-gema: $(l:tfg_ores/mars_vein_index#mars_salt)20%$(/l)$()$(li)Salitre: $(l:tfg_ores/mars_vein_index#surface_cassiterite)10%$(/l)$()$(li)Sheelita: $(l:tfg_ores/mars_vein_index#mars_tungsten)42%$(/l)$()$(li)Talco: $(l:tfg_ores/mars_vein_index#mars_lubricant)21%$(/l)$()$(li)Tantalita: $(l:tfg_ores/mars_vein_index#mars_tantalite)12%$(/l)$()$(li)Tetraedrita: $(l:tfg_ores/mars_vein_index#surface_tetrahedrite)57%$(/l), $(l:tfg_ores/mars_vein_index#mars_stibnite)47%$(/l)$()$(li)Tório: $(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)26%$(/l), $(l:tfg_ores/mars_vein_index#mars_pitchblende)29%$(/l)$()$(li)Tungstato: $(l:tfg_ores/mars_vein_index#mars_tungsten)33%$(/l)$()$(li)Uraninita: $(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)21%$(/l)$()", "type": "patchouli:text" } ], diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/mars_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/mars_vein_index.json index 342df1e59..04691e856 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/mars_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/mars_vein_index.json @@ -14,13 +14,1052 @@ }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_hematite)(Placeholder Vein)$()$()", + "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_almandine)Almandine & Sapphire$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_apatite)Apatita e Pirocloro$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_neodynium)Bastnasita e Monazita$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_bismuthinite)Bismuto$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)Bornite & Cooperite$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_cassiterite)Cassiterita$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_coal)Coal & Hematite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_copper)Cobre e Calcopirita$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_sulfur)Esfalerita e Pirita$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_beryllium)Esmeralda e Berílio$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_nickel)Garnierita e Cobaltita$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_sapphire)Gold, Electrotine, & Bauxite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_hematite)Hematita e Limonita$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_hematite)Hematita e Limonita$()$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 210$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -16 — 100$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 50$(br2)$(thing)Tipos de Pedra$(): Argilita, Argilito, Basalto, Calcário, Cherte, Conglomerado, Dacito, Diorito, Dolomito, Folhelho, Gabro, Giz, Granito, Red Granite, Traquito", - "title": "(Placeholder Vein)", + "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_tantalite)Manganês e Tântalo$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_pitchblende)Pitchblende, Thorium, & Hematite$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)Pitchblende, Thorium, & Uraninite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_galena)Prata, Galena e Chumbo$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_quartzite)Quartzite, Asbestos, & Barite$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_chromite)Redstone & Chromite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_salt)Salts & Spodumene$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_tungsten)Sheelita e Tungstato$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_lubricant)Soapstone, Talc, & Glauconite$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_nickel_galena)Sphalerite & Galena$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_stibnite)Tetraedrita (Normal)$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_tetrahedrite)Tetraedrita (Superfície)$()$()", + "type": "patchouli:text" + }, + { + "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 — 70$(br)$(thing)Tamanho$(): 65$(br)$(thing)Altura$(): 8$(br)$(thing)Profundidade Máxima do Indicador$(): 15$(br2)$(thing)Tipos de Pedra$(): Argilita, Argilito, Calcário, Cherte, Diorito, Dolomito, Folhelho, Gabro, Red Granite, Traquito", + "title": "Almandine & Sapphire", + "type": "patchouli:text", + "anchor": "mars_almandine" + }, + { + "Type": "patchouli:multiblock", + "name": "Almandina", + "multiblock": { + "mapping": { + "0": "#forge:ores/almandine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 36%$(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$(): 26%$(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$(): 15%$(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$(): 15%$(br)$(thing)Fonte de$(): Aluminium$(br)$(thing)Fórmula$(): Al₂O₃", + "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:text", + "text": "$(thing)Raridade$(): 220$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 45$(br)$(thing)Profundidade Máxima do Indicador$(): 15$(br2)$(thing)Tipos de Pedra$(): Argilito, Basalto, Calcário, Cherte, Conglomerado, Dacito, Folhelho, Giz, Red Granite, Traquito", + "title": "Apatita e Pirocloro", + "type": "patchouli:text", + "anchor": "mars_apatite" + }, + { + "Type": "patchouli:multiblock", + "name": "Apatita", + "multiblock": { + "mapping": { + "0": "#forge:ores/apatite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 47%$(br)$(thing)Fonte de$(): Cálcio, Fósforo, TEPT Florestal$(br)$(thing)Fórmula$(): Ca₅(PO₄)₃Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Fosfato Tricálcico", + "multiblock": { + "mapping": { + "0": "#forge:ores/tricalcium_phosphate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 33%$(br)$(thing)Fonte de$(): Cálcio, Fósforo$(br)$(thing)Fórmula$(): Ca₃(PO₄)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pirocloro", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrochlore" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 14%$(br)$(thing)Fonte de$(): Nióbio$(br)$(thing)Fórmula$(): Ca₂Nb₂O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematita", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 4%$(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$(): 215$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 45$(br)$(thing)Profundidade Máxima do Indicador$(): 15$(br2)$(thing)Tipos de Pedra$(): Argilita, Basalto, Cherte, Diorito, Dolomito, Gabro, Giz, Traquito", + "title": "Bastnasita e Monazita", + "type": "patchouli:text", + "anchor": "mars_neodynium" + }, + { + "Type": "patchouli:multiblock", + "name": "Bastnasita", + "multiblock": { + "mapping": { + "0": "#forge:ores/bastnasite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 58%$(br)$(thing)Fonte de$(): Cério, Flúor$(br)$(thing)Fórmula$(): CeCFO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Monazita", + "multiblock": { + "mapping": { + "0": "#forge:ores/monazite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 29%$(br)$(thing)Fonte de$(): Fósforo, Terra Rara$(br)$(thing)Fórmula$(): ?(PO₄)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Neodímio", + "multiblock": { + "mapping": { + "0": "#forge:ores/neodymium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Fonte de$(): Neodímio$(br)$(thing)Fórmula$(): Nd", + "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$(): 140$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 80 — 180$(br)$(thing)Tamanho$(): 45$(br)$(thing)Profundidade Máxima do Indicador$(): 40$(br2)$(thing)Tipos de Pedra$(): Argilita, Argilito, Basalto, Calcário, Cherte, Conglomerado, Dacito, Diorito, Dolomito, Folhelho, Gabro, Giz, Granito, Red Granite, Traquito", + "title": "Bismuto", + "type": "patchouli:text", + "anchor": "surface_bismuthinite" + }, + { + "Type": "patchouli:multiblock", + "name": "Bismuto", + "multiblock": { + "mapping": { + "0": "#forge:ores/bismuth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Derrete em$(): Bismuto$(br)$(thing)Fórmula$(): Bi", + "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": "Enxofre", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Fonte de$(): Enxofre$(br)$(thing)Fórmula$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Gipsita", + "multiblock": { + "mapping": { + "0": "#forge:ores/gypsum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 20%$(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$(): 370$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -20 — 0$(br)$(thing)Tamanho$(): 60$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Argilita, Basalto, Cherte, Conglomerado, Dacito, Diorito, Giz, Red Granite, Traquito", + "title": "Bornite & Cooperite", + "type": "patchouli:text", + "anchor": "deep_mars_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$(): 135$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 80 — 180$(br)$(thing)Tamanho$(): 45$(br)$(thing)Profundidade Máxima do Indicador$(): 40$(br2)$(thing)Tipos de Pedra$(): Argilita, Argilito, Basalto, Calcário, Cherte, Conglomerado, Dacito, Diorito, Dolomito, Folhelho, Gabro, Giz, Granito, Red Granite, Traquito", + "title": "Cassiterita", + "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$(): 55%$(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$(): 35%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)Fórmula$(): Sn", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Salitre", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 10%$(br)$(thing)Fonte de$(): Potássio, Nitrogênio$(br)$(thing)Fórmula$(): KNO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 215$(br)$(thing)Densidade$(): 0.6$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 55$(br)$(thing)Profundidade Máxima do Indicador$(): 10$(br2)$(thing)Tipos de Pedra$(): Argilita, Argilito, Basalto, Conglomerado, Dacito, Diorito, Dolomito, Giz, Granito, Red Granite, Traquito", + "title": "Coal & Hematite", + "type": "patchouli:text", + "anchor": "mars_coal" + }, + { + "Type": "patchouli:multiblock", + "name": "Carvão", + "multiblock": { + "mapping": { + "0": "#forge:ores/coal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 70%$(br)$(thing)Usado para$(): Combustível, Destilação$(br)$(thing)Fórmula$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematita", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 30%$(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$(): 220$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 50$(br)$(thing)Profundidade Máxima do Indicador$(): 40$(br2)$(thing)Tipos de Pedra$(): Argilita, Argilito, Basalto, Calcário, Conglomerado, Dacito, Dolomito, Folhelho, Traquito", + "title": "Cobre e Calcopirita", + "type": "patchouli:text", + "anchor": "mars_copper" + }, + { + "Type": "patchouli:multiblock", + "name": "Calcopirita", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcopyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 65%$(br)$(thing)Derrete em$(): Cobre$(br)$(thing)Fórmula$(): CuFeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cobre Nativo", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Derrete em$(): Cobre$(br)$(thing)Fórmula$(): Cu", + "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$(): 215$(br)$(thing)Densidade$(): 0.2$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 45$(br)$(thing)Profundidade Máxima do Indicador$(): 30$(br2)$(thing)Tipos de Pedra$(): Argilita, Basalto, Cherte, Dacito, Diorito, Gabro, Giz, Granito, Traquito", + "title": "Esfalerita e Pirita", + "type": "patchouli:text", + "anchor": "mars_sulfur" + }, + { + "Type": "patchouli:multiblock", + "name": "Pirita", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 42%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Esfalerita", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 23%$(br)$(thing)Derrete em$(): Zinco$(br)$(thing)Fórmula$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematita", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 19%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Enxofre", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 14%$(br)$(thing)Fonte de$(): Enxofre$(br)$(thing)Fórmula$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 350$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Tubular$(br)$(thing)Y$(): -20 — 50$(br)$(thing)Altura$(): 40$(br)$(thing)Raio$(): 8$(br)$(thing)Profundidade Máxima do Indicador$(): 15$(br2)$(thing)Tipos de Pedra$(): Andesito, Basalto, Dacito, Riolito", + "title": "Esmeralda e Berílio", + "type": "patchouli:text", + "anchor": "mars_beryllium" + }, + { + "Type": "patchouli:multiblock", + "name": "Esmeralda", + "multiblock": { + "mapping": { + "0": "#forge:ores/emerald" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 50%$(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$(): 35%$(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": "Realgar", + "multiblock": { + "mapping": { + "0": "#forge:ores/realgar" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): Arsênico$(br)$(thing)Fórmula$(): As₄S₄$(br)$(thing)Perigo$(): $(c)$(t:Requer Máscara Facial)Arsenicose (Inalação)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 250$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 55$(br)$(thing)Profundidade Máxima do Indicador$(): 40$(br2)$(thing)Tipos de Pedra$(): Argilita, Argilito, Basalto, Calcário, Dacito, Folhelho, Giz, Granito, Red Granite", + "title": "Garnierita e Cobaltita", + "type": "patchouli:text", + "anchor": "mars_nickel" + }, + { + "Type": "patchouli:multiblock", + "name": "Garnierita", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnierite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Níquel$(br)$(thing)Fórmula$(): NiO", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Níquel", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 28%$(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$(): 28%$(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": "Hematita", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 7%$(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$(): 230$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 15$(br2)$(thing)Tipos de Pedra$(): Argilito, Cherte, Diorito, Folhelho, Gabro, Giz, Granito", + "title": "Gold, Electrotine, & Bauxite", + "type": "patchouli:text", + "anchor": "mars_sapphire" + }, + { + "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": "Bauxita", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Fonte de$(): Alumínio$(br)$(thing)Fórmula$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Eletrotina", + "multiblock": { + "mapping": { + "0": "#forge:ores/electrotine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Fonte de$(): Ouro, Prata, Redstone$(br)$(thing)Fórmula$(): (Si(FeS₂)₅(CrAl₂O₃)Hg₃)(AgAu)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Safira Verde", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 5%$(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$(): 0 — 70$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 30$(br2)$(thing)Tipos de Pedra$(): Argilita, Argilito, Basalto, Calcário, Conglomerado, Dacito, Dolomito, Red Granite", + "title": "Hematita e Limonita", "type": "patchouli:text", "anchor": "mars_hematite" }, @@ -41,8 +1080,1224 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 100%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): Fe₂O₃", + "text": "$(thing)Porcentagem$(): 50%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): Fe₂O₃", "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Limonita Amarela", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 30%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Goethita", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Ouro Nativo", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Derrete em$(): Ouro$(br)$(thing)Fórmula$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 140$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 80 — 180$(br)$(thing)Tamanho$(): 45$(br)$(thing)Profundidade Máxima do Indicador$(): 40$(br2)$(thing)Tipos de Pedra$(): Argilita, Argilito, Basalto, Calcário, Cherte, Conglomerado, Dacito, Diorito, Dolomito, Folhelho, Gabro, Giz, Granito, Red Granite, Traquito", + "title": "Hematita e Limonita", + "type": "patchouli:text", + "anchor": "surface_hematite" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematita", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 55%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Limonita Amarela", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 33%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Ouro Nativo", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Derrete em$(): Ouro$(br)$(thing)Fórmula$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Calcita", + "multiblock": { + "mapping": { + "0": "#forge:ores/calcite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Fonte de$(): Cálcio$(br)$(thing)Fórmula$(): CaCO₃", + "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$(): 0 — 70$(br)$(thing)Tamanho$(): 42$(br)$(thing)Profundidade Máxima do Indicador$(): 15$(br2)$(thing)Tipos de Pedra$(): Argilita, Argilito, Basalto, Calcário, Cherte, Folhelho, Gabro, Giz, Red Granite, Traquito", + "title": "Manganês e Tântalo", + "type": "patchouli:text", + "anchor": "mars_tantalite" + }, + { + "Type": "patchouli:multiblock", + "name": "Glossulária", + "multiblock": { + "mapping": { + "0": "#forge:ores/grossular" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 37%$(br)$(thing)Fonte de$(): Cálcio, Alumínio$(br)$(thing)Fórmula$(): Ca₃Al₂Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Espessartita", + "multiblock": { + "mapping": { + "0": "#forge:ores/spessartine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Manganês, Alumínio$(br)$(thing)Fórmula$(): Al₂Mn₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pirolusita", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrolusite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Manganês$(br)$(thing)Fórmula$(): MnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Tantalita", + "multiblock": { + "mapping": { + "0": "#forge:ores/tantalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 12%$(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$(): 220$(br)$(thing)Densidade$(): 0.55$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 20$(br)$(thing)Profundidade Máxima do Indicador$(): 15$(br2)$(thing)Tipos de Pedra$(): Argilita, Conglomerado, Dacito, Diorito, Dolomito, Folhelho, Gabro, Red Granite, Traquito", + "title": "Pitchblende, Thorium, & Hematite", + "type": "patchouli:text", + "anchor": "mars_pitchblende" + }, + { + "Type": "patchouli:multiblock", + "name": "Pechblenda", + "multiblock": { + "mapping": { + "0": "#forge:ores/pitchblende" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 41%$(br)$(thing)Fonte de$(): Urânio, Tório, Chumbo$(br)$(thing)Fórmula$(): (UO₂)₃ThPb$(br)$(thing)Perigo$(): $(c)$(t:Requer Proteção Completa)Carcinogênico (Qualquer Contato)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Tório", + "multiblock": { + "mapping": { + "0": "#forge:ores/thorium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 29%$(br)$(thing)Fonte de$(): Tório$(br)$(thing)Fórmula$(): Th", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematita", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 29%$(br)$(thing)Derrete em$(): Ferro Fundido$(br)$(thing)Fórmula$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 370$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -20 — 0$(br)$(thing)Tamanho$(): 60$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Argilita, Argilito, Dacito, Diorito, Folhelho, Gabro, Traquito", + "title": "Pitchblende, Thorium, & Uraninite", + "type": "patchouli:text", + "anchor": "deep_mars_pitchblende" + }, + { + "Type": "patchouli:multiblock", + "name": "Pechblenda", + "multiblock": { + "mapping": { + "0": "#forge:ores/pitchblende" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 52%$(br)$(thing)Fonte de$(): Urânio, Tório, Chumbo$(br)$(thing)Fórmula$(): (UO₂)₃ThPb$(br)$(thing)Perigo$(): $(c)$(t:Requer Proteção Completa)Carcinogênico (Qualquer Contato)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Tório", + "multiblock": { + "mapping": { + "0": "#forge:ores/thorium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 26%$(br)$(thing)Fonte de$(): Tório$(br)$(thing)Fórmula$(): Th", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Uraninita", + "multiblock": { + "mapping": { + "0": "#forge:ores/uraninite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 21%$(br)$(thing)Fonte de$(): Urânio$(br)$(thing)Fórmula$(): UO₂$(br)$(thing)Perigo$(): $(c)$(t:Requer Proteção Completa)Carcinogênico (Qualquer Contato)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 215$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 50$(br)$(thing)Profundidade Máxima do Indicador$(): 40$(br2)$(thing)Tipos de Pedra$(): Argilita, Argilito, Basalto, Cherte, Dacito, Folhelho, Gabro, Giz, Granito, Red Granite", + "title": "Prata, Galena e Chumbo", + "type": "patchouli:text", + "anchor": "mars_galena" + }, + { + "Type": "patchouli:multiblock", + "name": "Galena", + "multiblock": { + "mapping": { + "0": "#forge:ores/galena" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 40%$(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$(): 33%$(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": "Prata Nativa", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Derrete em$(): Prata$(br)$(thing)Fórmula$(): Ag", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematita", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 6%$(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$(): 210$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 15$(br2)$(thing)Tipos de Pedra$(): Argilita, Argilito, Calcário, Cherte, Folhelho, Giz, Granito, Red Granite, Traquito", + "title": "Quartzite, Asbestos, & Barite", + "type": "patchouli:text", + "anchor": "mars_quartzite" + }, + { + "Type": "patchouli:multiblock", + "name": "Quartzito", + "multiblock": { + "mapping": { + "0": "#forge:ores/quartzite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 41%$(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$(): 35%$(br)$(thing)Fonte de$(): Bário$(br)$(thing)Fórmula$(): BaSO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Amianto", + "multiblock": { + "mapping": { + "0": "#forge:ores/asbestos" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 17%$(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": "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$(): 370$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -20 — 0$(br)$(thing)Tamanho$(): 60$(br)$(thing)Profundidade Máxima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Argilita, Argilito, Basalto, Calcário, Cherte, Dacito, Folhelho, Giz", + "title": "Redstone & Chromite", + "type": "patchouli:text", + "anchor": "deep_mars_chromite" + }, + { + "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₃", + "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": "Cromita", + "multiblock": { + "mapping": { + "0": "#forge:ores/chromite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 20%$(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:text", + "text": "$(thing)Raridade$(): 210$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 40$(br)$(thing)Altura$(): 6$(br)$(thing)Profundidade Máxima do Indicador$(): 15$(br2)$(thing)Tipos de Pedra$(): Argilita, Argilito, Calcário, Cherte, Diorito, Giz, Granito, Red Granite, Traquito", + "title": "Salts & Spodumene", + "type": "patchouli:text", + "anchor": "mars_salt" + }, + { + "Type": "patchouli:multiblock", + "name": "Espodumena", + "multiblock": { + "mapping": { + "0": "#forge:ores/spodumene" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "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": "Sal", + "multiblock": { + "mapping": { + "0": "#forge:ores/salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "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", + "multiblock": { + "mapping": { + "0": "#forge:ores/lepidolite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "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₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 280$(br)$(thing)Densidade$(): 0.45$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 50$(br)$(thing)Profundidade Máxima do Indicador$(): 15$(br2)$(thing)Tipos de Pedra$(): Argilito, Basalto, Calcário, Cherte, Dolomito, Folhelho, Giz, Red Granite", + "title": "Sheelita e Tungstato", + "type": "patchouli:text", + "anchor": "mars_tungsten" + }, + { + "Type": "patchouli:multiblock", + "name": "Sheelita", + "multiblock": { + "mapping": { + "0": "#forge:ores/scheelite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 42%$(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$(): 33%$(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$(): 19%$(br)$(thing)Fonte de$(): Lítio$(br)$(thing)Fórmula$(): Li", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematita", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 4%$(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$(): 220$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 30$(br)$(thing)Profundidade Máxima do Indicador$(): 15$(br2)$(thing)Tipos de Pedra$(): Argilita, Argilito, Calcário, Conglomerado, Dacito, Diorito, Dolomito, Folhelho, Granito, Red Granite", + "title": "Soapstone, Talc, & Glauconite", + "type": "patchouli:text", + "anchor": "mars_lubricant" + }, + { + "Type": "patchouli:multiblock", + "name": "Pedra-sabão", + "multiblock": { + "mapping": { + "0": "#forge:ores/soapstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 31%$(br)$(thing)Fonte de$(): Magnésio$(br)$(thing)Fórmula$(): Mg₃Si₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Areia Glauconita", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 26%$(br)$(thing)Fonte de$(): Magnésio, Alumínio$(br)$(thing)Fórmula$(): KMg₂Al₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Talco", + "multiblock": { + "mapping": { + "0": "#forge:ores/talc" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 21%$(br)$(thing)Fonte de$(): Magnésio$(br)$(thing)Fórmula$(): Mg₃Si₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pentlandita", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Derrete em$(): Níquel$(br)$(thing)Fórmula$(): Ni₉S₈", + "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:text", + "text": "$(thing)Raridade$(): 150$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 80 — 180$(br)$(thing)Tamanho$(): 45$(br)$(thing)Profundidade Máxima do Indicador$(): 40$(br2)$(thing)Tipos de Pedra$(): Argilita, Argilito, Basalto, Calcário, Cherte, Conglomerado, Dacito, Diorito, Dolomito, Folhelho, Gabro, Giz, Granito, Red Granite, Traquito", + "title": "Sphalerite & Galena", + "type": "patchouli:text", + "anchor": "surface_nickel_galena" + }, + { + "Type": "patchouli:multiblock", + "name": "Galena", + "multiblock": { + "mapping": { + "0": "#forge:ores/galena" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 35%$(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": "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": "Esfalerita", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 17%$(br)$(thing)Derrete em$(): Zinco$(br)$(thing)Fórmula$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Prata Nativa", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 11%$(br)$(thing)Derrete em$(): Prata$(br)$(thing)Fórmula$(): Ag", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cobaltita", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobaltite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 11%$(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:text", + "text": "$(thing)Raridade$(): 210$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade Máxima do Indicador$(): 40$(br2)$(thing)Tipos de Pedra$(): Argilita, Basalto, Cherte, Dacito, Diorito, Dolomito, Folhelho, Gabro, Giz, Red Granite, Traquito", + "title": "Tetraedrita (Normal)", + "type": "patchouli:text", + "anchor": "mars_stibnite" + }, + { + "Type": "patchouli:multiblock", + "name": "Tetraedrita", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 47%$(br)$(thing)Derrete em$(): Cobre$(br)$(thing)Fórmula$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cobre Nativo", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 28%$(br)$(thing)Derrete em$(): Cobre$(br)$(thing)Fórmula$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Estibnita", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 19%$(br)$(thing)Derrete em$(): Antimônio$(br)$(thing)Fórmula$(): Sb₂S₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematita", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 4%$(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$(): 140$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 80 — 180$(br)$(thing)Tamanho$(): 45$(br)$(thing)Profundidade Máxima do Indicador$(): 40$(br2)$(thing)Tipos de Pedra$(): Argilita, Argilito, Basalto, Calcário, Cherte, Conglomerado, Dacito, Diorito, Dolomito, Folhelho, Gabro, Giz, Granito, Red Granite, Traquito", + "title": "Tetraedrita (Superfície)", + "type": "patchouli:text", + "anchor": "surface_tetrahedrite" + }, + { + "Type": "patchouli:multiblock", + "name": "Tetraedrita", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 57%$(br)$(thing)Derrete em$(): Cobre$(br)$(thing)Fórmula$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cobre Nativo", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 19%$(br)$(thing)Derrete em$(): Cobre$(br)$(thing)Fórmula$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Estibnita", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 19%$(br)$(thing)Derrete em$(): Antimônio$(br)$(thing)Fórmula$(): Sb₂S₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Redstone", + "multiblock": { + "mapping": { + "0": "#forge:ores/redstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 4%$(br)$(thing)Derrete em$(): Redstone$(br)$(thing)Fórmula$(): Si(FeS₂)₅(CrAl₂O₃)Hg₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" } ], "sortnum": 7 diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/categories/beneath.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/categories/beneath.json new file mode 100644 index 000000000..bc1aa4b50 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/categories/beneath.json @@ -0,0 +1,6 @@ +{ + "name": "Ад...?", + "description": "Всё о том, что скрыто в Бездне...", + "icon": "minecraft:netherrack", + "sortnum": 10 +} diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/categories/firmaciv.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/categories/firmaciv.json new file mode 100644 index 000000000..3bdd83c34 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/categories/firmaciv.json @@ -0,0 +1,6 @@ +{ + "name": "Firma: Civilization", + "description": "Все, что вам нужно знать о функциях, добавленных в Firma: Civilization", + "icon": "firmaciv:textures/item/sextant_icon.png", + "sortnum": 50 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/beneath.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/beneath.json new file mode 100644 index 000000000..16c80df68 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/beneath.json @@ -0,0 +1,23 @@ +{ + "name": "Что такое Бездна?", + "category": "tfc:beneath", + "icon": "minecraft:deepslate", + "priority": true, + "pages": [ + { + "type": "patchouli:text", + "text": "$(thing)Бездна$() - это сеть очень глубоких пещер, расположенных непосредственно под Верхним миром.$(br)Это измерение рассчитано примерно на середину или конец $(thing)Первобытной эры$(). Оно намного опаснее поверхности, поэтому мы рекомендуем запастить как минимум полным комплектом бронзовой брони и металлическим щитом, а также достаточным количеством еды, воды и других инструментов." + }, + { + "type": "patchouli:text", + "text": "Но игровой опыт отличается от нижнего мира несколькими аспектами:$(li)Вы попадаете туда $(l:beneath/beneath#entering)иначе$()$(li)Вода не испоряется мгновенно$(li)Кровати работают нормально$(li)Скорость путешествия в бездне такая же как и Верхнем мире$(br2)Но взамен, вы можете найти такие ресурсы, как $(thing)Каолинитовая глина$(), $(thing)Графит$(), более богатые и доступные $(thing)рудные жилы$(), а так же другие сокровища." + }, + { + "type": "patchouli:text", + "anchor": "entering", + "title": "Вход в Бездну", + "text": "Для путешествия по Бездне, вам достаточно просто постоять некоторое время на коренной породе.$(br)Чтобы вернуться, вам нужно немного постоять впритык к верхней коренной породе.$(br2)Будет неплохой идеей $(thing)отметить место$() где вы вошли. Благодаря этому, когда вы будете готовы уйти, вы сможете вернуться тем же путем." + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/biomes.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/biomes.json new file mode 100644 index 000000000..45c5e6730 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/biomes.json @@ -0,0 +1,75 @@ +{ + "name": "Биомы", + "category": "tfc:beneath", + "icon": "minecraft:spyglass", + "pages": [ + { + "type": "patchouli:text", + "text": "В Бездне есть полный набор новых биомов для исследования! Большинство из них делятся на две категории: $(thing)верхние$() и $(thing)нижние$(). Верхние биомы встречаются на верхних уровнях Бездны, в то время как нижние расположены в ближе к лаве." + }, + { + "type": "patchouli:image", + "title": "Пышная лощина", + "images": [ + "tfg:textures/gui/field_guide/nether/lush_hollow.png" + ], + "border": true, + "text": "Влажно и полно зелени! Самая гостеприимная зона для подземной базы." + }, + { + "type": "patchouli:image", + "title": "Гниющие пещеры", + "images": [ + "tfg:textures/gui/field_guide/nether/decaying_caverns.png" + ], + "border": true, + "text": "Природные переработчики усердно трудятся в этом влажном регионе, полном гниения." + }, + { + "type": "patchouli:image", + "title": "Паучье логово", + "images": [ + "tfg:textures/gui/field_guide/nether/webbed_lair.png" + ], + "border": true, + "text": "Ни за что не угадаете, кто тут обитает! А, и в этом месте можно найти огромные $(thing)Травертиновые$() сталагнаты или колонны." + }, + { + "type": "patchouli:image", + "title": "Пепельный лес", + "images": [ + "tfg:textures/gui/field_guide/nether/ash_forest.png" + ], + "border": true, + "text": "То, что осталось от Пышной Лощины после частых пожаров, вызванных жарой и магмой." + }, + { + "type": "patchouli:image", + "title": "Магмовые пустоши", + "images": [ + "tfg:textures/gui/field_guide/nether/lava_floes.png" + ], + "border": true, + "text": "Богатая рудами область $(thing)пироксенита$(), пересеченная реками лавы и покрытая пластами магмы." + }, + { + "type": "patchouli:image", + "title": "Базальтовые дельты", + "images": [ + "tfg:textures/gui/field_guide/nether/basalt_deltas.png" + ], + "border": true, + "text": "Любимый всеми адский биом возвращается и по-прежнему так же опасен для исследования." + }, + { + "type": "patchouli:image", + "title": "Глубокие пещеры", + "images": [ + "tfg:textures/gui/field_guide/nether/deep_caves.png" + ], + "border": true, + "text": "Между другими биомами находятся более простые области из габбро, сланца, гранита, диорита и гнейса.$(br)" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/burpflower.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/burpflower.json new file mode 100644 index 000000000..b26891f60 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/burpflower.json @@ -0,0 +1,16 @@ +{ + "name": "Рыгоцветы", + "category": "tfc:beneath", + "icon": "beneath:burpflower", + "pages": [ + { + "type": "patchouli:text", + "text": "$(thing)Рыгоцвет$() обладает странной способностью видоизменять блоки и он очень распространен в Недрах. Он имеет определенное направление, в котором действует. Если с другой стороны поставить$(thing)Кучку серы$(), то он начнет заряжаться." + }, + { + "type": "patchouli:text", + "text": "Вскоре, при наличии около него серы, появится желтоватый бутон. Если в направлении бутона будет находиться $(br2)$(item)Грибоцвет$(), то через некоторое время рыгоцвет хрюкнет и появится $(thing)Квампа$()." + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/cooling.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/cooling.json new file mode 100644 index 000000000..eff233ba9 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/cooling.json @@ -0,0 +1,49 @@ +{ + "name": "Управление температурой", + "category": "tfc:beneath", + "icon": "minecraft:ice", + "pages": [ + { + "type": "patchouli:text", + "text": "В Бездне жарко! Температура начинается с 15°C и становится только выше по мере того как вы будете спускаться.$(br2)$(item)Джутовая$() и $(item)Шёлковая$() одежда могут помочь с жарой, но есть и другие способы охладиться!" + }, + { + "type": "patchouli:spotlight", + "item": "minecraft:water_bucket", + "title": "Вода", + "text": "Воду можно найти на всех внешних уровнях Бездны. Быстро окунувшись, вы сможете быстро охладиться!" + }, + { + "type": "patchouli:spotlight", + "title": "Лёд", + "item": "minecraft:packed_ice", + "text": "Возьмите с собой $(thing)Лёд$()! Стоя рядом с ним, можно понизить температуру окружающей среды. Лёд можно добыть на поверхности с помощью $(item)Пилы$(). При этом запомните - $(thing)Плотный$() и $(thing)Синий$() лёд не тает." + }, + { + "type": "patchouli:spotlight", + "title": "Снаряжение из синей стали", + "item": "create:netherite_diving_helmet,create:netherite_backtank,minecraft:netherite_leggings,create:netherite_diving_boots", + "text": "Ищете что-то более удобное и надежное? $(thing)Лаволазное снаряжение из синей стали$() будет поддерживать вашу температуру на уровне 28°C и позволит плавать в лаве! $(br2)$(item)Лаванепроницаемую шкуру$() можно получить с местного $(thing)красного оленя$() или найти в бастионах." + }, + { + "type": "patchouli:crafting", + "recipe": "tfg:create/shaped/netherite_diving_helmet", + "recipe2": "tfg:create/shaped/netherite_diving_helmet_upgrade" + }, + { + "type": "patchouli:crafting", + "recipe": "tfg:create/shaped/netherite_backtank", + "recipe2": "tfg:create/shaped/netherite_backtank_upgrade" + }, + { + "type": "patchouli:crafting", + "recipe": "tfg:minecraft/shaped/netherite_leggings" + }, + { + "type": "patchouli:crafting", + "recipe": "tfg:create/shaped/netherite_diving_boots", + "recipe2": "tfg:create/shaped/netherite_diving_boots_upgrade" + } + ], + "read_by_default": true +} diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/curious_blocks.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/curious_blocks.json new file mode 100644 index 000000000..f1cd39c74 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/curious_blocks.json @@ -0,0 +1,23 @@ +{ + "name": "Уникальные блоки", + "category": "tfc:beneath", + "icon": "beneath:blackstone_aqueduct", + "pages": [ + { + "type": "patchouli:crafting", + "recipe": "beneath:crafting/blackstone_aqueduct", + "text": "Пироксенитовый акведук позволяет проводить лаву на любое расстояние." + }, + { + "type": "patchouli:crafting", + "recipe": "tfg:shapeless/hellbricks_from_soot", + "text": "Адские кирпичи — это строительный блок, который также используется для Адской кузницы." + }, + { + "type": "patchouli:crafting", + "recipe": "beneath:crafting/blackstone_brick", + "text": "Мигматитовые и пироксенитовые кирпичи изготавливаются как и все остальные кирпичи. И это подразумевает создание кирпичей как предметов." + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/hellforge.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/hellforge.json new file mode 100644 index 000000000..c23e6f1e0 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/hellforge.json @@ -0,0 +1,50 @@ +{ + "name": "Адская кузня", + "category": "tfc:beneath", + "icon": "beneath:cursecoal", + "pages": [ + { + "type": "patchouli:text", + "text": "$(thing)Адская кузня$() — это чрезвычайно большая кузница с очень большой вместимостью топлива и ресурсов, а так же нагрева. В ее постройке используются адские кирпичи, антрацит и пироксенитовые акведуки." + }, + { + "type": "patchouli:multiblock", + "multiblock": { + "pattern": [ + [ + "ZXXXZ", + "XYYYX", + "XY0YX", + "XYYYX", + "ZXXXZ" + ], + [ + " ", + " XXX ", + " XXX ", + " XXX ", + " " + ] + ], + "mapping": { + "Z": "beneath:blackstone_aqueduct[fluid=lava]", + "Y": "beneath:hellforge_side", + "0": "beneath:hellforge", + "X": "beneath:hellbricks" + } + }, + "name": "Hellforge", + "text": "", + "enable_visualize": false + }, + { + "type": "patchouli:text", + "text": "Адская кузня требует, чтобы в крайних акведуках была текучая лава, а также был поставлен 21 блок адского кирпича. Центр 3x3 должен быть заполнен кучками $(l:beneath/ores_and_minerals#cursecoal)Антрацита$(), которые затем можно поджечь, чтобы запустить кузню." + }, + { + "type": "patchouli:text", + "text": "В Адской кузне может находиться как топливо, так и предметы для плавки - различий нет. Поэтому будьте внимательны и смотрите что помещаете внутрь! Также справа имеются слоты для контейнеров, как в $(l:tfc:mechanics/charcoal_forge)угольной кузнице$(). Чем ярче разгорается кузня и чем быстрее движутся предметы в ней - тем жарче." + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/ores_and_minerals.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/ores_and_minerals.json new file mode 100644 index 000000000..1a4d471b7 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/ores_and_minerals.json @@ -0,0 +1,70 @@ +{ + "name": "Руды и минералы", + "category": "tfc:beneath", + "icon": "beneath:ore/normal_nether_gold", + "pages": [ + { + "type": "patchouli:text", + "text": "Руды, которые вы можете найти в Бездне, в основном похожи на те, что находятся на поверхности, но с некоторыми различиями. Для более конкретной информации можете ознакомиться с разделом: $(l:tfg_ores)Руды в TFG$()." + }, + { + "type": "patchouli:spotlight", + "title": "Мигматит", + "item": { "tag": "forge:ores_in_ground/deepslate" }, + "text": "Самым распространенным типом породы, который можно найти, является мигматит. Эта глубинная метаморфическая порода содержит широкий ассортимент руд, которые обычно встречаются в других типах пород на поверхности." + }, + { + "type": "patchouli:spotlight", + "title": "Травертин", + "item": { "tag": "forge:ores_in_ground/dripstone" }, + "text": "В более влажных районах вы можете найти $(thing)Травертин$(). Это осадочная порода, которая может содержать такие же виды руд, что и мигматит." + }, + { + "type": "patchouli:spotlight", + "title": "Пироксенит", + "item": { "tag": "forge:ores_in_ground/pyroxenite" }, + "text": "В самой глубине Бездны различные типы пород постепенно превращаются в $(thing)Пироксенит$(). Эта ультрамафическая магматическая порода чрезвычайно богата рудами, но такая глубина также сопряжена с экстремальной жарой, поэтому будьте готовы!" + }, + { + "type": "patchouli:multiblock", + "anchor": "cursecoal", + "multiblock": { + "pattern": [ + [ + "X" + ], + [ + "0" + ] + ], + "mapping": { + "X": "beneath:ore/nether_cursecoal" + } + }, + "name": "Антрацит", + "text": "Антрацит является мощным $(l:beneath/hellforge)топливом$(). Его можно найти в мигматите на внешних уровнях бездны.", + "enable_visualize": false + }, + { + "type": "patchouli:multiblock", + "anchor": "sylvite", + "multiblock": { + "pattern": [ + [ + "X" + ], + [ + "0" + ] + ], + "mapping": { + "X": "beneath:ore/blackstone_sylvite" + } + }, + "name": "Сильвит", + "text": "Сильвит является неплохим удобрением, которое можно найти в пироксените на нижних уровнях Бездны.", + "enable_visualize": false + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/piglins.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/piglins.json new file mode 100644 index 000000000..eb770009b --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/piglins.json @@ -0,0 +1,40 @@ +{ + "name": "Пиглины", + "category": "tfc:beneath", + "icon": "minecraft:gold_ingot", + "pages": [ + { + "type": "patchouli:text", + "title": "Обмен с пиглинами", + "text": "Как и ожидалось, вы можете торговать c $(thing)Пиглинами$() так же, как и в ванильной игре, используя $(item)Золотые слитки$()." + }, + { + "type": "patchouli:entity", + "entity": "minecraft:piglin", + "scale": 0.9, + "name": "Пиглин", + "text": "Пиглинов можно найти почти в каждом биоме Бездны." + }, + { + "type": "patchouli:text", + "title": "Что вы можете получить?", + "text": "$(li)1x Медь (Слиток)$(li)1x Олово (Слиток)$(li)1x Серебро (Слиток)$(li)1x Бронза (Слиток)$(li)1x Висмутовая бронза (Слиток)$(li)1x Чугун (Слиток)$(li)1x Цинк (Слиток)$(li)1x Латунь (Слиток)$(li)1x Висмут (Слиток)$(li)1x Никель (Слиток)$(li)1x Киноварь" + }, + { + "type": "patchouli:text", + "text": "$(li)4-6x Серы$(li)1-2x Кожи$(li)6-12x Нитки$(li)6-12x Кварца$(li)12-18x Доски из мангрового дерева$(li)6-8x Бревна мангрового дерева$(li)4-6x Жареной оленины$(li)4-6x Призрачного перца$(li)4-6x Пороха$(li)4-8x Угля$(li)6-12x Стрел$(li)6-12x Флакса$(li)8-12x Пироксенитовые кирпича$(li)8-12x Мигматитовые кирпича$(li)8-16x Палок" + }, + { + "type": "patchouli:text", + "title": "Бастионы", + "text": "Вылазка в $(thing)Бастион$() может быть очень $(br1)опасна, но кто не рискует, не пьет шампанское! Вы можете отыскать следующие вещи:$(li)Слитки золота, Розового золота, Свиного железа, Черной бронзы и серебра.$(li) А так же снаряжение, инструменты и броню из черной бронзы.$(li) Каолинитовую глину и графит.$(li) Вечные источники света.$(li) Ткань с кожей, и еду с семянами.$(li)А так же многое другое!" + }, + { + "type": "patchouli:spotlight", + "item": "tfg:piglin_disguise", + "title": "Маскировка под пиглина", + "text": "Если хотите облегчить обмен или просто мило поболтать,просто наденьте $(thing)Маскировку пиглина$(), тогда $(thing)Пиглины$() не будут к вам враждебны при первой встрече. Но будьте осторожны! Их терпение не безгранично..." + } + ], + "read_by_default": true +} diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/unposter.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/unposter.json new file mode 100644 index 000000000..d0dc723d9 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/unposter.json @@ -0,0 +1,16 @@ +{ + "name": "Грибница", + "category": "tfc:beneath", + "icon": "beneath:unposter", + "pages": [ + { + "type": "patchouli:text", + "text": "$(thing)Грибница$() используется для выращивания грибов. В него можно поместить грибы и урожай из Нижнего мира. Когда он находится рядом с грибом, он потребляет содержащиеся внутри предметы, чтобы размножить этот гриб в окружающей области, один раз в день." + }, + { + "type": "patchouli:crafting", + "recipe": "beneath:crafting/unposter" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/water.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/water.json new file mode 100644 index 000000000..d477d7001 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/beneath/water.json @@ -0,0 +1,21 @@ +{ + "name": "Cохраняйте влагу", + "category": "tfc:beneath", + "icon": "beneath:juicer", + "pages": [ + { + "type": "patchouli:text", + "text": "В отличие от знакомо вам Ада, пока вы находитесь в Бездне, вода не испаряется мгновенно. А так же здесь есть возможность изготовления $(thing)Соковыжималки$()." + }, + { + "type": "patchouli:crafting", + "recipe": "beneath:crafting/juicer", + "text": "Соковыжималка — это сосуд для питья, который позволяет спрессовывать $(thing)Грибы$() и $(thing)Фрукты$() в воду. Интерфейс с одним слотом автоматически обрабатывает помещенные в него грибы, превращая их в воду." + }, + { + "type": "patchouli:text", + "text": "Эти грибы появляются по всей Бездне. Свежие фрукты (такие как $(thing)Светящиеся ягоды$()) также могут быть выжаты в воду. $(br2)Также на верхних уровнях Бездны можно найти воду и $(thing)Горячие источники$()." + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/arborfirmacraft.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/arborfirmacraft.json new file mode 100644 index 000000000..2e4f1ebc8 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/arborfirmacraft.json @@ -0,0 +1,37 @@ +{ + "name": "ArborFirmaCraft", + "category": "tfc:firmaciv", + "icon": "afc:wood/sapling/weeping_maple", + "flag": "mod:afc", + "read_by_default": true, + "sortnum": 100, + "pages": [ + { + "type": "patchouli:text", + "text": "If you see Tualang or Fig trees in your travels, you'll be pleased to know that you'll be able to create $(l:firmaciv/watercraft)Boats$() with them just like any other kind of Wood" + }, + { + "type": "patchouli:empty" + }, + { + "type": "patchouli:spotlight", + "title": "Softwoods", + "text": "Softwoods have sufficiently soft enough pulp and bark that they're perfect for creating $(l:firmaciv/canoe)Dugout Canoes$()", + "item": "afc:wood/stripped_log/tualang,afc:wood/stripped_log/fig,afc:wood/stripped_log/cypress" + }, + { + "type": "patchouli:text", + "text": "$(li)Tualang$() $(li)Fig$() $(li)Cypress$()" + }, + { + "type": "patchouli:spotlight", + "title": "Hardwoods", + "text": "Known for their exceptional sturdiness, Hardwood trees are ideal for creating larger and sophisticated Watercrafts such as $(l:firmaciv/rowboat)Rowboats$() and $(l:firmaciv/sloop)Sloops$()", + "item": "afc:wood/planks/baobab,afc:wood/planks/eucalyptus,afc:wood/planks/mahogany,afc:wood/planks/hevea,afc:wood/planks/teak,afc:wood/planks/ironwood,afc:wood/planks/ipe" + }, + { + "type": "patchouli:text", + "text": "$(li)Baobab$() $(li)Eucalyptus$() $(li)Mahogany$() $(li)Hevea$() $(li)Teak$() $(li)Ironwood$() $(li)Ipe$()" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/beneath.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/beneath.json new file mode 100644 index 000000000..c69005a38 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/beneath.json @@ -0,0 +1,37 @@ +{ + "name": "Beneath", + "category": "tfc:firmaciv", + "icon": "beneath:wood/sapling/crimson", + "flag": "mod:beneath", + "read_by_default": true, + "sortnum": 100, + "pages": [ + { + "type": "patchouli:text", + "text": "Deep within the nether you can utilize both Crimson and Warped wood to create some rather flashy $(l:firmaciv/watercraft)Boats$().$(br2)Format Error: Due to a limitation, Watercrafts created with these materials are NOT impervious to lava, you WILL sink and BURN." + }, + { + "type": "patchouli:empty" + }, + { + "type": "patchouli:spotlight", + "title": "Softwoods", + "text": "Softwoods have sufficiently soft enough pulp and bark that they're perfect for creating $(l:firmaciv/canoe)Dugout Canoes$()", + "item": "beneath:wood/stripped_log/crimson" + }, + { + "type": "patchouli:text", + "text": "$(li)Crimson$()" + }, + { + "type": "patchouli:spotlight", + "title": "Hardwoods", + "text": "Known for their exceptional sturdiness, Hardwood trees are ideal for creating larger and sophisticated Watercrafts such as $(l:firmaciv/rowboat)Rowboats$() and $(l:firmaciv/sloop)Sloops$()", + "item": "beneath:wood/planks/warped" + }, + { + "type": "patchouli:text", + "text": "$(li)Warped$()" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/cannon.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/cannon.json new file mode 100644 index 000000000..308a0f85e --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/cannon.json @@ -0,0 +1,29 @@ + +{ + "name": "Пушки", + "category": "tfc:firmaciv", + "icon": "alekiships:cannon", + "pages": [ + { + "type": "patchouli:text", + "text": "Пушки! Кто не хочет иметь пушки? Эти мощные орудия морских баталий могут быть размещены на больших кораблях, а также на суше. Они являются лучшим способом уничтожить суда вашего противника, нанося гораздо больший урон по кораблям, чем любая другая альтернатива." + }, + { + "type": "patchouli:image", + "images": [ + "firmaciv:textures/gui/book/cannon_isometric.png" + ] + }, + { + "type": "patchouli:crafting", + "recipe": "firmaciv:crafting/cannon", + "text": "Куйте стволы пушек из двойных пластин кованого железа и завершите создание пушки через крафт." + }, + { + "type": "text", + "text": "Вам также понадобятся пушечные ядра, выкованные из двойных слитков кованого железа, а также порох, грубая бумага и огниво, чтобы выстрелить из пушки. Графический элемент интерфейса будет отображать статус пушки. Вы можете поднимать оружие пушки, нажав $(item)$(k:key.use)$(), и опускать, если будете красться и нажмете $(item)$(k:key.use)$()." + } + ], + "read_by_default": true, + "sortnum": 5 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/canoe.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/canoe.json new file mode 100644 index 000000000..3811649f8 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/canoe.json @@ -0,0 +1,97 @@ + +{ + "name": "Долбленые каноэ", + "category": "tfc:firmaciv", + "icon": "firmaciv:canoe_with_paddle_icon_only", + "pages": [ + { + "type": "patchouli:text", + "text": "Долбленое каноэ, вероятно, будет вашим первым шагом к водным путешествиям! Если вы находитесь в медном веке, то вы, скорее всего, сможете построить каноэ." + }, + { + "type": "patchouli:image", + "images": [ + "firmaciv:textures/gui/book/canoe_isometric.png" + ] + }, + { + "type": "patchouli:text", + "text": "Вы можете поставить блоки или животных на место пилота, но учтите, что у вас не будет возможности грести! Это очень полезно, когда вы просто хотите спустить материалы вниз по реке самостоятельно.$(br2)Каноэ имеет два места и управляется с заднего сиденья. Для достижения полной скорости вам необходимо держать весло для каноэ, а если два игрока будут держать весла, то вы будете двигаться еще быстрее." + }, + { + "type": "patchouli:text", + "text": "Для постройки долбленого каноэ вам нужно разместить 3 обтесанных бревна в горизонтальный ряд, срезать верхушки бревен пилой, затем выдолбить форму каноэ топором и, наконец, поджечь внутреннюю часть каноэ, чтобы выжечь корпус. Процесс займет столько же времени, сколько и обжиг в земляной печи." + }, + { + "type": "patchouli:text", + "text": "Для вырезания долбленого каноэ подходит только мягкая древесина, и как следует, подходят только бревна:$(br2)Дугласовой пихты$(br)Сосны$(br)Пальмы$(br)Ели$(br)Секвойи$(br)Сейбы$(br)Мангрового дерева$(br)Белого кедра$(br)Ивы" + }, + { + "type": "patchouli:multiblock", + "multiblock": { + "pattern": [ + [ + " F ", + " 0 ", + " B " + ] + ], + "mapping": { + "F": "tfc:wood/stripped_log/douglas_fir[axis=x]", + "0": "tfc:wood/stripped_log/douglas_fir[axis=x]", + "B": "tfc:wood/stripped_log/douglas_fir[axis=x]" + } + }, + "name": "Просто бревно", + "text": "Первый шаг создания долбленого каноэ.", + "enable_visualize": false + }, + { + "type": "patchouli:multiblock", + "multiblock": { + "pattern": [ + [ + " F ", + " 0 ", + " B " + ] + ], + "mapping": { + "F": "firmaciv:wood/canoe_component_block/douglas_fir[canoe_carved=5,facing=east,end=true]", + "0": "firmaciv:wood/canoe_component_block/douglas_fir[canoe_carved=5,facing=east,end=false]", + "B": "firmaciv:wood/canoe_component_block/douglas_fir[canoe_carved=5,facing=east,end=true]" + } + }, + "name": "Странные плиты", + "text": "Верхняя часть бревна удалена пилой.", + "enable_visualize": false + }, + { + "type": "patchouli:multiblock", + "multiblock": { + "pattern": [ + [ + " F ", + " 0 ", + " B " + ] + ], + "mapping": { + "F": "firmaciv:wood/canoe_component_block/douglas_fir[canoe_carved=11,facing=west,end=true]", + "0": "firmaciv:wood/canoe_component_block/douglas_fir[canoe_carved=11,facing=east,end=false]", + "B": "firmaciv:wood/canoe_component_block/douglas_fir[canoe_carved=11,facing=east,end=true]" + } + }, + "name": "Странная скульптура", + "text": "Полностью вырезанное долбленое каноэ, готовое к выжиганию корпуса.", + "enable_visualize": false + }, + { + "type": "patchouli:crafting", + "recipe": "firmaciv:crafting/canoe_paddle", + "text": "Не забудьте создать одно или два весла!" + } + ], + "read_by_default": true, + "sortnum": 1 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/kayak.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/kayak.json new file mode 100644 index 000000000..520d3893f --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/kayak.json @@ -0,0 +1,33 @@ +{ + "name": "Каяки", + "category": "tfc:firmaciv", + "icon": "firmaciv:kayak_with_paddle_icon_only", + "pages": [ + { + "type": "patchouli:text", + "text": "Ваш лучший друг для одиночных путешествий. Конечно, немаловажно, что это единственная лодка, которую можно переносить как предмет. Это самая быстрая и маневренная лодка для одного игрока!$(br2)Чтобы перенести каяк, просто разбейте его.", + "title": "Каяк" + }, + { + "type": "patchouli:image", + "title": "Каяк", + "images": [ + "firmaciv:textures/gui/book/kayak_isometric.png" + ], + "text": "Каяки — самые маленькие и самые портативные лодки." + }, + { + "type": "patchouli:crafting", + "recipe": "firmaciv:crafting/kayak", + "recipe2": "firmaciv:crafting/kayak_paddle" + }, + { + "type": "tfc:sealed_barrel_recipe", + "anchor": "soaking", + "recipe": "firmaciv:barrel/large_waterproof_hide_olive", + "text": "Вымочите крупное мягченое голье в жире или оливковом масле, чтобы сделать его водонепроницаемым." + } + ], + "read_by_default": true, + "sortnum": 2 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/navigation.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/navigation.json new file mode 100644 index 000000000..9061708fc --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/navigation.json @@ -0,0 +1,56 @@ +{ + "name": "Навигация", + "category": "tfc:firmaciv", + "icon": "firmaciv:textures/item/nav_toolkit.png", + "pages": [ + { + "type": "patchouli:image", + "title": "Навигация", + "images": [ + "firmaciv:textures/gui/book/navigation.png" + ], + "border": true + }, + { + "type": "patchouli:text", + "text": "Ориентирование в мире — задачка не из легких. Для создания успешной цивилизации вам необходимо хорошо понимать свое местоположение и отмечать важные места! Больше не существует этих волшебных чисел, точно указывающих, где вы. Вместо этого требуются технологические достижения и точные инструменты для определения позиции." + }, + { + "type": "patchouli:text", + "title": "Долгота", + "text": "Для определения долготы, то есть вашего расстояния от нулевого меридиана, вам потребуются часы! А именно, вам потребуются точные часы, которые синхронизируются с солнечным временем на нулевом меридиане.$(br2) Выкуйте недоделанный морской хронометр из двойной латунной пластины, затем завершите рецепт справа." + }, + { + "type": "patchouli:crafting", + "recipe": "firmaciv:crafting/nav_clock", + "text": "Как только вы создадите морской хронометр, возьмите его и нажмите $(item)$(k:key.use)$(), чтобы определить вашу долготу. Помните, что долгота измеряется в градусах восточной или западной долготы, то есть 0 градусов на нулевом меридиане и 360 градусов для идентичного климата." + }, + { + "type": "patchouli:text", + "title": "Широта", + "text": "Для определения широты, то есть вашего расстояния от экватора, вам потребуется измерить угол между горизонтом и Полярной звездой или Солнцем. В частности, вам потребуется точный инструмент для наблюдения за астрономическими объектами и измерения их углового расстояния от горизонта.$(br2) Выкуйте недоделанный секстант из двойного латунного слитка, затем завершите рецепт справа." + }, + { + "type": "patchouli:crafting", + "recipe": "firmaciv:crafting/sextant", + "text": "Как только вы создадите секстант, возьмите его и нажмите $(item)$(k:key.use)$(), чтобы определить вашу широту. Помните, что широта измеряется в градусах северной или южной широты, то есть 0 градусов на экваторе и 90 градусов северной или южной широты для полярных регионов." + }, + { + "type": "patchouli:text", + "title": "Высота", + "text": "Для определения высоты, то есть вашего вертикального расстояния от уровня моря, вам потребуется измерить атмосферное давление. Конкретно, вам потребуется точный инструмент, содержащий сжимаемую жидкость, и измерить объем этой жидкости, чтобы определить давление.$(br2) Выкуйте недоделанный барометр из латунного листа, затем завершите рецепт справа." + }, + { + "type": "patchouli:crafting", + "recipe": "firmaciv:crafting/barometer", + "text": "Как только вы создадите барометр, возьмите его и нажмите $(item)$(k:key.use)$(), чтобы определить вашу высоту. Помните, что высота измеряется как расстояние в метрах от уровня моря." + }, + { + "type": "patchouli:text", + "title": "Примечание", + "text": "Поскольку вы будете измерять расстояние в градусах, может быть полезно знать конвертацию блоков. Каждые 90 градусов составляют 20 000 блоков, а каждый градус — около 222 блоков.$(br2)В Firma: Civilization компасы всегда указывают на север, но изготавливаются по оригинальному рецепту TerraFirmaCraft." + } + ], + "read_by_default": true, + "sortnum": 20 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/rowboat.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/rowboat.json new file mode 100644 index 000000000..b5ab99bb2 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/rowboat.json @@ -0,0 +1,152 @@ +{ + "name": "Гребные лодки", + "category": "tfc:firmaciv", + "icon": "firmaciv:rowboat_icon_only", + "pages": [ + { + "type": "patchouli:text", + "text": "Итак, вы достигли Железного века и хотите обновления? Что ж, тогда гребная лодка — ваш вариант. В ней три сиденья, следовательно, она может вместить до 3 игроков или до 2 животных, включая лошадей! Как обычно, вы можете заменить сиденья (за исключением сиденья пилота) контейнерами по своему усмотрению. Вы также можете разместить два дополнительных контейнера на корме." + }, + { + "type": "patchouli:image", + "images": [ + "firmaciv:textures/gui/book/rowboat_isometric.png" + ] + }, + { + "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": "alekiships:crafting/oar", + "text": "Теперь добавьте весла через $(item)$(k:key.use)$() и вы готовы отправиться в путь!" + } + ], + "read_by_default": true, + "sortnum": 3 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/sloop.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/sloop.json new file mode 100644 index 000000000..c1081d214 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/sloop.json @@ -0,0 +1,218 @@ +{ + "name": "Шлюпы", + "category": "tfc:firmaciv", + "icon": "firmaciv:sloop_icon_only", + "pages": [ + { + "type": "patchouli:text", + "text": "Уже в Железном веке? Что ж, предпологаю, это как раз подходящее время для постройки приличного корабля. Шлюп шириной 4 блока и длиной более 8 блоков — впечатляющее обновление после гребной лодки! Он вмещает до 13 контейнеров и 7 пассажиров, а в зависимости от ветра может плыть экстремально быстро. Также на него можно поставить до 6 пушек!" + }, + { + "type": "patchouli:image", + "images": [ + "firmaciv:textures/gui/book/sloop_isometric.png" + ] + }, + { + "type": "patchouli:text", + "text": "Однако шлюп дорог, требуя множество ресурсов: стали, меди, шерсти и других материалов. Но затраты не ограничиваются материалами! Вам придется освоить управление им, что потребует определенной практики! Вам также, вероятно, захочется построить доки и другую инфраструктуру, если планируете подводить свой корабль близко к берегу." + }, + { + "type": "patchouli:text", + "text": "Вот список материалов для строительства шлюпа:$(br2)12 слитков стали$(br)24 слитков меди$(br)648 досок$(br)34 бревен$(br)24 шерстяных тканей$(br)6 нитей$(br)72 джутовых волокон" + }, + { + "type": "patchouli:crafting", + "title": "Обшивка", + "recipe": "firmaciv:crafting/watercraft_frame_flat", + "text": "Как и с гребной лодкой, вам следует начать с корабельной обшивки. Однако для больших кораблей понадобится новый плоский вариант." + }, + { + "type": "patchouli:multiblock", + "multiblock": { + "pattern": [ + [ + " ", + " ", + " ", + " ", + " ", + " ", + " " + ], + [ + " 12 ", + " 34 ", + " 1562", + " 30a4", + " 3aa4", + " 3aa4", + " 7889" + ] + ], + "mapping": { + "1": "firmaciv:watercraft_frame_angled[facing=west,shape=inner_right]", + "2": "firmaciv:watercraft_frame_angled[facing=west,shape=inner_left]", + "3": "firmaciv:watercraft_frame_angled[facing=north,shape=straight]", + "4": "firmaciv:watercraft_frame_angled[facing=south,shape=straight]", + "5": "firmaciv:watercraft_frame_angled[facing=west,shape=outer_right]", + "6": "firmaciv:watercraft_frame_angled[facing=west,shape=outer_left]", + "7": "firmaciv:watercraft_frame_angled[facing=east,shape=inner_left]", + "8": "firmaciv:watercraft_frame_angled[facing=east,shape=straight]", + "9": "firmaciv:watercraft_frame_angled[facing=east,shape=inner_right]", + "0": "firmaciv:watercraft_frame_flat", + "a": "firmaciv:watercraft_frame_flat" + } + }, + "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 ", + " 34 ", + " 1562", + " 30a4", + " 3aa4", + " 3aa4", + " 7889" + ] + ], + "mapping": { + "1": "firmaciv:wood/watercraft_frame/angled/oak[facing=west,shape=inner_right,frame_processed=3]", + "2": "firmaciv:wood/watercraft_frame/angled/oak[facing=west,shape=inner_left,frame_processed=3]", + "3": "firmaciv:wood/watercraft_frame/angled/oak[facing=north,shape=straight,frame_processed=3]", + "4": "firmaciv:wood/watercraft_frame/angled/oak[facing=south,shape=straight,frame_processed=3]", + "5": "firmaciv:wood/watercraft_frame/angled/oak[facing=west,shape=outer_right,frame_processed=3]", + "6": "firmaciv:wood/watercraft_frame/angled/oak[facing=west,shape=outer_left,frame_processed=3]", + "7": "firmaciv:wood/watercraft_frame/angled/oak[facing=east,shape=inner_left,frame_processed=3]", + "8": "firmaciv:wood/watercraft_frame/angled/oak[facing=east,shape=straight,frame_processed=3]", + "9": "firmaciv:wood/watercraft_frame/angled/oak[facing=east,shape=inner_right,frame_processed=3]", + "0": "firmaciv:wood/watercraft_frame/flat/oak[frame_processed=3]", + "a": "firmaciv:wood/watercraft_frame/flat/oak[frame_processed=3]" + } + }, + "name": "Обшивка шлюпа", + "text": "К каждой обшивке добавили четыре доски.", + "enable_visualize": true + }, + { + "type": "patchouli:multiblock", + "multiblock": { + "pattern": [ + [ + " ", + " ", + " ", + " ", + " ", + " ", + " " + ], + [ + " 12 ", + " 34 ", + " 1562", + " 30a4", + " 3aa4", + " 3aa4", + " 7889" + ] + ], + "mapping": { + "1": "firmaciv:wood/watercraft_frame/angled/oak[facing=west,shape=inner_right,frame_processed=7]", + "2": "firmaciv:wood/watercraft_frame/angled/oak[facing=west,shape=inner_left,frame_processed=7]", + "3": "firmaciv:wood/watercraft_frame/angled/oak[facing=north,shape=straight,frame_processed=7]", + "4": "firmaciv:wood/watercraft_frame/angled/oak[facing=south,shape=straight,frame_processed=7]", + "5": "firmaciv:wood/watercraft_frame/angled/oak[facing=west,shape=outer_right,frame_processed=7]", + "6": "firmaciv:wood/watercraft_frame/angled/oak[facing=west,shape=outer_left,frame_processed=7]", + "7": "firmaciv:wood/watercraft_frame/angled/oak[facing=east,shape=inner_left,frame_processed=7]", + "8": "firmaciv:wood/watercraft_frame/angled/oak[facing=east,shape=straight,frame_processed=7]", + "9": "firmaciv:wood/watercraft_frame/angled/oak[facing=east,shape=inner_right,frame_processed=7]", + "0": "firmaciv:wood/watercraft_frame/flat/oak[frame_processed=7]", + "a": "firmaciv:wood/watercraft_frame/flat/oak[frame_processed=7]" + } + }, + "name": "Обшивка шлюпа", + "text": "Используя кувалду в дополнительной руке, добавьте по четыре медных болта к каждой обшивке. Медные болты выковываются из медных слитков.", + "enable_visualize": true + }, + { + "type": "patchouli:multiblock", + "multiblock": { + "pattern": [ + [ + " ", + " ", + " L R", + " ", + " ", + " ", + " L R" + ], + [ + " 12 ", + " 34 ", + " 1562", + " 30a4", + " 3aa4", + " 3aa4", + " 7889" + ] + ], + "mapping": { + "1": "firmaciv:wood/watercraft_frame/angled/oak[facing=west,shape=inner_right,frame_processed=7]", + "2": "firmaciv:wood/watercraft_frame/angled/oak[facing=west,shape=inner_left,frame_processed=7]", + "3": "firmaciv:wood/watercraft_frame/angled/oak[facing=north,shape=straight,frame_processed=7]", + "4": "firmaciv:wood/watercraft_frame/angled/oak[facing=south,shape=straight,frame_processed=7]", + "5": "firmaciv:wood/watercraft_frame/angled/oak[facing=west,shape=outer_right,frame_processed=7]", + "6": "firmaciv:wood/watercraft_frame/angled/oak[facing=west,shape=outer_left,frame_processed=7]", + "7": "firmaciv:wood/watercraft_frame/angled/oak[facing=east,shape=inner_left,frame_processed=7]", + "8": "firmaciv:wood/watercraft_frame/angled/oak[facing=east,shape=straight,frame_processed=7]", + "9": "firmaciv:wood/watercraft_frame/angled/oak[facing=east,shape=inner_right,frame_processed=7]", + "0": "firmaciv:wood/watercraft_frame/flat/oak[frame_processed=7]", + "a": "firmaciv:wood/watercraft_frame/flat/oak[frame_processed=7]", + "L": "alekiships:cleat[facing=north]", + "R": "alekiships:cleat[facing=south]" + } + }, + "name": "Обшивка шлюпа", + "text": "Наконец, добавьте к корпусу швартовую утку, скованную из двойного стального слитка.", + "enable_visualize": true + }, + { + "type": "patchouli:text", + "text": "Однако строительство корпуса — это только первый шаг в создании шлюпа! После того, как корпус будет закончен, найдите значок синей кувалды и нажмите $(item)$(k:key.use)$(), чтобы добавить предметы, которые отображаются рядом с вашим перекрестием, достраивая остальную часть корабля.$(br2)На следующих страницах приведены рецепты уникальных предметов, которые понадобятся для завершения строительства." + }, + { + "type": "patchouli:crafting", + "recipe": "firmaciv:crafting/small_triangular_sail", + "recipe2": "firmaciv:crafting/medium_triangular_sail" + }, + { + "type": "patchouli:crafting", + "recipe2": "firmaciv:crafting/rope_coil", + "text": "Вам также потребуется якорь, который куется из двойной стальной пластины." + } + ], + "read_by_default": true, + "sortnum": 4 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/watercraft.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/watercraft.json new file mode 100644 index 000000000..b21e26723 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/firmaciv/watercraft.json @@ -0,0 +1,137 @@ +{ + "name": "Начало пути: Лодки", + "category": "tfc:firmaciv", + "icon": "firmaciv:anchor", + "pages": [ + { + "type": "patchouli:text", + "text": "Создание и использование лодки может оказаться сложнее, чем вы привыкли, но нет ничего лучше, чем построить идеальное судно и отправиться в открытые моря. Внимательно прочитайте это руководство и узнайте все тонкости резьбы, крафта, сооружения, гребли, управления и кастомизации лодки по своему усмотрению." + }, + { + "type": "patchouli:image", + + "images": [ + "firmaciv:textures/gui/book/boats.png" + ], + "border": true, + "text": "Путешествовать по миру или просто по своей местности часто лучше всего осуществлять по судоходным водным путям." + }, + { + "type": "patchouli:text", + "title": "Кастомизация", + "text": "На лодки можно устанавливать блоки! Как и при размещении блока на суше, нажмите $(item)$(k:key.use)$(), удерживая сундук, наковальню или верстак, чтобы добавить его на лодку. Нажмите $(item)$(k:key.use)$(), чтобы получить к нему доступ. Если вы не можете разместить блок в определенном месте, вероятно, это место пилота! Вы не сможете управлять лодкой, если на пути стоит блок! Вы можете убрать блоки, разбив их, как обычно." + }, + { + "type": "patchouli:image", + "border": true, + "images": [ + "firmaciv:textures/gui/book/customization.png" + ] + }, + { + "type": "patchouli:text", + "title": "Лодки как предметы", + "text": "Они больше не существуют, за исключением каяка! Если вы сломаете лодку, то она уронит только некоторые свои компоненты! Это означает, что вам понадобится каяк, если вы хотите переносить лодку через сушу, а также то, что вам может понадобиться построить доки для более крупных судов." + },{ + "type": "patchouli:image", + "images": [ + "firmaciv:textures/gui/book/items.png" + ] + }, + { + "type": "patchouli:text", + "title": "Перевозка животных", + "text": "Как и всегда, вы можете перемещать животных с помощью лодок! Однако имейте в виду, что более крупные животные, такие как лошади, поместятся только в достаточно большие лодки. Если животное находится в лодке и мешает вам, вам достаточно присесть и нажать $(item)$(k:key.use)$(), чтобы выбросить его из лодки. Животные становятся беспокойными через 2 дня в лодке и покидают ее самостоятельно через 3 дня." + }, + { + "type": "patchouli:image", + "title": "Управление", + "images": [ + "firmaciv:textures/gui/book/piloting.png" + ], + "text": "Каждая лодка имеет специальное сиденье, на котором нужно сидеть, чтобы управлять лодкой." + }, + { + "type": "patchouli:text", + "title": "Весла", + "text": "Если вам кажется, что ваша лодка движется медленно, проверьте, держите ли вы в руках подходящее весло или установлены ли весла в держателях для весел. В некоторых лодках несколько игроков могут грести, чтобы лодка двигалась быстрее." + }, + { + "type": "patchouli:image", + "images": [ + "firmaciv:textures/gui/book/paddles.png" + ] + }, + { + "type": "patchouli:text", + "title": "Шварт-ые утки и поводки", + "text": "Большинство лодок имеют хотя бы одну швартовую утку. Вы можете прикрепить поводок к швартовой утке и использовать его, чтобы тянуть лодку, а также подтягивать небольшие лодки к берегу или тоскать по плитам. Поводки также можно использовать для прикрепления лодок к заборам, а прикрепление двух швартовых уток к забору позволит вам легко швартовать большие лодки. Как вы поняли, вам придется активно использовать поводки, чтобы ваши лодки не уплыли!" + }, + { + "type": "patchouli:image", + "border": true, + "images": [ + "firmaciv:textures/gui/book/leads.png" + ] + }, + { + "type": "patchouli:text", + "title": "Якори", + "text": "Большие лодки имеют якоря, которые можно использовать для полной остановки лодки, при условии, что якорь закреплен на дне и паруса не развернуты. Лодка все равно будет поворачиваться под воздействием ветра, пока она стоит на якоре. Найдите значок якоря, расположенный на лебедке (якорной лебедке), и нажмите $(item)$(k:key.use)$(), чтобы опустить и поднять якорь." + }, + { + "type": "patchouli:image", + "border": true, + "images": [ + "firmaciv:textures/gui/book/anchor.png" + ], + "text": "Якорь с лебедкой на шлюпе." + }, + { + "type": "patchouli:text", + "title": "Паруса", + "text": "Парусные суда, конечно же, имеют паруса. Вам нужно будет развернуть их, чтобы правильно управлять лодкой. Найдите треугольную иконку паруса и нажмите $(item)$(k:key.use)$(), чтобы развернуть каждый парус. Поскольку большинство лодок имеют несколько парусов, вы можете комбинировать их для контроля скорости." + }, + { + "type": "patchouli:image", + "border": true, + "images": [ + "firmaciv:textures/gui/book/sails.png" + ], + "text": "На этом шлюпе развернуты как стаксель (слева), так и грот (справа)." + }, + { + "type": "patchouli:text", + "title": "Плавание под парусами", + "text": "В отличие от кораблей, к которым вы, возможно, привыкли, плавание под парусами — это навык в Firma: Civilization. Когда вы управляете парусным судном, появится новый элемент интерфейса, отображающий скорость и направление ветра, а также скорость лодки. Цвет стрелки ветра будет указывать на сложность плавания в данном направлении. Используйте клавиши движения вперед и назад, чтобы установить угол парусов, и экспериментируйте, чтобы найти наилучший угол ветра." + }, + { + "type": "patchouli:image", + "border": false, + "images": [ + "firmaciv:textures/gui/book/sailing.png" + ], + "text": "Интерфейс парусов поможет вам контролировать судно." + }, + { + "type": "patchouli:text", + "title": "Покраска", + "text": "Любая лодка, построенная с помощью корабельной обшивки, может быть окрашена, а любой парус может быть окрашен индивидуально. Просто держите краситель в руке и нажмите $(item)$(k:key.use)$(), когда увидите значок кисти, чтобы покрасить корпус или окрасить парус. Более крупные лодки имеют уникальные узоры для каждого цвета краски." + }, + { + "type": "patchouli:image", + "border": true, + "images": [ + "firmaciv:textures/gui/book/painting.png" + ], + "text": "Покрашенные паруса и корпус." + }, + { + "type": "patchouli:text", + "title": "Повреждения и ремонт", + "text": "Поврежденная лодка начнет покрываться трещинами. Для любой лодки, построенной из корабельной обшивки, используйте соответствующие доски для ремонта. При 90% повреждении лодка начнет набирать воду, а при 100% — утонет! Это не относится к каякам." + } + ], + "read_by_default": true, + "sortnum": 0 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/earth_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/earth_ore_index.json index fe2c9cc1f..0f9e368f0 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/earth_ore_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/earth_ore_index.json @@ -19,7 +19,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)Ванадий магнетит: $(l:tfg_ores/earth_vein_index#normal_magnetite)22%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)25%$(/l)$()$(li)Висмут: $(l:tfg_ores/earth_vein_index#surface_bismuthinite)90%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)80%$(/l)$()$(li)Вольфрамат: $(l:tfg_ores/earth_vein_index#deep_scheelite)35%$(/l)$()$(li)Вульфенит: $(l:tfg_ores/earth_vein_index#deep_molybdenum)47%$(/l)$()$(li)Галена: $(l:tfg_ores/earth_vein_index#normal_silver)30%$(/l)$()$(li)Гарниерит: $(l:tfg_ores/earth_vein_index#normal_garnierite)30%$(/l)$()$(li)Гематит: $(l:tfg_ores/earth_vein_index#normal_hematite)50%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)20%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)5%$(/l)$()$(li)Гётит: $(l:tfg_ores/earth_vein_index#deep_limonite)50%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_hematite)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)5%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)5%$(/l)$()$(li)Гипс: $(l:tfg_ores/earth_vein_index#normal_gypsum)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)15%$(/l)$()$(li)Глауконитовый песок: $(l:tfg_ores/earth_vein_index#normal_lubricant)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_olivine)15%$(/l)$()$(li)Гранатовый песок: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)25%$(/l)$()$(li)Гранитовый минеральный песок: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)25%$(/l)$()$(li)Графит: $(l:tfg_ores/earth_vein_index#normal_graphite)45%$(/l)$()$(li)Гроссуляр: $(l:tfg_ores/earth_vein_index#normal_manganese)37%$(/l)$()", + "text": "$(li)Ванадий магнетит: $(l:tfg_ores/earth_vein_index#normal_magnetite)22%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)25%$(/l)$()$(li)Висмут: $(l:tfg_ores/earth_vein_index#surface_bismuthinite)85%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)80%$(/l)$()$(li)Вольфрамат: $(l:tfg_ores/earth_vein_index#deep_scheelite)35%$(/l)$()$(li)Вульфенит: $(l:tfg_ores/earth_vein_index#deep_molybdenum)47%$(/l), $(l:tfg_ores/earth_vein_index#deep_pitchblende)12%$(/l)$()$(li)Галена: $(l:tfg_ores/earth_vein_index#normal_silver)30%$(/l)$()$(li)Гарниерит: $(l:tfg_ores/earth_vein_index#normal_garnierite)30%$(/l)$()$(li)Гематит: $(l:tfg_ores/earth_vein_index#normal_hematite)50%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)20%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)5%$(/l)$()$(li)Гётит: $(l:tfg_ores/earth_vein_index#deep_limonite)50%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_hematite)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)5%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)5%$(/l)$()$(li)Гипс: $(l:tfg_ores/earth_vein_index#normal_gypsum)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)15%$(/l)$()$(li)Глауконитовый песок: $(l:tfg_ores/earth_vein_index#normal_lubricant)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_olivine)15%$(/l)$()$(li)Гранатовый песок: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)25%$(/l)$()$(li)Гранитовый минеральный песок: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)25%$(/l)$()$(li)Графит: $(l:tfg_ores/earth_vein_index#normal_graphite)45%$(/l)$()$(li)Гроссуляр: $(l:tfg_ores/earth_vein_index#normal_manganese)37%$(/l)$()", "type": "patchouli:text" }, { @@ -39,12 +39,12 @@ }, { "Type": "patchouli:text", - "text": "$(li)Самородная Медь: $(l:tfg_ores/earth_vein_index#normal_copper)65%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)30%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()$(li)Самородная Серебро: $(l:tfg_ores/earth_vein_index#normal_silver)15%$(/l)$()$(li)Сапфир: $(l:tfg_ores/earth_vein_index#deep_sapphire)16%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/l)$()$(li)Свинец: $(l:tfg_ores/earth_vein_index#normal_silver)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)11%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)7%$(/l)$()$(li)Селитра: $(l:tfg_ores/earth_vein_index#normal_saltpeter)35%$(/l)$()$(li)Сера: $(l:tfg_ores/earth_vein_index#surface_sphalerite)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)50%$(/l), $(l:tfg_ores/earth_vein_index#normal_sphalerite)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)9%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)3%$(/l)$()$(li)Синий топаз: $(l:tfg_ores/earth_vein_index#deep_topaz)35%$(/l)$()$(li)Слюда: $(l:tfg_ores/earth_vein_index#normal_mica)25%$(/l)$()$(li)Смектическая глина: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_gypsum)15%$(/l)$()$(li)Содалит: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)Соль: $(l:tfg_ores/earth_vein_index#normal_salt)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)30%$(/l)$()$(li)Спасерит: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()$(li)Сподумен: $(l:tfg_ores/earth_vein_index#normal_spodumene)35%$(/l)$()$(li)Стибнит: $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)20%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()", + "text": "$(li)Самородная Медь: $(l:tfg_ores/earth_vein_index#normal_copper)65%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)30%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()$(li)Самородная Серебро: $(l:tfg_ores/earth_vein_index#normal_silver)15%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)5%$(/l)$()$(li)Сапфир: $(l:tfg_ores/earth_vein_index#deep_sapphire)16%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/l)$()$(li)Свинец: $(l:tfg_ores/earth_vein_index#normal_silver)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)11%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)7%$(/l)$()$(li)Селитра: $(l:tfg_ores/earth_vein_index#normal_saltpeter)35%$(/l)$()$(li)Сера: $(l:tfg_ores/earth_vein_index#surface_sphalerite)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)50%$(/l), $(l:tfg_ores/earth_vein_index#normal_sphalerite)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)9%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)3%$(/l)$()$(li)Синий топаз: $(l:tfg_ores/earth_vein_index#deep_topaz)35%$(/l)$()$(li)Слюда: $(l:tfg_ores/earth_vein_index#normal_mica)25%$(/l)$()$(li)Смектическая глина: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_gypsum)15%$(/l)$()$(li)Содалит: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)Соль: $(l:tfg_ores/earth_vein_index#normal_salt)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)30%$(/l)$()$(li)Спасерит: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()$(li)Сподумен: $(l:tfg_ores/earth_vein_index#normal_spodumene)35%$(/l)$()$(li)Стибнит: $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)20%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)Сфалерит: $(l:tfg_ores/earth_vein_index#normal_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#surface_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)15%$(/l)$()$(li)Тальк: $(l:tfg_ores/earth_vein_index#normal_lubricant)20%$(/l)$()$(li)Танталит: $(l:tfg_ores/earth_vein_index#normal_manganese)12%$(/l)$()$(li)Тетраэдрит: $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)50%$(/l)$()$(li)Топаз: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)Торий: $(l:tfg_ores/earth_vein_index#normal_beryllium)15%$(/l)$()$(li)Трикальцийфосфат: $(l:tfg_ores/earth_vein_index#normal_apatite)35%$(/l)$()$(li)Трона: $(l:tfg_ores/earth_vein_index#normal_lubricant)10%$(/l)$()$(li)Уголь: $(l:tfg_ores/earth_vein_index#normal_coal)100%$(/l), $(l:tfg_ores/earth_vein_index#normal_graphite)30%$(/l)$()$(li)Уранинит: $(l:tfg_ores/earth_vein_index#deep_pitchblende)50%$(/l)$()$(li)Уранит: $(l:tfg_ores/earth_vein_index#deep_pitchblende)50%$(/l)$()$(li)Халькозин: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)Халькопирит: $(l:tfg_ores/earth_vein_index#surface_copper)61%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)20%$(/l)$()$(li)Хромит: $(l:tfg_ores/earth_vein_index#deep_magnetite)33%$(/l), $(l:tfg_ores/earth_vein_index#normal_magnetite)4%$(/l)$()", + "text": "$(li)Сфалерит: $(l:tfg_ores/earth_vein_index#normal_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#surface_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)15%$(/l)$()$(li)Тальк: $(l:tfg_ores/earth_vein_index#normal_lubricant)20%$(/l)$()$(li)Танталит: $(l:tfg_ores/earth_vein_index#normal_manganese)12%$(/l)$()$(li)Тетраэдрит: $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)50%$(/l)$()$(li)Топаз: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)Торий: $(l:tfg_ores/earth_vein_index#normal_beryllium)15%$(/l)$()$(li)Трикальцийфосфат: $(l:tfg_ores/earth_vein_index#normal_apatite)35%$(/l)$()$(li)Трона: $(l:tfg_ores/earth_vein_index#normal_lubricant)10%$(/l)$()$(li)Уголь: $(l:tfg_ores/earth_vein_index#normal_coal)100%$(/l), $(l:tfg_ores/earth_vein_index#normal_graphite)30%$(/l)$()$(li)Уранинит: $(l:tfg_ores/earth_vein_index#deep_pitchblende)25%$(/l)$()$(li)Уранит: $(l:tfg_ores/earth_vein_index#deep_pitchblende)62%$(/l)$()$(li)Халькозин: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)Халькопирит: $(l:tfg_ores/earth_vein_index#surface_copper)61%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)20%$(/l)$()$(li)Хромит: $(l:tfg_ores/earth_vein_index#deep_magnetite)33%$(/l), $(l:tfg_ores/earth_vein_index#normal_magnetite)4%$(/l)$()", "type": "patchouli:text" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/earth_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/earth_vein_index.json index de5fe2c10..bca0bbc62 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/earth_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/earth_vein_index.json @@ -446,7 +446,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Процент руды$(): 90%$(br)$(thing)Плавится в$(): Висмут$(br)$(thing)Формула$(): Bi", + "text": "$(thing)Процент руды$(): 85%$(br)$(thing)Плавится в$(): Висмут$(br)$(thing)Формула$(): Bi", "type": "patchouli:multiblock" }, { @@ -469,6 +469,26 @@ "text": "$(thing)Процент руды$(): 7%$(br)$(thing)Плавится в$(): Свинец$(br)$(thing)Формула$(): Pb$(br)$(thing)Ядовит$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", "type": "patchouli:multiblock" }, + { + "Type": "patchouli:multiblock", + "name": "Самородная Серебро", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 5%$(br)$(thing)Плавится в$(): Серебро$(br)$(thing)Формула$(): Ag", + "type": "patchouli:multiblock" + }, { "Type": "patchouli:multiblock", "name": "Сера", @@ -489,6 +509,11 @@ "text": "$(thing)Процент руды$(): 3%$(br)$(thing)Хромит$(): Сера$(br)$(thing)Формула$(): S", "type": "patchouli:multiblock" }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, { "Type": "patchouli:text", "text": "$(thing)Редкость$(): 245$(br)$(thing)Плотность$(): 0.45$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): -64 — 10$(br)$(thing)Размер$(): 26$(br)$(thing)Индикатор Max Depth$(): 20$(br2)$(thing)Виды камней$(): Андезит, Базальт, Габбро, Гранит, Дацит, Диорит, Риолит", @@ -3363,7 +3388,7 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Редкость$(): 220$(br)$(thing)Плотность$(): 0.45$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): -64 — -20$(br)$(thing)Размер$(): 24$(br)$(thing)Индикатор Max Depth$(): 20$(br2)$(thing)Виды камней$(): Аспидный сланец, Габбро, Гнейс, Гранит, Диорит, Кварцит, Мрамор, Филлит, Шиферный сланец", + "text": "$(thing)Редкость$(): 240$(br)$(thing)Плотность$(): 0.45$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): -64 — -20$(br)$(thing)Размер$(): 24$(br)$(thing)Индикатор Max Depth$(): 20$(br2)$(thing)Виды камней$(): Аспидный сланец, Габбро, Гнейс, Гранит, Диорит, Кварцит, Мрамор, Филлит, Шиферный сланец", "title": "Уранинит и Уранит", "type": "patchouli:text", "anchor": "deep_pitchblende" @@ -3385,7 +3410,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Процент руды$(): 50%$(br)$(thing)Хромит$(): Уран, Торий, Свинец$(br)$(thing)Формула$(): (UO₂)₃ThPb$(br)$(thing)Ядовит$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "text": "$(thing)Процент руды$(): 62%$(br)$(thing)Хромит$(): Уран, Торий, Свинец$(br)$(thing)Формула$(): (UO₂)₃ThPb$(br)$(thing)Ядовит$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", "type": "patchouli:multiblock" }, { @@ -3405,13 +3430,28 @@ ] }, "enable_visualize": false, - "text": "$(thing)Процент руды$(): 50%$(br)$(thing)Хромит$(): Уран$(br)$(thing)Формула$(): UO₂$(br)$(thing)Ядовит$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "text": "$(thing)Процент руды$(): 25%$(br)$(thing)Хромит$(): Уран$(br)$(thing)Формула$(): UO₂$(br)$(thing)Ядовит$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "Type": "patchouli:multiblock", + "name": "Вульфенит", + "multiblock": { + "mapping": { + "0": "#forge:ores/wulfenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 12%$(br)$(thing)Хромит$(): Свинец, Молибден$(br)$(thing)Формула$(): PbMoO₄", + "type": "patchouli:multiblock" }, { "Type": "patchouli:text", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/mars_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/mars_ore_index.json index eed6edcfa..a5635e201 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/mars_ore_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/mars_ore_index.json @@ -14,7 +14,27 @@ }, { "Type": "patchouli:text", - "text": "$(li)Гематит: $(l:tfg_ores/mars_vein_index#mars_hematite)100%$(/l)$()", + "text": "$(li)Альмандин: $(l:tfg_ores/mars_vein_index#mars_almandine)36%$(/l)$()$(li)Апатит: $(l:tfg_ores/mars_vein_index#mars_apatite)47%$(/l)$()$(li)Асбест: $(l:tfg_ores/mars_vein_index#mars_quartzite)17%$(/l)$()$(li)Барит: $(l:tfg_ores/mars_vein_index#mars_quartzite)35%$(/l)$()$(li)Бастнезит: $(l:tfg_ores/mars_vein_index#mars_neodynium)58%$(/l)$()$(li)Бериллий: $(l:tfg_ores/mars_vein_index#mars_beryllium)35%$(/l)$()$(li)Боксит: $(l:tfg_ores/mars_vein_index#mars_sapphire)20%$(/l)$()$(li)Борнит: $(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)35%$(/l)$()$(li)Висмут: $(l:tfg_ores/mars_vein_index#surface_bismuthinite)40%$(/l)$()$(li)Вольфрамат: $(l:tfg_ores/mars_vein_index#mars_tungsten)33%$(/l)$()$(li)Галена: $(l:tfg_ores/mars_vein_index#mars_galena)40%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)35%$(/l)$()$(li)Гарниерит: $(l:tfg_ores/mars_vein_index#mars_nickel)35%$(/l)$()$(li)Гематит: $(l:tfg_ores/mars_vein_index#mars_hematite)50%$(/l), $(l:tfg_ores/mars_vein_index#surface_hematite)55%$(/l), $(l:tfg_ores/mars_vein_index#mars_coal)30%$(/l), $(l:tfg_ores/mars_vein_index#mars_pitchblende)29%$(/l), $(l:tfg_ores/mars_vein_index#mars_sulfur)19%$(/l), $(l:tfg_ores/mars_vein_index#surface_bismuthinite)20%$(/l), $(l:tfg_ores/mars_vein_index#mars_almandine)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_apatite)4%$(/l), $(l:tfg_ores/mars_vein_index#mars_copper)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_galena)6%$(/l), $(l:tfg_ores/mars_vein_index#mars_lubricant)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_neodynium)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_nickel)7%$(/l), $(l:tfg_ores/mars_vein_index#mars_quartzite)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_stibnite)4%$(/l), $(l:tfg_ores/mars_vein_index#mars_tungsten)4%$(/l)$()$(li)Гётит: $(l:tfg_ores/mars_vein_index#mars_hematite)15%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Гипс: $(l:tfg_ores/mars_vein_index#surface_bismuthinite)20%$(/l)$()$(li)Глауконитовый песок: $(l:tfg_ores/mars_vein_index#mars_lubricant)26%$(/l)$()$(li)Гроссуляр: $(l:tfg_ores/mars_vein_index#mars_tantalite)37%$(/l)$()$(li)Жёлтый лимонит: $(l:tfg_ores/mars_vein_index#mars_hematite)30%$(/l), $(l:tfg_ores/mars_vein_index#surface_hematite)33%$(/l)$()$(li)Зелёный сапфир: $(l:tfg_ores/mars_vein_index#mars_almandine)15%$(/l), $(l:tfg_ores/mars_vein_index#mars_sapphire)5%$(/l)$()$(li)Изумруд: $(l:tfg_ores/mars_vein_index#mars_beryllium)50%$(/l)$()$(li)Кальцит: $(l:tfg_ores/mars_vein_index#surface_hematite)5%$(/l)$()$(li)Каменная соль: $(l:tfg_ores/mars_vein_index#mars_salt)20%$(/l)$()$(li)Касситерит: $(l:tfg_ores/mars_vein_index#surface_cassiterite)55%$(/l)$()$(li)Кварцит: $(l:tfg_ores/mars_vein_index#mars_quartzite)41%$(/l)$()$(li)Кобальтит: $(l:tfg_ores/mars_vein_index#mars_nickel)28%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)11%$(/l)$()$(li)Лепидолит: $(l:tfg_ores/mars_vein_index#mars_salt)15%$(/l)$()$(li)Литий: $(l:tfg_ores/mars_vein_index#mars_tungsten)19%$(/l)$()$(li)Монацит: $(l:tfg_ores/mars_vein_index#mars_neodynium)29%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Мыльный камень: $(l:tfg_ores/mars_vein_index#mars_lubricant)31%$(/l)$()$(li)Неодим: $(l:tfg_ores/mars_vein_index#mars_neodynium)5%$(/l)$()$(li)Никель: $(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)25%$(/l), $(l:tfg_ores/mars_vein_index#mars_nickel)28%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)23%$(/l)$()$(li)Олово: $(l:tfg_ores/mars_vein_index#surface_cassiterite)35%$(/l)$()$(li)Пентландит: $(l:tfg_ores/mars_vein_index#mars_lubricant)15%$(/l)$()$(li)Пирит: $(l:tfg_ores/mars_vein_index#mars_sulfur)42%$(/l), $(l:tfg_ores/mars_vein_index#mars_copper)10%$(/l)$()$(li)Пиролюзит: $(l:tfg_ores/mars_vein_index#mars_tantalite)25%$(/l)$()$(li)Пироп: $(l:tfg_ores/mars_vein_index#mars_almandine)26%$(/l)$()$(li)Пирохлор: $(l:tfg_ores/mars_vein_index#mars_apatite)14%$(/l)$()$(li)Платина: $(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)15%$(/l)$()$(li)Реальгар: $(l:tfg_ores/mars_vein_index#mars_beryllium)15%$(/l)$()$(li)Редстоун: $(l:tfg_ores/mars_vein_index#deep_mars_chromite)45%$(/l), $(l:tfg_ores/mars_vein_index#surface_tetrahedrite)4%$(/l)$()$(li)Рубин: $(l:tfg_ores/mars_vein_index#deep_mars_chromite)35%$(/l)$()$(li)Самородная Золото: $(l:tfg_ores/mars_vein_index#mars_sapphire)55%$(/l), $(l:tfg_ores/mars_vein_index#mars_hematite)5%$(/l), $(l:tfg_ores/mars_vein_index#surface_hematite)5%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Самородная Медь: $(l:tfg_ores/mars_vein_index#mars_stibnite)28%$(/l), $(l:tfg_ores/mars_vein_index#mars_copper)20%$(/l), $(l:tfg_ores/mars_vein_index#surface_tetrahedrite)19%$(/l)$()$(li)Самородная Серебро: $(l:tfg_ores/mars_vein_index#mars_galena)20%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)11%$(/l)$()$(li)Сапфир: $(l:tfg_ores/mars_vein_index#mars_almandine)15%$(/l)$()$(li)Свинец: $(l:tfg_ores/mars_vein_index#mars_galena)33%$(/l)$()$(li)Селитра: $(l:tfg_ores/mars_vein_index#surface_cassiterite)10%$(/l)$()$(li)Сера: $(l:tfg_ores/mars_vein_index#mars_sulfur)14%$(/l), $(l:tfg_ores/mars_vein_index#surface_bismuthinite)20%$(/l)$()$(li)Соль: $(l:tfg_ores/mars_vein_index#mars_salt)30%$(/l)$()$(li)Спасерит: $(l:tfg_ores/mars_vein_index#mars_tantalite)25%$(/l)$()$(li)Сподумен: $(l:tfg_ores/mars_vein_index#mars_salt)35%$(/l)$()$(li)Стибнит: $(l:tfg_ores/mars_vein_index#mars_stibnite)19%$(/l), $(l:tfg_ores/mars_vein_index#surface_tetrahedrite)19%$(/l)$()$(li)Сфалерит: $(l:tfg_ores/mars_vein_index#mars_sulfur)23%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)17%$(/l)$()$(li)Тальк: $(l:tfg_ores/mars_vein_index#mars_lubricant)21%$(/l)$()$(li)Танталит: $(l:tfg_ores/mars_vein_index#mars_tantalite)12%$(/l)$()$(li)Тетраэдрит: $(l:tfg_ores/mars_vein_index#surface_tetrahedrite)57%$(/l), $(l:tfg_ores/mars_vein_index#mars_stibnite)47%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Торий: $(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)26%$(/l), $(l:tfg_ores/mars_vein_index#mars_pitchblende)29%$(/l)$()$(li)Трикальцийфосфат: $(l:tfg_ores/mars_vein_index#mars_apatite)33%$(/l)$()$(li)Уголь: $(l:tfg_ores/mars_vein_index#mars_coal)70%$(/l)$()$(li)Уранинит: $(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)21%$(/l)$()$(li)Уранит: $(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)52%$(/l), $(l:tfg_ores/mars_vein_index#mars_pitchblende)41%$(/l)$()$(li)Халькопирит: $(l:tfg_ores/mars_vein_index#mars_copper)65%$(/l)$()$(li)Хромит: $(l:tfg_ores/mars_vein_index#deep_mars_chromite)20%$(/l)$()$(li)Шеелит: $(l:tfg_ores/mars_vein_index#mars_tungsten)42%$(/l)$()$(li)Шелдонит: $(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)25%$(/l)$()$(li)Электротин: $(l:tfg_ores/mars_vein_index#mars_sapphire)20%$(/l)$()", "type": "patchouli:text" } ], diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/mars_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/mars_vein_index.json index be2bb0d86..0f3ba993b 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/mars_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/mars_vein_index.json @@ -14,13 +14,1333 @@ }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_hematite)(Placeholder Vein)$()$()", + "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_almandine)Almandine & Sapphire$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)Bornite & Cooperite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_coal)Coal & Hematite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_sapphire)Gold, Electrotine, & Bauxite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_pitchblende)Pitchblende, Thorium, & Hematite$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)Pitchblende, Thorium, & Uraninite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_quartzite)Quartzite, Asbestos, & Barite$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_chromite)Redstone & Chromite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_salt)Salts & Spodumene$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_lubricant)Soapstone, Talc, & Glauconite$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_nickel_galena)Sphalerite & Galena$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_apatite)Апатит и Пирохлор$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_neodynium)Бастнезит и Монацит$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_bismuthinite)Висмут$()$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(thing)Редкость$(): 210$(br)$(thing)Плотность$(): 0.4$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): -16 — 100$(br)$(thing)Размер$(): 40$(br)$(thing)Индикатор Max Depth$(): 50$(br2)$(thing)Виды камней$(): Red Granite, Аргиллит, Аргиллит, Базальт, Габбро, Гранит, Дацит, Диорит, Доломит, Известняк, Конгломерат, Кремнистый сланец, Мел, Сланец, Трахит", - "title": "(Placeholder Vein)", + "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_nickel)Гарниерит и Кобальтит$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_hematite)Гематит и Лимонит$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_hematite)Гематит и Лимонит$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_beryllium)Изумруд и Бериллий$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_cassiterite)Касситерит$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_tantalite)Марганец и Тантал$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_copper)Медь и Халькопирит$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_galena)Серебро, Галена и Свинец$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_sulfur)Сфалерит & Пирит$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_stibnite)Тетраэдрит (обычный)$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_tetrahedrite)Тетраэдрит (Поверхностный)$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_tungsten)Шеелит и Вольфрамат$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 280$(br)$(thing)Плотность$(): 0.35$(br)$(thing)Вид$(): дискообразная жила$(br)$(thing)Y-уровень$(): 0 — 70$(br)$(thing)Размер$(): 65$(br)$(thing)Высота$(): 8$(br)$(thing)Индикатор Max Depth$(): 15$(br2)$(thing)Виды камней$(): Red Granite, Аргиллит, Аргиллит, Габбро, Диорит, Доломит, Известняк, Кремнистый сланец, Сланец, Трахит", + "title": "Almandine & Sapphire", + "type": "patchouli:text", + "anchor": "mars_almandine" + }, + { + "Type": "patchouli:multiblock", + "name": "Альмандин", + "multiblock": { + "mapping": { + "0": "#forge:ores/almandine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 36%$(br)$(thing)Хромит$(): Алюминий, Железо$(br)$(thing)Формула$(): Al₂Fe₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Пироп", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrope" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 26%$(br)$(thing)Хромит$(): Алюминий, Магний$(br)$(thing)Формула$(): Al₂Mg₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Сапфир", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 15%$(br)$(thing)Хромит$(): Алюминий$(br)$(thing)Формула$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Зелёный сапфир", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 15%$(br)$(thing)Хромит$(): Алюминий$(br)$(thing)Формула$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 5%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 370$(br)$(thing)Плотность$(): 0.3$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): -20 — 0$(br)$(thing)Размер$(): 60$(br)$(thing)Индикатор Max Depth$(): 20$(br2)$(thing)Виды камней$(): Red Granite, Аргиллит, Базальт, Дацит, Диорит, Конгломерат, Кремнистый сланец, Мел, Трахит", + "title": "Bornite & Cooperite", + "type": "patchouli:text", + "anchor": "deep_mars_sheldonite" + }, + { + "Type": "patchouli:multiblock", + "name": "Борнит", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 35%$(br)$(thing)Хромит$(): Медь$(br)$(thing)Формула$(): Cu₅FeS₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Шелдонит", + "multiblock": { + "mapping": { + "0": "#forge:ores/cooperite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 25%$(br)$(thing)Хромит$(): Платина, Никель, Палладий$(br)$(thing)Формула$(): Pt₃NiSPd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Никель", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 25%$(br)$(thing)Плавится в$(): Никель$(br)$(thing)Формула$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Платина", + "multiblock": { + "mapping": { + "0": "#forge:ores/platinum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 15%$(br)$(thing)Плавится в$(): Платина$(br)$(thing)Формула$(): Pt", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 215$(br)$(thing)Плотность$(): 0.6$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): 0 — 70$(br)$(thing)Размер$(): 55$(br)$(thing)Индикатор Max Depth$(): 10$(br2)$(thing)Виды камней$(): Red Granite, Аргиллит, Аргиллит, Базальт, Гранит, Дацит, Диорит, Доломит, Конгломерат, Мел, Трахит", + "title": "Coal & Hematite", + "type": "patchouli:text", + "anchor": "mars_coal" + }, + { + "Type": "patchouli:multiblock", + "name": "Уголь", + "multiblock": { + "mapping": { + "0": "#forge:ores/coal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 70%$(br)$(thing)Используется для$(): топливо, ректификация$(br)$(thing)Формула$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 30%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 230$(br)$(thing)Плотность$(): 0.4$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): 0 — 70$(br)$(thing)Размер$(): 40$(br)$(thing)Индикатор Max Depth$(): 15$(br2)$(thing)Виды камней$(): Аргиллит, Габбро, Гранит, Диорит, Кремнистый сланец, Мел, Сланец", + "title": "Gold, Electrotine, & Bauxite", + "type": "patchouli:text", + "anchor": "mars_sapphire" + }, + { + "Type": "patchouli:multiblock", + "name": "Самородная Золото", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 55%$(br)$(thing)Плавится в$(): Золото$(br)$(thing)Формула$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Боксит", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 20%$(br)$(thing)Хромит$(): Алюминий$(br)$(thing)Формула$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Электротин", + "multiblock": { + "mapping": { + "0": "#forge:ores/electrotine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 20%$(br)$(thing)Хромит$(): Золото, Серебро, Редстоун$(br)$(thing)Формула$(): (Si(FeS₂)₅(CrAl₂O₃)Hg₃)(AgAu)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Зелёный сапфир", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 5%$(br)$(thing)Хромит$(): Алюминий$(br)$(thing)Формула$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 220$(br)$(thing)Плотность$(): 0.55$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): 0 — 70$(br)$(thing)Размер$(): 20$(br)$(thing)Индикатор Max Depth$(): 15$(br2)$(thing)Виды камней$(): Red Granite, Аргиллит, Габбро, Дацит, Диорит, Доломит, Конгломерат, Сланец, Трахит", + "title": "Pitchblende, Thorium, & Hematite", + "type": "patchouli:text", + "anchor": "mars_pitchblende" + }, + { + "Type": "patchouli:multiblock", + "name": "Уранит", + "multiblock": { + "mapping": { + "0": "#forge:ores/pitchblende" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 41%$(br)$(thing)Хромит$(): Уран, Торий, Свинец$(br)$(thing)Формула$(): (UO₂)₃ThPb$(br)$(thing)Ядовит$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Торий", + "multiblock": { + "mapping": { + "0": "#forge:ores/thorium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 29%$(br)$(thing)Хромит$(): Торий$(br)$(thing)Формула$(): Th", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 29%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 370$(br)$(thing)Плотность$(): 0.3$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): -20 — 0$(br)$(thing)Размер$(): 60$(br)$(thing)Индикатор Max Depth$(): 20$(br2)$(thing)Виды камней$(): Аргиллит, Аргиллит, Габбро, Дацит, Диорит, Сланец, Трахит", + "title": "Pitchblende, Thorium, & Uraninite", + "type": "patchouli:text", + "anchor": "deep_mars_pitchblende" + }, + { + "Type": "patchouli:multiblock", + "name": "Уранит", + "multiblock": { + "mapping": { + "0": "#forge:ores/pitchblende" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 52%$(br)$(thing)Хромит$(): Уран, Торий, Свинец$(br)$(thing)Формула$(): (UO₂)₃ThPb$(br)$(thing)Ядовит$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Торий", + "multiblock": { + "mapping": { + "0": "#forge:ores/thorium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 26%$(br)$(thing)Хромит$(): Торий$(br)$(thing)Формула$(): Th", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Уранинит", + "multiblock": { + "mapping": { + "0": "#forge:ores/uraninite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 21%$(br)$(thing)Хромит$(): Уран$(br)$(thing)Формула$(): UO₂$(br)$(thing)Ядовит$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 210$(br)$(thing)Плотность$(): 0.3$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): 0 — 70$(br)$(thing)Размер$(): 40$(br)$(thing)Индикатор Max Depth$(): 15$(br2)$(thing)Виды камней$(): Red Granite, Аргиллит, Аргиллит, Гранит, Известняк, Кремнистый сланец, Мел, Сланец, Трахит", + "title": "Quartzite, Asbestos, & Barite", + "type": "patchouli:text", + "anchor": "mars_quartzite" + }, + { + "Type": "patchouli:multiblock", + "name": "Кварцит", + "multiblock": { + "mapping": { + "0": "#forge:ores/quartzite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 41%$(br)$(thing)Используется для$(): компоненты уровня LV$(br)$(thing)Формула$(): SiO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Барит", + "multiblock": { + "mapping": { + "0": "#forge:ores/barite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 35%$(br)$(thing)Хромит$(): Барий$(br)$(thing)Формула$(): BaSO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Асбест", + "multiblock": { + "mapping": { + "0": "#forge:ores/asbestos" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 17%$(br)$(thing)Хромит$(): Магний$(br)$(thing)Формула$(): Mg₃Si₂H₄O₉$(br)$(thing)Ядовит$(): $(c)$(t:Requires Face Mask)Asbestosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 5%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 370$(br)$(thing)Плотность$(): 0.3$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): -20 — 0$(br)$(thing)Размер$(): 60$(br)$(thing)Индикатор Max Depth$(): 20$(br2)$(thing)Виды камней$(): Аргиллит, Аргиллит, Базальт, Дацит, Известняк, Кремнистый сланец, Мел, Сланец", + "title": "Redstone & Chromite", + "type": "patchouli:text", + "anchor": "deep_mars_chromite" + }, + { + "Type": "patchouli:multiblock", + "name": "Редстоун", + "multiblock": { + "mapping": { + "0": "#forge:ores/redstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 45%$(br)$(thing)Плавится в$(): Редстоун$(br)$(thing)Формула$(): Si(FeS₂)₅(CrAl₂O₃)Hg₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Рубин", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 35%$(br)$(thing)Хромит$(): Хром, Алюминий$(br)$(thing)Формула$(): CrAl₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Хромит", + "multiblock": { + "mapping": { + "0": "#forge:ores/chromite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 20%$(br)$(thing)Хромит$(): Хром$(br)$(thing)Формула$(): FeCr₂O₄$(br)$(thing)Ядовит$(): $(c)$(t:Requires Rubber Gloves)Irritant (Skin Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 210$(br)$(thing)Плотность$(): 0.4$(br)$(thing)Вид$(): дискообразная жила$(br)$(thing)Y-уровень$(): 0 — 70$(br)$(thing)Размер$(): 40$(br)$(thing)Высота$(): 6$(br)$(thing)Индикатор Max Depth$(): 15$(br2)$(thing)Виды камней$(): Red Granite, Аргиллит, Аргиллит, Гранит, Диорит, Известняк, Кремнистый сланец, Мел, Трахит", + "title": "Salts & Spodumene", + "type": "patchouli:text", + "anchor": "mars_salt" + }, + { + "Type": "patchouli:multiblock", + "name": "Сподумен", + "multiblock": { + "mapping": { + "0": "#forge:ores/spodumene" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 35%$(br)$(thing)Хромит$(): Литий, Алюминий$(br)$(thing)Формула$(): LiAlSi₂O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Соль", + "multiblock": { + "mapping": { + "0": "#forge:ores/salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 30%$(br)$(thing)Хромит$(): Натрий, Хлор$(br)$(thing)Формула$(): NaCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Каменная соль", + "multiblock": { + "mapping": { + "0": "#forge:ores/rock_salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 20%$(br)$(thing)Хромит$(): Калий, Хлор$(br)$(thing)Формула$(): KCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Лепидолит", + "multiblock": { + "mapping": { + "0": "#forge:ores/lepidolite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 15%$(br)$(thing)Хромит$(): Калий, Литий, Алюминий, Фтор$(br)$(thing)Формула$(): KLi₃Al₄F₂O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 220$(br)$(thing)Плотность$(): 0.25$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): 0 — 70$(br)$(thing)Размер$(): 30$(br)$(thing)Индикатор Max Depth$(): 15$(br2)$(thing)Виды камней$(): Red Granite, Аргиллит, Аргиллит, Гранит, Дацит, Диорит, Доломит, Известняк, Конгломерат, Сланец", + "title": "Soapstone, Talc, & Glauconite", + "type": "patchouli:text", + "anchor": "mars_lubricant" + }, + { + "Type": "patchouli:multiblock", + "name": "Мыльный камень", + "multiblock": { + "mapping": { + "0": "#forge:ores/soapstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 31%$(br)$(thing)Хромит$(): Магний$(br)$(thing)Формула$(): Mg₃Si₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Глауконитовый песок", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 26%$(br)$(thing)Хромит$(): Магний, Алюминий$(br)$(thing)Формула$(): KMg₂Al₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Тальк", + "multiblock": { + "mapping": { + "0": "#forge:ores/talc" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 21%$(br)$(thing)Хромит$(): Магний$(br)$(thing)Формула$(): Mg₃Si₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Пентландит", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 15%$(br)$(thing)Плавится в$(): Никель$(br)$(thing)Формула$(): Ni₉S₈", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 5%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 150$(br)$(thing)Плотность$(): 0.25$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): 80 — 180$(br)$(thing)Размер$(): 45$(br)$(thing)Индикатор Max Depth$(): 40$(br2)$(thing)Виды камней$(): Red Granite, Аргиллит, Аргиллит, Базальт, Габбро, Гранит, Дацит, Диорит, Доломит, Известняк, Конгломерат, Кремнистый сланец, Мел, Сланец, Трахит", + "title": "Sphalerite & Galena", + "type": "patchouli:text", + "anchor": "surface_nickel_galena" + }, + { + "Type": "patchouli:multiblock", + "name": "Галена", + "multiblock": { + "mapping": { + "0": "#forge:ores/galena" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 35%$(br)$(thing)Плавится в$(): Свинец$(br)$(thing)Формула$(): PbS$(br)$(thing)Ядовит$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Никель", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 23%$(br)$(thing)Плавится в$(): Никель$(br)$(thing)Формула$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Сфалерит", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 17%$(br)$(thing)Плавится в$(): Цинк$(br)$(thing)Формула$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Самородная Серебро", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 11%$(br)$(thing)Плавится в$(): Серебро$(br)$(thing)Формула$(): Ag", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Кобальтит", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobaltite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 11%$(br)$(thing)Хромит$(): Кобальт, Мышьяк$(br)$(thing)Формула$(): CoAsS$(br)$(thing)Ядовит$(): $(c)$(t:Requires Face Mask)Arsenicosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 220$(br)$(thing)Плотность$(): 0.25$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): 0 — 70$(br)$(thing)Размер$(): 45$(br)$(thing)Индикатор Max Depth$(): 15$(br2)$(thing)Виды камней$(): Red Granite, Аргиллит, Базальт, Дацит, Известняк, Конгломерат, Кремнистый сланец, Мел, Сланец, Трахит", + "title": "Апатит и Пирохлор", + "type": "patchouli:text", + "anchor": "mars_apatite" + }, + { + "Type": "patchouli:multiblock", + "name": "Апатит", + "multiblock": { + "mapping": { + "0": "#forge:ores/apatite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 47%$(br)$(thing)Хромит$(): Кальций, Фосфор$(br)$(thing)Формула$(): Ca₅(PO₄)₃Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Трикальцийфосфат", + "multiblock": { + "mapping": { + "0": "#forge:ores/tricalcium_phosphate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 33%$(br)$(thing)Хромит$(): Кальций, Фосфор$(br)$(thing)Формула$(): Ca₃(PO₄)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Пирохлор", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrochlore" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 14%$(br)$(thing)Хромит$(): Ниобий$(br)$(thing)Формула$(): Ca₂Nb₂O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 4%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 215$(br)$(thing)Плотность$(): 0.4$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): 0 — 70$(br)$(thing)Размер$(): 45$(br)$(thing)Индикатор Max Depth$(): 15$(br2)$(thing)Виды камней$(): Аргиллит, Базальт, Габбро, Диорит, Доломит, Кремнистый сланец, Мел, Трахит", + "title": "Бастнезит и Монацит", + "type": "patchouli:text", + "anchor": "mars_neodynium" + }, + { + "Type": "patchouli:multiblock", + "name": "Бастнезит", + "multiblock": { + "mapping": { + "0": "#forge:ores/bastnasite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 58%$(br)$(thing)Хромит$(): Церий, Фтор$(br)$(thing)Формула$(): CeCFO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Монацит", + "multiblock": { + "mapping": { + "0": "#forge:ores/monazite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 29%$(br)$(thing)Хромит$(): Фосфор, Редкая земля$(br)$(thing)Формула$(): ?(PO₄)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Неодим", + "multiblock": { + "mapping": { + "0": "#forge:ores/neodymium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 5%$(br)$(thing)Хромит$(): Неодим$(br)$(thing)Формула$(): Nd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 5%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 140$(br)$(thing)Плотность$(): 0.25$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): 80 — 180$(br)$(thing)Размер$(): 45$(br)$(thing)Индикатор Max Depth$(): 40$(br2)$(thing)Виды камней$(): Red Granite, Аргиллит, Аргиллит, Базальт, Габбро, Гранит, Дацит, Диорит, Доломит, Известняк, Конгломерат, Кремнистый сланец, Мел, Сланец, Трахит", + "title": "Висмут", + "type": "patchouli:text", + "anchor": "surface_bismuthinite" + }, + { + "Type": "patchouli:multiblock", + "name": "Висмут", + "multiblock": { + "mapping": { + "0": "#forge:ores/bismuth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 40%$(br)$(thing)Плавится в$(): Висмут$(br)$(thing)Формула$(): Bi", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 20%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Сера", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 20%$(br)$(thing)Хромит$(): Сера$(br)$(thing)Формула$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гипс", + "multiblock": { + "mapping": { + "0": "#forge:ores/gypsum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 20%$(br)$(thing)Используется для$(): Алебастр (можно покрасить) и его кирпичи$(br)$(thing)Формула$(): CaS(H₂O)₂O₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 250$(br)$(thing)Плотность$(): 0.4$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): 0 — 70$(br)$(thing)Размер$(): 55$(br)$(thing)Индикатор Max Depth$(): 40$(br2)$(thing)Виды камней$(): Red Granite, Аргиллит, Аргиллит, Базальт, Гранит, Дацит, Известняк, Мел, Сланец", + "title": "Гарниерит и Кобальтит", + "type": "patchouli:text", + "anchor": "mars_nickel" + }, + { + "Type": "patchouli:multiblock", + "name": "Гарниерит", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnierite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 35%$(br)$(thing)Плавится в$(): Никель$(br)$(thing)Формула$(): NiO", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Никель", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 28%$(br)$(thing)Плавится в$(): Никель$(br)$(thing)Формула$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Кобальтит", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobaltite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 28%$(br)$(thing)Хромит$(): Кобальт, Мышьяк$(br)$(thing)Формула$(): CoAsS$(br)$(thing)Ядовит$(): $(c)$(t:Requires Face Mask)Arsenicosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 7%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 210$(br)$(thing)Плотность$(): 0.4$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): 0 — 70$(br)$(thing)Размер$(): 40$(br)$(thing)Индикатор Max Depth$(): 30$(br2)$(thing)Виды камней$(): Red Granite, Аргиллит, Аргиллит, Базальт, Дацит, Доломит, Известняк, Конгломерат", + "title": "Гематит и Лимонит", "type": "patchouli:text", "anchor": "mars_hematite" }, @@ -41,8 +1361,943 @@ ] }, "enable_visualize": false, - "text": "$(thing)Процент руды$(): 100%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): Fe₂O₃", + "text": "$(thing)Процент руды$(): 50%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): Fe₂O₃", "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Жёлтый лимонит", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 30%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гётит", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 15%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Самородная Золото", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 5%$(br)$(thing)Плавится в$(): Золото$(br)$(thing)Формула$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 140$(br)$(thing)Плотность$(): 0.25$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): 80 — 180$(br)$(thing)Размер$(): 45$(br)$(thing)Индикатор Max Depth$(): 40$(br2)$(thing)Виды камней$(): Red Granite, Аргиллит, Аргиллит, Базальт, Габбро, Гранит, Дацит, Диорит, Доломит, Известняк, Конгломерат, Кремнистый сланец, Мел, Сланец, Трахит", + "title": "Гематит и Лимонит", + "type": "patchouli:text", + "anchor": "surface_hematite" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 55%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Жёлтый лимонит", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 33%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Самородная Золото", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 5%$(br)$(thing)Плавится в$(): Золото$(br)$(thing)Формула$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Кальцит", + "multiblock": { + "mapping": { + "0": "#forge:ores/calcite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 5%$(br)$(thing)Хромит$(): Кальций$(br)$(thing)Формула$(): CaCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 350$(br)$(thing)Плотность$(): 0.35$(br)$(thing)Вид$(): трубчатая жила$(br)$(thing)Y-уровень$(): -20 — 50$(br)$(thing)Высота$(): 40$(br)$(thing)Радиус$(): 8$(br)$(thing)Индикатор Max Depth$(): 15$(br2)$(thing)Виды камней$(): Андезит, Базальт, Дацит, Риолит", + "title": "Изумруд и Бериллий", + "type": "patchouli:text", + "anchor": "mars_beryllium" + }, + { + "Type": "patchouli:multiblock", + "name": "Изумруд", + "multiblock": { + "mapping": { + "0": "#forge:ores/emerald" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 50%$(br)$(thing)Используется для$(): компоненты уровня MV, Предметные фильтры (Тэг)$(br)$(thing)Формула$(): Be₃Al₂Si₆O₁₈", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Бериллий", + "multiblock": { + "mapping": { + "0": "#forge:ores/beryllium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 35%$(br)$(thing)Используется для$(): Эндер-жемчуг$(br)$(thing)Формула$(): Be$(br)$(thing)Ядовит$(): $(c)$(t:Requires Rubber Gloves)Berylliosis (Skin Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Реальгар", + "multiblock": { + "mapping": { + "0": "#forge:ores/realgar" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 15%$(br)$(thing)Хромит$(): Мышьяк$(br)$(thing)Формула$(): As₄S₄$(br)$(thing)Ядовит$(): $(c)$(t:Requires Face Mask)Arsenicosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 135$(br)$(thing)Плотность$(): 0.25$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): 80 — 180$(br)$(thing)Размер$(): 45$(br)$(thing)Индикатор Max Depth$(): 40$(br2)$(thing)Виды камней$(): Red Granite, Аргиллит, Аргиллит, Базальт, Габбро, Гранит, Дацит, Диорит, Доломит, Известняк, Конгломерат, Кремнистый сланец, Мел, Сланец, Трахит", + "title": "Касситерит", + "type": "patchouli:text", + "anchor": "surface_cassiterite" + }, + { + "Type": "patchouli:multiblock", + "name": "Касситерит", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 55%$(br)$(thing)Плавится в$(): Олово$(br)$(thing)Формула$(): SnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Олово", + "multiblock": { + "mapping": { + "0": "#forge:ores/tin" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 35%$(br)$(thing)Плавится в$(): Олово$(br)$(thing)Формула$(): Sn", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Селитра", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 10%$(br)$(thing)Хромит$(): Калий, Азот$(br)$(thing)Формула$(): KNO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 230$(br)$(thing)Плотность$(): 0.3$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): 0 — 70$(br)$(thing)Размер$(): 42$(br)$(thing)Индикатор Max Depth$(): 15$(br2)$(thing)Виды камней$(): Red Granite, Аргиллит, Аргиллит, Базальт, Габбро, Известняк, Кремнистый сланец, Мел, Сланец, Трахит", + "title": "Марганец и Тантал", + "type": "patchouli:text", + "anchor": "mars_tantalite" + }, + { + "Type": "patchouli:multiblock", + "name": "Гроссуляр", + "multiblock": { + "mapping": { + "0": "#forge:ores/grossular" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 37%$(br)$(thing)Хромит$(): Кальций, Алюминий$(br)$(thing)Формула$(): Ca₃Al₂Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Спасерит", + "multiblock": { + "mapping": { + "0": "#forge:ores/spessartine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 25%$(br)$(thing)Хромит$(): Марганец, Алюминий$(br)$(thing)Формула$(): Al₂Mn₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Пиролюзит", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrolusite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 25%$(br)$(thing)Хромит$(): Марганец$(br)$(thing)Формула$(): MnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Танталит", + "multiblock": { + "mapping": { + "0": "#forge:ores/tantalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 12%$(br)$(thing)Хромит$(): Марганец, Тантал$(br)$(thing)Формула$(): MnTa₂O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 220$(br)$(thing)Плотность$(): 0.4$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): 0 — 70$(br)$(thing)Размер$(): 50$(br)$(thing)Индикатор Max Depth$(): 40$(br2)$(thing)Виды камней$(): Аргиллит, Аргиллит, Базальт, Дацит, Доломит, Известняк, Конгломерат, Сланец, Трахит", + "title": "Медь и Халькопирит", + "type": "patchouli:text", + "anchor": "mars_copper" + }, + { + "Type": "patchouli:multiblock", + "name": "Халькопирит", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcopyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 65%$(br)$(thing)Плавится в$(): Медь$(br)$(thing)Формула$(): CuFeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Самородная Медь", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 20%$(br)$(thing)Плавится в$(): Медь$(br)$(thing)Формула$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Пирит", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 10%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): FeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 5%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 215$(br)$(thing)Плотность$(): 0.4$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): 0 — 70$(br)$(thing)Размер$(): 50$(br)$(thing)Индикатор Max Depth$(): 40$(br2)$(thing)Виды камней$(): Red Granite, Аргиллит, Аргиллит, Базальт, Габбро, Гранит, Дацит, Кремнистый сланец, Мел, Сланец", + "title": "Серебро, Галена и Свинец", + "type": "patchouli:text", + "anchor": "mars_galena" + }, + { + "Type": "patchouli:multiblock", + "name": "Галена", + "multiblock": { + "mapping": { + "0": "#forge:ores/galena" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 40%$(br)$(thing)Плавится в$(): Свинец$(br)$(thing)Формула$(): PbS$(br)$(thing)Ядовит$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Свинец", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 33%$(br)$(thing)Плавится в$(): Свинец$(br)$(thing)Формула$(): Pb$(br)$(thing)Ядовит$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Самородная Серебро", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 20%$(br)$(thing)Плавится в$(): Серебро$(br)$(thing)Формула$(): Ag", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 6%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 215$(br)$(thing)Плотность$(): 0.2$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): 0 — 70$(br)$(thing)Размер$(): 45$(br)$(thing)Индикатор Max Depth$(): 30$(br2)$(thing)Виды камней$(): Аргиллит, Базальт, Габбро, Гранит, Дацит, Диорит, Кремнистый сланец, Мел, Трахит", + "title": "Сфалерит & Пирит", + "type": "patchouli:text", + "anchor": "mars_sulfur" + }, + { + "Type": "patchouli:multiblock", + "name": "Пирит", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 42%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): FeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Сфалерит", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 23%$(br)$(thing)Плавится в$(): Цинк$(br)$(thing)Формула$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 19%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Сера", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 14%$(br)$(thing)Хромит$(): Сера$(br)$(thing)Формула$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 210$(br)$(thing)Плотность$(): 0.4$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): 0 — 70$(br)$(thing)Размер$(): 40$(br)$(thing)Индикатор Max Depth$(): 40$(br2)$(thing)Виды камней$(): Red Granite, Аргиллит, Базальт, Габбро, Дацит, Диорит, Доломит, Кремнистый сланец, Мел, Сланец, Трахит", + "title": "Тетраэдрит (обычный)", + "type": "patchouli:text", + "anchor": "mars_stibnite" + }, + { + "Type": "patchouli:multiblock", + "name": "Тетраэдрит", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 47%$(br)$(thing)Плавится в$(): Медь$(br)$(thing)Формула$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Самородная Медь", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 28%$(br)$(thing)Плавится в$(): Медь$(br)$(thing)Формула$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Стибнит", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 19%$(br)$(thing)Плавится в$(): Сурьма$(br)$(thing)Формула$(): Sb₂S₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 4%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 140$(br)$(thing)Плотность$(): 0.25$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): 80 — 180$(br)$(thing)Размер$(): 45$(br)$(thing)Индикатор Max Depth$(): 40$(br2)$(thing)Виды камней$(): Red Granite, Аргиллит, Аргиллит, Базальт, Габбро, Гранит, Дацит, Диорит, Доломит, Известняк, Конгломерат, Кремнистый сланец, Мел, Сланец, Трахит", + "title": "Тетраэдрит (Поверхностный)", + "type": "patchouli:text", + "anchor": "surface_tetrahedrite" + }, + { + "Type": "patchouli:multiblock", + "name": "Тетраэдрит", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 57%$(br)$(thing)Плавится в$(): Медь$(br)$(thing)Формула$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Самородная Медь", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 19%$(br)$(thing)Плавится в$(): Медь$(br)$(thing)Формула$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Стибнит", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 19%$(br)$(thing)Плавится в$(): Сурьма$(br)$(thing)Формула$(): Sb₂S₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Редстоун", + "multiblock": { + "mapping": { + "0": "#forge:ores/redstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 4%$(br)$(thing)Плавится в$(): Редстоун$(br)$(thing)Формула$(): Si(FeS₂)₅(CrAl₂O₃)Hg₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Редкость$(): 280$(br)$(thing)Плотность$(): 0.45$(br)$(thing)Вид$(): кластерная жила$(br)$(thing)Y-уровень$(): 0 — 70$(br)$(thing)Размер$(): 50$(br)$(thing)Индикатор Max Depth$(): 15$(br2)$(thing)Виды камней$(): Red Granite, Аргиллит, Базальт, Доломит, Известняк, Кремнистый сланец, Мел, Сланец", + "title": "Шеелит и Вольфрамат", + "type": "patchouli:text", + "anchor": "mars_tungsten" + }, + { + "Type": "patchouli:multiblock", + "name": "Шеелит", + "multiblock": { + "mapping": { + "0": "#forge:ores/scheelite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 42%$(br)$(thing)Хромит$(): Вольфрам$(br)$(thing)Формула$(): Ca(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Вольфрамат", + "multiblock": { + "mapping": { + "0": "#forge:ores/tungstate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 33%$(br)$(thing)Хромит$(): Вольфрам, Литий$(br)$(thing)Формула$(): Li₂(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Литий", + "multiblock": { + "mapping": { + "0": "#forge:ores/lithium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 19%$(br)$(thing)Хромит$(): Литий$(br)$(thing)Формула$(): Li", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Процент руды$(): 4%$(br)$(thing)Плавится в$(): Железо$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" } ], "sortnum": 7 diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/earth_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/earth_ore_index.json index fad37fa7e..63c7476c7 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/earth_ore_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/earth_ore_index.json @@ -19,7 +19,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)Ванадієвий магнетит: $(l:tfg_ores/earth_vein_index#normal_magnetite)22%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)25%$(/l)$()$(li)Вісмут: $(l:tfg_ores/earth_vein_index#surface_bismuthinite)90%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)80%$(/l)$()$(li)Вольфрам: $(l:tfg_ores/earth_vein_index#deep_scheelite)35%$(/l)$()$(li)Вугілля: $(l:tfg_ores/earth_vein_index#normal_coal)100%$(/l), $(l:tfg_ores/earth_vein_index#normal_graphite)30%$(/l)$()$(li)Вульфеніт: $(l:tfg_ores/earth_vein_index#deep_molybdenum)47%$(/l)$()$(li)Галена: $(l:tfg_ores/earth_vein_index#normal_silver)30%$(/l)$()$(li)Гарнієрит: $(l:tfg_ores/earth_vein_index#normal_garnierite)30%$(/l)$()$(li)Гематит: $(l:tfg_ores/earth_vein_index#normal_hematite)50%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)20%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)5%$(/l)$()$(li)Гетит: $(l:tfg_ores/earth_vein_index#deep_limonite)50%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_hematite)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)5%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)5%$(/l)$()$(li)Гіпс: $(l:tfg_ores/earth_vein_index#normal_gypsum)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)15%$(/l)$()$(li)Главконітний пісок: $(l:tfg_ores/earth_vein_index#normal_lubricant)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_olivine)15%$(/l)$()$(li)Гранатовий пісок: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)25%$(/l)$()$(li)Гранітний мінеральний пісок: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)25%$(/l)$()$(li)Графіт: $(l:tfg_ores/earth_vein_index#normal_graphite)45%$(/l)$()", + "text": "$(li)Ванадієвий магнетит: $(l:tfg_ores/earth_vein_index#normal_magnetite)22%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)25%$(/l)$()$(li)Вісмут: $(l:tfg_ores/earth_vein_index#surface_bismuthinite)85%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)80%$(/l)$()$(li)Вольфрам: $(l:tfg_ores/earth_vein_index#deep_scheelite)35%$(/l)$()$(li)Вугілля: $(l:tfg_ores/earth_vein_index#normal_coal)100%$(/l), $(l:tfg_ores/earth_vein_index#normal_graphite)30%$(/l)$()$(li)Вульфеніт: $(l:tfg_ores/earth_vein_index#deep_molybdenum)47%$(/l), $(l:tfg_ores/earth_vein_index#deep_pitchblende)12%$(/l)$()$(li)Галена: $(l:tfg_ores/earth_vein_index#normal_silver)30%$(/l)$()$(li)Гарнієрит: $(l:tfg_ores/earth_vein_index#normal_garnierite)30%$(/l)$()$(li)Гематит: $(l:tfg_ores/earth_vein_index#normal_hematite)50%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)20%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)5%$(/l)$()$(li)Гетит: $(l:tfg_ores/earth_vein_index#deep_limonite)50%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_hematite)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)5%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)5%$(/l)$()$(li)Гіпс: $(l:tfg_ores/earth_vein_index#normal_gypsum)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)15%$(/l)$()$(li)Главконітний пісок: $(l:tfg_ores/earth_vein_index#normal_lubricant)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_olivine)15%$(/l)$()$(li)Гранатовий пісок: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)25%$(/l)$()$(li)Гранітний мінеральний пісок: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)25%$(/l)$()$(li)Графіт: $(l:tfg_ores/earth_vein_index#normal_graphite)45%$(/l)$()", "type": "patchouli:text" }, { @@ -39,12 +39,12 @@ }, { "Type": "patchouli:text", - "text": "$(li)Редстоун: $(l:tfg_ores/earth_vein_index#normal_redstone)45%$(/l)$()$(li)Рубін: $(l:tfg_ores/earth_vein_index#normal_redstone)35%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)20%$(/l)$()$(li)Самородна Золото: $(l:tfg_ores/earth_vein_index#deep_gold)75%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)55%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_magnetite)9%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)5%$(/l), $(l:tfg_ores/earth_vein_index#normal_hematite)5%$(/l)$()$(li)Самородна Мідь: $(l:tfg_ores/earth_vein_index#normal_copper)65%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)30%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()$(li)Самородна Срібла: $(l:tfg_ores/earth_vein_index#normal_silver)15%$(/l)$()$(li)Сапфір: $(l:tfg_ores/earth_vein_index#deep_sapphire)16%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/l)$()$(li)Свинець: $(l:tfg_ores/earth_vein_index#normal_silver)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)11%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)7%$(/l)$()$(li)Сіль: $(l:tfg_ores/earth_vein_index#normal_salt)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)30%$(/l)$()$(li)Сірка: $(l:tfg_ores/earth_vein_index#surface_sphalerite)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)50%$(/l), $(l:tfg_ores/earth_vein_index#normal_sphalerite)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)9%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)3%$(/l)$()$(li)Слюда: $(l:tfg_ores/earth_vein_index#normal_mica)25%$(/l)$()$(li)Смарагд: $(l:tfg_ores/earth_vein_index#normal_beryllium)50%$(/l)$()$(li)Соапостон: $(l:tfg_ores/earth_vein_index#normal_lubricant)30%$(/l)$()$(li)Содаліт: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)Спесартін: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()", + "text": "$(li)Редстоун: $(l:tfg_ores/earth_vein_index#normal_redstone)45%$(/l)$()$(li)Рубін: $(l:tfg_ores/earth_vein_index#normal_redstone)35%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)20%$(/l)$()$(li)Самородна Золото: $(l:tfg_ores/earth_vein_index#deep_gold)75%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)55%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_magnetite)9%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)5%$(/l), $(l:tfg_ores/earth_vein_index#normal_hematite)5%$(/l)$()$(li)Самородна Мідь: $(l:tfg_ores/earth_vein_index#normal_copper)65%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)30%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()$(li)Самородна Срібла: $(l:tfg_ores/earth_vein_index#normal_silver)15%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)5%$(/l)$()$(li)Сапфір: $(l:tfg_ores/earth_vein_index#deep_sapphire)16%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/l)$()$(li)Свинець: $(l:tfg_ores/earth_vein_index#normal_silver)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)11%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)7%$(/l)$()$(li)Сіль: $(l:tfg_ores/earth_vein_index#normal_salt)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)30%$(/l)$()$(li)Сірка: $(l:tfg_ores/earth_vein_index#surface_sphalerite)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)50%$(/l), $(l:tfg_ores/earth_vein_index#normal_sphalerite)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)9%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)3%$(/l)$()$(li)Слюда: $(l:tfg_ores/earth_vein_index#normal_mica)25%$(/l)$()$(li)Смарагд: $(l:tfg_ores/earth_vein_index#normal_beryllium)50%$(/l)$()$(li)Соапостон: $(l:tfg_ores/earth_vein_index#normal_lubricant)30%$(/l)$()$(li)Содаліт: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)Спесартін: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)Сподумен: $(l:tfg_ores/earth_vein_index#normal_spodumene)35%$(/l)$()$(li)Стибніт: $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)20%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()$(li)Сфалерит: $(l:tfg_ores/earth_vein_index#normal_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#surface_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)15%$(/l)$()$(li)Тальк: $(l:tfg_ores/earth_vein_index#normal_lubricant)20%$(/l)$()$(li)Танталіт: $(l:tfg_ores/earth_vein_index#normal_manganese)12%$(/l)$()$(li)Тетраедрит: $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)50%$(/l)$()$(li)Топаз: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)Торій: $(l:tfg_ores/earth_vein_index#normal_beryllium)15%$(/l)$()$(li)Трикальційфосфат: $(l:tfg_ores/earth_vein_index#normal_apatite)35%$(/l)$()$(li)Трона: $(l:tfg_ores/earth_vein_index#normal_lubricant)10%$(/l)$()$(li)Уранит: $(l:tfg_ores/earth_vein_index#deep_pitchblende)50%$(/l)$()$(li)Ураніт: $(l:tfg_ores/earth_vein_index#deep_pitchblende)50%$(/l)$()$(li)Халькопирит: $(l:tfg_ores/earth_vein_index#surface_copper)61%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)20%$(/l)$()$(li)Халькоцит: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()", + "text": "$(li)Сподумен: $(l:tfg_ores/earth_vein_index#normal_spodumene)35%$(/l)$()$(li)Стибніт: $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)20%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()$(li)Сфалерит: $(l:tfg_ores/earth_vein_index#normal_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#surface_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)15%$(/l)$()$(li)Тальк: $(l:tfg_ores/earth_vein_index#normal_lubricant)20%$(/l)$()$(li)Танталіт: $(l:tfg_ores/earth_vein_index#normal_manganese)12%$(/l)$()$(li)Тетраедрит: $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)50%$(/l)$()$(li)Топаз: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)Торій: $(l:tfg_ores/earth_vein_index#normal_beryllium)15%$(/l)$()$(li)Трикальційфосфат: $(l:tfg_ores/earth_vein_index#normal_apatite)35%$(/l)$()$(li)Трона: $(l:tfg_ores/earth_vein_index#normal_lubricant)10%$(/l)$()$(li)Уранит: $(l:tfg_ores/earth_vein_index#deep_pitchblende)62%$(/l)$()$(li)Ураніт: $(l:tfg_ores/earth_vein_index#deep_pitchblende)25%$(/l)$()$(li)Халькопирит: $(l:tfg_ores/earth_vein_index#surface_copper)61%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)20%$(/l)$()$(li)Халькоцит: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()", "type": "patchouli:text" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/earth_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/earth_vein_index.json index 312cbcd35..fe0225101 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/earth_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/earth_vein_index.json @@ -446,7 +446,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 90%$(br)$(thing)Розплавляється в$(): Вісмут$(br)$(thing)Формула$(): Bi", + "text": "$(thing)Відсоток$(): 85%$(br)$(thing)Розплавляється в$(): Вісмут$(br)$(thing)Формула$(): Bi", "type": "patchouli:multiblock" }, { @@ -469,6 +469,26 @@ "text": "$(thing)Відсоток$(): 7%$(br)$(thing)Розплавляється в$(): Свинець$(br)$(thing)Формула$(): Pb$(br)$(thing)Небезпечний$(): $(c)$(t:Потрібна захисна маска)Слабка отруйність (інгаляція)$(/t)$()", "type": "patchouli:multiblock" }, + { + "Type": "patchouli:multiblock", + "name": "Самородна Срібла", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Розплавляється в$(): Срібло$(br)$(thing)Формула$(): Ag", + "type": "patchouli:multiblock" + }, { "Type": "patchouli:multiblock", "name": "Сірка", @@ -489,6 +509,11 @@ "text": "$(thing)Відсоток$(): 3%$(br)$(thing)Джерело$(): Сірки$(br)$(thing)Формула$(): S", "type": "patchouli:multiblock" }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, { "Type": "patchouli:text", "text": "$(thing)Рідкість$(): 215$(br)$(thing)Щільність$(): 0.55$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): 0 — 210$(br)$(thing)Розмір$(): 60$(br)$(thing)Індикатор Max Depth$(): 50$(br2)$(thing)Типи каменю$(): Аргиліт, Вапняк, Глинистий сланець, Доломіт, Конгломерат, Крейда, Кременистий сланець", @@ -2255,7 +2280,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 100%$(br)$(thing)Джерело$(): Свободи\uD83D\uDEE2\uD83E\uDD85\uD83D\uDDFD", + "text": "$(thing)Відсоток$(): 100%$(br)$(thing)Джерело$(): Свободи \uD83D\uDEE2\uD83E\uDD85\uD83D\uDDFD", "type": "patchouli:multiblock" }, { @@ -3455,7 +3480,7 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Рідкість$(): 220$(br)$(thing)Щільність$(): 0.45$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): -64 — -20$(br)$(thing)Розмір$(): 24$(br)$(thing)Індикатор Max Depth$(): 20$(br2)$(thing)Типи каменю$(): Аспідний сланець, Габро, Гнейс, Граніт, Діорит, Кварцит, Мармур, Філіт, Шиферний сланець", + "text": "$(thing)Рідкість$(): 240$(br)$(thing)Щільність$(): 0.45$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): -64 — -20$(br)$(thing)Розмір$(): 24$(br)$(thing)Індикатор Max Depth$(): 20$(br2)$(thing)Типи каменю$(): Аспідний сланець, Габро, Гнейс, Граніт, Діорит, Кварцит, Мармур, Філіт, Шиферний сланець", "title": "Ураніт & Пітчбленд", "type": "patchouli:text", "anchor": "deep_pitchblende" @@ -3477,7 +3502,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Джерело$(): Урану, Торію, Свинцю$(br)$(thing)Формула$(): (UO₂)₃ThPb$(br)$(thing)Небезпечний$(): $(c)$(t:Потрібен повний захист)Канцерогенне (будь-який контакт)$(/t)$()", + "text": "$(thing)Відсоток$(): 62%$(br)$(thing)Джерело$(): Урану, Торію, Свинцю$(br)$(thing)Формула$(): (UO₂)₃ThPb$(br)$(thing)Небезпечний$(): $(c)$(t:Потрібен повний захист)Канцерогенне (будь-який контакт)$(/t)$()", "type": "patchouli:multiblock" }, { @@ -3497,13 +3522,28 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Джерело$(): Урану$(br)$(thing)Формула$(): UO₂$(br)$(thing)Небезпечний$(): $(c)$(t:Потрібен повний захист)Канцерогенне (будь-який контакт)$(/t)$()", + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Джерело$(): Урану$(br)$(thing)Формула$(): UO₂$(br)$(thing)Небезпечний$(): $(c)$(t:Потрібен повний захист)Канцерогенне (будь-який контакт)$(/t)$()", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "Type": "patchouli:multiblock", + "name": "Вульфеніт", + "multiblock": { + "mapping": { + "0": "#forge:ores/wulfenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 12%$(br)$(thing)Джерело$(): Свинцю, Молібденуму$(br)$(thing)Формула$(): PbMoO₄", + "type": "patchouli:multiblock" }, { "Type": "patchouli:text", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/mars_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/mars_ore_index.json index f6aab2f2c..b0abfc8df 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/mars_ore_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/mars_ore_index.json @@ -14,7 +14,27 @@ }, { "Type": "patchouli:text", - "text": "$(li)Гематит: $(l:tfg_ores/mars_vein_index#mars_hematite)100%$(/l)$()", + "text": "$(li)Азбест: $(l:tfg_ores/mars_vein_index#mars_quartzite)17%$(/l)$()$(li)Алмандін: $(l:tfg_ores/mars_vein_index#mars_almandine)36%$(/l)$()$(li)Апатит: $(l:tfg_ores/mars_vein_index#mars_apatite)47%$(/l)$()$(li)Барит: $(l:tfg_ores/mars_vein_index#mars_quartzite)35%$(/l)$()$(li)Бастнезит: $(l:tfg_ores/mars_vein_index#mars_neodynium)58%$(/l)$()$(li)Берилій: $(l:tfg_ores/mars_vein_index#mars_beryllium)35%$(/l)$()$(li)Боксит: $(l:tfg_ores/mars_vein_index#mars_sapphire)20%$(/l)$()$(li)Борніт: $(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)35%$(/l)$()$(li)Вісмут: $(l:tfg_ores/mars_vein_index#surface_bismuthinite)40%$(/l)$()$(li)Вольфрам: $(l:tfg_ores/mars_vein_index#mars_tungsten)33%$(/l)$()$(li)Вугілля: $(l:tfg_ores/mars_vein_index#mars_coal)70%$(/l)$()$(li)Галена: $(l:tfg_ores/mars_vein_index#mars_galena)40%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)35%$(/l)$()$(li)Гарнієрит: $(l:tfg_ores/mars_vein_index#mars_nickel)35%$(/l)$()$(li)Гематит: $(l:tfg_ores/mars_vein_index#mars_hematite)50%$(/l), $(l:tfg_ores/mars_vein_index#surface_hematite)55%$(/l), $(l:tfg_ores/mars_vein_index#mars_coal)30%$(/l), $(l:tfg_ores/mars_vein_index#mars_pitchblende)29%$(/l), $(l:tfg_ores/mars_vein_index#mars_sulfur)19%$(/l), $(l:tfg_ores/mars_vein_index#surface_bismuthinite)20%$(/l), $(l:tfg_ores/mars_vein_index#mars_almandine)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_apatite)4%$(/l), $(l:tfg_ores/mars_vein_index#mars_copper)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_galena)6%$(/l), $(l:tfg_ores/mars_vein_index#mars_lubricant)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_neodynium)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_nickel)7%$(/l), $(l:tfg_ores/mars_vein_index#mars_quartzite)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_stibnite)4%$(/l), $(l:tfg_ores/mars_vein_index#mars_tungsten)4%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Гетит: $(l:tfg_ores/mars_vein_index#mars_hematite)15%$(/l)$()$(li)Гіпс: $(l:tfg_ores/mars_vein_index#surface_bismuthinite)20%$(/l)$()$(li)Главконітний пісок: $(l:tfg_ores/mars_vein_index#mars_lubricant)26%$(/l)$()$(li)Гроссуляр: $(l:tfg_ores/mars_vein_index#mars_tantalite)37%$(/l)$()$(li)Електротин: $(l:tfg_ores/mars_vein_index#mars_sapphire)20%$(/l)$()$(li)Жовтий лимоніт: $(l:tfg_ores/mars_vein_index#mars_hematite)30%$(/l), $(l:tfg_ores/mars_vein_index#surface_hematite)33%$(/l)$()$(li)Зелений сапфір: $(l:tfg_ores/mars_vein_index#mars_almandine)15%$(/l), $(l:tfg_ores/mars_vein_index#mars_sapphire)5%$(/l)$()$(li)Кальцит: $(l:tfg_ores/mars_vein_index#surface_hematite)5%$(/l)$()$(li)Кам’яна сіль: $(l:tfg_ores/mars_vein_index#mars_salt)20%$(/l)$()$(li)Каситерит: $(l:tfg_ores/mars_vein_index#surface_cassiterite)55%$(/l)$()$(li)Кварцит: $(l:tfg_ores/mars_vein_index#mars_quartzite)41%$(/l)$()$(li)Кобальтит: $(l:tfg_ores/mars_vein_index#mars_nickel)28%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)11%$(/l)$()$(li)Лепідоліт: $(l:tfg_ores/mars_vein_index#mars_salt)15%$(/l)$()$(li)Літій: $(l:tfg_ores/mars_vein_index#mars_tungsten)19%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Монацит: $(l:tfg_ores/mars_vein_index#mars_neodynium)29%$(/l)$()$(li)Неодим: $(l:tfg_ores/mars_vein_index#mars_neodynium)5%$(/l)$()$(li)Нікель: $(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)25%$(/l), $(l:tfg_ores/mars_vein_index#mars_nickel)28%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)23%$(/l)$()$(li)Нітрат калію: $(l:tfg_ores/mars_vein_index#surface_cassiterite)10%$(/l)$()$(li)Олово: $(l:tfg_ores/mars_vein_index#surface_cassiterite)35%$(/l)$()$(li)Пентландит: $(l:tfg_ores/mars_vein_index#mars_lubricant)15%$(/l)$()$(li)Пірит: $(l:tfg_ores/mars_vein_index#mars_sulfur)42%$(/l), $(l:tfg_ores/mars_vein_index#mars_copper)10%$(/l)$()$(li)Піролюзит: $(l:tfg_ores/mars_vein_index#mars_tantalite)25%$(/l)$()$(li)Піроп: $(l:tfg_ores/mars_vein_index#mars_almandine)26%$(/l)$()$(li)Пірохлор: $(l:tfg_ores/mars_vein_index#mars_apatite)14%$(/l)$()$(li)Платина: $(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)15%$(/l)$()$(li)Реальгар: $(l:tfg_ores/mars_vein_index#mars_beryllium)15%$(/l)$()$(li)Редстоун: $(l:tfg_ores/mars_vein_index#deep_mars_chromite)45%$(/l), $(l:tfg_ores/mars_vein_index#surface_tetrahedrite)4%$(/l)$()$(li)Рубін: $(l:tfg_ores/mars_vein_index#deep_mars_chromite)35%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Самородна Золото: $(l:tfg_ores/mars_vein_index#mars_sapphire)55%$(/l), $(l:tfg_ores/mars_vein_index#mars_hematite)5%$(/l), $(l:tfg_ores/mars_vein_index#surface_hematite)5%$(/l)$()$(li)Самородна Мідь: $(l:tfg_ores/mars_vein_index#mars_stibnite)28%$(/l), $(l:tfg_ores/mars_vein_index#mars_copper)20%$(/l), $(l:tfg_ores/mars_vein_index#surface_tetrahedrite)19%$(/l)$()$(li)Самородна Срібла: $(l:tfg_ores/mars_vein_index#mars_galena)20%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)11%$(/l)$()$(li)Сапфір: $(l:tfg_ores/mars_vein_index#mars_almandine)15%$(/l)$()$(li)Свинець: $(l:tfg_ores/mars_vein_index#mars_galena)33%$(/l)$()$(li)Сіль: $(l:tfg_ores/mars_vein_index#mars_salt)30%$(/l)$()$(li)Сірка: $(l:tfg_ores/mars_vein_index#mars_sulfur)14%$(/l), $(l:tfg_ores/mars_vein_index#surface_bismuthinite)20%$(/l)$()$(li)Смарагд: $(l:tfg_ores/mars_vein_index#mars_beryllium)50%$(/l)$()$(li)Соапостон: $(l:tfg_ores/mars_vein_index#mars_lubricant)31%$(/l)$()$(li)Спесартін: $(l:tfg_ores/mars_vein_index#mars_tantalite)25%$(/l)$()$(li)Сподумен: $(l:tfg_ores/mars_vein_index#mars_salt)35%$(/l)$()$(li)Стибніт: $(l:tfg_ores/mars_vein_index#mars_stibnite)19%$(/l), $(l:tfg_ores/mars_vein_index#surface_tetrahedrite)19%$(/l)$()$(li)Сфалерит: $(l:tfg_ores/mars_vein_index#mars_sulfur)23%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)17%$(/l)$()$(li)Тальк: $(l:tfg_ores/mars_vein_index#mars_lubricant)21%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Танталіт: $(l:tfg_ores/mars_vein_index#mars_tantalite)12%$(/l)$()$(li)Тетраедрит: $(l:tfg_ores/mars_vein_index#surface_tetrahedrite)57%$(/l), $(l:tfg_ores/mars_vein_index#mars_stibnite)47%$(/l)$()$(li)Торій: $(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)26%$(/l), $(l:tfg_ores/mars_vein_index#mars_pitchblende)29%$(/l)$()$(li)Трикальційфосфат: $(l:tfg_ores/mars_vein_index#mars_apatite)33%$(/l)$()$(li)Уранит: $(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)52%$(/l), $(l:tfg_ores/mars_vein_index#mars_pitchblende)41%$(/l)$()$(li)Ураніт: $(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)21%$(/l)$()$(li)Халькопирит: $(l:tfg_ores/mars_vein_index#mars_copper)65%$(/l)$()$(li)Хроміт: $(l:tfg_ores/mars_vein_index#deep_mars_chromite)20%$(/l)$()$(li)Шеєліт: $(l:tfg_ores/mars_vein_index#mars_tungsten)42%$(/l)$()$(li)Шелдонітн: $(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)25%$(/l)$()", "type": "patchouli:text" } ], diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/mars_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/mars_vein_index.json index 7151068ee..bf9461115 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/mars_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/mars_vein_index.json @@ -14,13 +14,1333 @@ }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_hematite)(Placeholder Vein)$()$()", + "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_almandine)Almandine & Sapphire$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)Bornite & Cooperite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_coal)Coal & Hematite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_sapphire)Gold, Electrotine, & Bauxite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_pitchblende)Pitchblende, Thorium, & Hematite$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)Pitchblende, Thorium, & Uraninite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_quartzite)Quartzite, Asbestos, & Barite$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_chromite)Redstone & Chromite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_salt)Salts & Spodumene$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_lubricant)Soapstone, Talc, & Glauconite$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_nickel_galena)Sphalerite & Galena$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_apatite)Апатит і Пірохлор$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_neodynium)Бастнезит і Монацит$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_bismuthinite)Вісмут$()$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(thing)Рідкість$(): 210$(br)$(thing)Щільність$(): 0.4$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): -16 — 100$(br)$(thing)Розмір$(): 40$(br)$(thing)Індикатор Max Depth$(): 50$(br2)$(thing)Типи каменю$(): Red Granite, Аргиліт, Аргіліт, Базальт, Вапняк, Габро, Глинистий сланець, Граніт, Дацит, Діорит, Доломіт, Конгломерат, Крейда, Кременистий сланець, Трахіт", - "title": "(Placeholder Vein)", + "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_nickel)Гарнієрит і Кобальтит$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_hematite)Гематит та Лімоніт$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_hematite)Гематит та Лімоніт$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_cassiterite)Каситерит$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_tantalite)Марганець і Тантал$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_copper)Мідь та Халькопірит$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_beryllium)Смарагд і Берилій$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_galena)Срібло, Гален і Свинець$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_sulfur)Сфалерит і Пірит$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_stibnite)Тетраедрит (Звичайний)$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_tetrahedrite)Тетраедрит (Поверхня)$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_tungsten)Шеєліт та Вольфрам$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 280$(br)$(thing)Щільність$(): 0.35$(br)$(thing)Тип$(): Дискова вена$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Розмір$(): 65$(br)$(thing)Висота$(): 8$(br)$(thing)Індикатор Max Depth$(): 15$(br2)$(thing)Типи каменю$(): Red Granite, Аргиліт, Аргіліт, Вапняк, Габро, Глинистий сланець, Діорит, Доломіт, Кременистий сланець, Трахіт", + "title": "Almandine & Sapphire", + "type": "patchouli:text", + "anchor": "mars_almandine" + }, + { + "Type": "patchouli:multiblock", + "name": "Алмандін", + "multiblock": { + "mapping": { + "0": "#forge:ores/almandine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 36%$(br)$(thing)Джерело$(): Алюмінію, Залізо$(br)$(thing)Формула$(): Al₂Fe₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Піроп", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrope" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 26%$(br)$(thing)Джерело$(): Алюмінію, Магнію$(br)$(thing)Формула$(): Al₂Mg₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Сапфір", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Джерело$(): Алюмінію$(br)$(thing)Формула$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Зелений сапфір", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Джерело$(): Алюмінію$(br)$(thing)Формула$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 370$(br)$(thing)Щільність$(): 0.3$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): -20 — 0$(br)$(thing)Розмір$(): 60$(br)$(thing)Індикатор Max Depth$(): 20$(br2)$(thing)Типи каменю$(): Red Granite, Аргіліт, Базальт, Дацит, Діорит, Конгломерат, Крейда, Кременистий сланець, Трахіт", + "title": "Bornite & Cooperite", + "type": "patchouli:text", + "anchor": "deep_mars_sheldonite" + }, + { + "Type": "patchouli:multiblock", + "name": "Борніт", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Джерело$(): Мідь$(br)$(thing)Формула$(): Cu₅FeS₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Шелдонітн", + "multiblock": { + "mapping": { + "0": "#forge:ores/cooperite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Джерело$(): Платини, Нікелю, Паладію$(br)$(thing)Формула$(): Pt₃NiSPd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Нікель", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Розплавляється в$(): Нікелю$(br)$(thing)Формула$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Платина", + "multiblock": { + "mapping": { + "0": "#forge:ores/platinum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Розплавляється в$(): Платину$(br)$(thing)Формула$(): Pt", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 215$(br)$(thing)Щільність$(): 0.6$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Розмір$(): 55$(br)$(thing)Індикатор Max Depth$(): 10$(br2)$(thing)Типи каменю$(): Red Granite, Аргиліт, Аргіліт, Базальт, Граніт, Дацит, Діорит, Доломіт, Конгломерат, Крейда, Трахіт", + "title": "Coal & Hematite", + "type": "patchouli:text", + "anchor": "mars_coal" + }, + { + "Type": "patchouli:multiblock", + "name": "Вугілля", + "multiblock": { + "mapping": { + "0": "#forge:ores/coal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 70%$(br)$(thing)Використовується для$(): Палива, Дистиляції$(br)$(thing)Формула$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 30%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 230$(br)$(thing)Щільність$(): 0.4$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Розмір$(): 40$(br)$(thing)Індикатор Max Depth$(): 15$(br2)$(thing)Типи каменю$(): Аргиліт, Габро, Глинистий сланець, Граніт, Діорит, Крейда, Кременистий сланець", + "title": "Gold, Electrotine, & Bauxite", + "type": "patchouli:text", + "anchor": "mars_sapphire" + }, + { + "Type": "patchouli:multiblock", + "name": "Самородна Золото", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 55%$(br)$(thing)Розплавляється в$(): Золото$(br)$(thing)Формула$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Боксит", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Джерело$(): Алюмінію$(br)$(thing)Формула$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Електротин", + "multiblock": { + "mapping": { + "0": "#forge:ores/electrotine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Джерело$(): Золотa, Срібла, Редстоуна$(br)$(thing)Формула$(): (Si(FeS₂)₅(CrAl₂O₃)Hg₃)(AgAu)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Зелений сапфір", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Джерело$(): Алюмінію$(br)$(thing)Формула$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 220$(br)$(thing)Щільність$(): 0.55$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Розмір$(): 20$(br)$(thing)Індикатор Max Depth$(): 15$(br2)$(thing)Типи каменю$(): Red Granite, Аргіліт, Габро, Глинистий сланець, Дацит, Діорит, Доломіт, Конгломерат, Трахіт", + "title": "Pitchblende, Thorium, & Hematite", + "type": "patchouli:text", + "anchor": "mars_pitchblende" + }, + { + "Type": "patchouli:multiblock", + "name": "Уранит", + "multiblock": { + "mapping": { + "0": "#forge:ores/pitchblende" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 41%$(br)$(thing)Джерело$(): Урану, Торію, Свинцю$(br)$(thing)Формула$(): (UO₂)₃ThPb$(br)$(thing)Небезпечний$(): $(c)$(t:Потрібен повний захист)Канцерогенне (будь-який контакт)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Торій", + "multiblock": { + "mapping": { + "0": "#forge:ores/thorium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 29%$(br)$(thing)Джерело$(): Торію$(br)$(thing)Формула$(): Th", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 29%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 370$(br)$(thing)Щільність$(): 0.3$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): -20 — 0$(br)$(thing)Розмір$(): 60$(br)$(thing)Індикатор Max Depth$(): 20$(br2)$(thing)Типи каменю$(): Аргиліт, Аргіліт, Габро, Глинистий сланець, Дацит, Діорит, Трахіт", + "title": "Pitchblende, Thorium, & Uraninite", + "type": "patchouli:text", + "anchor": "deep_mars_pitchblende" + }, + { + "Type": "patchouli:multiblock", + "name": "Уранит", + "multiblock": { + "mapping": { + "0": "#forge:ores/pitchblende" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 52%$(br)$(thing)Джерело$(): Урану, Торію, Свинцю$(br)$(thing)Формула$(): (UO₂)₃ThPb$(br)$(thing)Небезпечний$(): $(c)$(t:Потрібен повний захист)Канцерогенне (будь-який контакт)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Торій", + "multiblock": { + "mapping": { + "0": "#forge:ores/thorium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 26%$(br)$(thing)Джерело$(): Торію$(br)$(thing)Формула$(): Th", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Ураніт", + "multiblock": { + "mapping": { + "0": "#forge:ores/uraninite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 21%$(br)$(thing)Джерело$(): Урану$(br)$(thing)Формула$(): UO₂$(br)$(thing)Небезпечний$(): $(c)$(t:Потрібен повний захист)Канцерогенне (будь-який контакт)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 210$(br)$(thing)Щільність$(): 0.3$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Розмір$(): 40$(br)$(thing)Індикатор Max Depth$(): 15$(br2)$(thing)Типи каменю$(): Red Granite, Аргиліт, Аргіліт, Вапняк, Глинистий сланець, Граніт, Крейда, Кременистий сланець, Трахіт", + "title": "Quartzite, Asbestos, & Barite", + "type": "patchouli:text", + "anchor": "mars_quartzite" + }, + { + "Type": "patchouli:multiblock", + "name": "Кварцит", + "multiblock": { + "mapping": { + "0": "#forge:ores/quartzite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 41%$(br)$(thing)Використовується для$(): LV компонентів$(br)$(thing)Формула$(): SiO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Барит", + "multiblock": { + "mapping": { + "0": "#forge:ores/barite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Джерело$(): Барію$(br)$(thing)Формула$(): BaSO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Азбест", + "multiblock": { + "mapping": { + "0": "#forge:ores/asbestos" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 17%$(br)$(thing)Джерело$(): Магнію, Рак легенів$(br)$(thing)Формула$(): Mg₃Si₂H₄O₉$(br)$(thing)Небезпечний$(): $(c)$(t:Потрібна захисна маска)Азбестоз (інгаляція)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 370$(br)$(thing)Щільність$(): 0.3$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): -20 — 0$(br)$(thing)Розмір$(): 60$(br)$(thing)Індикатор Max Depth$(): 20$(br2)$(thing)Типи каменю$(): Аргиліт, Аргіліт, Базальт, Вапняк, Глинистий сланець, Дацит, Крейда, Кременистий сланець", + "title": "Redstone & Chromite", + "type": "patchouli:text", + "anchor": "deep_mars_chromite" + }, + { + "Type": "patchouli:multiblock", + "name": "Редстоун", + "multiblock": { + "mapping": { + "0": "#forge:ores/redstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 45%$(br)$(thing)Розплавляється в$(): Редстоун$(br)$(thing)Формула$(): Si(FeS₂)₅(CrAl₂O₃)Hg₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Рубін", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Джерело$(): Хрому, Алюмінію$(br)$(thing)Формула$(): CrAl₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Хроміт", + "multiblock": { + "mapping": { + "0": "#forge:ores/chromite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Джерело$(): Хрому$(br)$(thing)Формула$(): FeCr₂O₄$(br)$(thing)Небезпечний$(): $(c)$(t:Потрібні гумові рукавички)Подразник (контакт із шкірою)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 210$(br)$(thing)Щільність$(): 0.4$(br)$(thing)Тип$(): Дискова вена$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Розмір$(): 40$(br)$(thing)Висота$(): 6$(br)$(thing)Індикатор Max Depth$(): 15$(br2)$(thing)Типи каменю$(): Red Granite, Аргиліт, Аргіліт, Вапняк, Граніт, Діорит, Крейда, Кременистий сланець, Трахіт", + "title": "Salts & Spodumene", + "type": "patchouli:text", + "anchor": "mars_salt" + }, + { + "Type": "patchouli:multiblock", + "name": "Сподумен", + "multiblock": { + "mapping": { + "0": "#forge:ores/spodumene" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Джерело$(): Літію, Алюмінію$(br)$(thing)Формула$(): LiAlSi₂O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Сіль", + "multiblock": { + "mapping": { + "0": "#forge:ores/salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 30%$(br)$(thing)Джерело$(): Натрію, Хлору$(br)$(thing)Формула$(): NaCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Кам’яна сіль", + "multiblock": { + "mapping": { + "0": "#forge:ores/rock_salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Джерело$(): Калію, Хлору$(br)$(thing)Формула$(): KCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Лепідоліт", + "multiblock": { + "mapping": { + "0": "#forge:ores/lepidolite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Джерело$(): Калію, Літію, Алюмінію, Фтору$(br)$(thing)Формула$(): KLi₃Al₄F₂O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 220$(br)$(thing)Щільність$(): 0.25$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Розмір$(): 30$(br)$(thing)Індикатор Max Depth$(): 15$(br2)$(thing)Типи каменю$(): Red Granite, Аргиліт, Аргіліт, Вапняк, Глинистий сланець, Граніт, Дацит, Діорит, Доломіт, Конгломерат", + "title": "Soapstone, Talc, & Glauconite", + "type": "patchouli:text", + "anchor": "mars_lubricant" + }, + { + "Type": "patchouli:multiblock", + "name": "Соапостон", + "multiblock": { + "mapping": { + "0": "#forge:ores/soapstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 31%$(br)$(thing)Джерело$(): Магнію$(br)$(thing)Формула$(): Mg₃Si₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Главконітний пісок", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 26%$(br)$(thing)Джерело$(): Магнію, Алюмінію$(br)$(thing)Формула$(): KMg₂Al₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Тальк", + "multiblock": { + "mapping": { + "0": "#forge:ores/talc" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 21%$(br)$(thing)Джерело$(): Магнію$(br)$(thing)Формула$(): Mg₃Si₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Пентландит", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Розплавляється в$(): Нікель$(br)$(thing)Формула$(): Ni₉S₈", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 150$(br)$(thing)Щільність$(): 0.25$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): 80 — 180$(br)$(thing)Розмір$(): 45$(br)$(thing)Індикатор Max Depth$(): 40$(br2)$(thing)Типи каменю$(): Red Granite, Аргиліт, Аргіліт, Базальт, Вапняк, Габро, Глинистий сланець, Граніт, Дацит, Діорит, Доломіт, Конгломерат, Крейда, Кременистий сланець, Трахіт", + "title": "Sphalerite & Galena", + "type": "patchouli:text", + "anchor": "surface_nickel_galena" + }, + { + "Type": "patchouli:multiblock", + "name": "Галена", + "multiblock": { + "mapping": { + "0": "#forge:ores/galena" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Розплавляється в$(): Свинцю$(br)$(thing)Формула$(): PbS$(br)$(thing)Небезпечний$(): $(c)$(t:Потрібна захисна маска)Слабка отруйність (інгаляція)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Нікель", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 23%$(br)$(thing)Розплавляється в$(): Нікелю$(br)$(thing)Формула$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Сфалерит", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 17%$(br)$(thing)Розплавляється в$(): Цинк$(br)$(thing)Формула$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Самородна Срібла", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 11%$(br)$(thing)Розплавляється в$(): Срібло$(br)$(thing)Формула$(): Ag", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Кобальтит", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobaltite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 11%$(br)$(thing)Джерело$(): Кобальту, Миш'яку$(br)$(thing)Формула$(): CoAsS$(br)$(thing)Небезпечний$(): $(c)$(t:Потрібна захисна маска)Арсенікоз (інгаляція)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 220$(br)$(thing)Щільність$(): 0.25$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Розмір$(): 45$(br)$(thing)Індикатор Max Depth$(): 15$(br2)$(thing)Типи каменю$(): Red Granite, Аргиліт, Базальт, Вапняк, Глинистий сланець, Дацит, Конгломерат, Крейда, Кременистий сланець, Трахіт", + "title": "Апатит і Пірохлор", + "type": "patchouli:text", + "anchor": "mars_apatite" + }, + { + "Type": "patchouli:multiblock", + "name": "Апатит", + "multiblock": { + "mapping": { + "0": "#forge:ores/apatite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 47%$(br)$(thing)Джерело$(): Кальцію, Фосфору, Лісовий ПТСР$(br)$(thing)Формула$(): Ca₅(PO₄)₃Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Трикальційфосфат", + "multiblock": { + "mapping": { + "0": "#forge:ores/tricalcium_phosphate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 33%$(br)$(thing)Джерело$(): Кальцію, Фосфору$(br)$(thing)Формула$(): Ca₃(PO₄)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Пірохлор", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrochlore" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 14%$(br)$(thing)Джерело$(): Ніобій$(br)$(thing)Формула$(): Ca₂Nb₂O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 4%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 215$(br)$(thing)Щільність$(): 0.4$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Розмір$(): 45$(br)$(thing)Індикатор Max Depth$(): 15$(br2)$(thing)Типи каменю$(): Аргіліт, Базальт, Габро, Діорит, Доломіт, Крейда, Кременистий сланець, Трахіт", + "title": "Бастнезит і Монацит", + "type": "patchouli:text", + "anchor": "mars_neodynium" + }, + { + "Type": "patchouli:multiblock", + "name": "Бастнезит", + "multiblock": { + "mapping": { + "0": "#forge:ores/bastnasite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 58%$(br)$(thing)Джерело$(): Церію, Фтору$(br)$(thing)Формула$(): CeCFO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Монацит", + "multiblock": { + "mapping": { + "0": "#forge:ores/monazite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 29%$(br)$(thing)Джерело$(): Фосфору, Рідкоземельні$(br)$(thing)Формула$(): ?(PO₄)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Неодим", + "multiblock": { + "mapping": { + "0": "#forge:ores/neodymium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Джерело$(): Неодиму$(br)$(thing)Формула$(): Nd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 140$(br)$(thing)Щільність$(): 0.25$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): 80 — 180$(br)$(thing)Розмір$(): 45$(br)$(thing)Індикатор Max Depth$(): 40$(br2)$(thing)Типи каменю$(): Red Granite, Аргиліт, Аргіліт, Базальт, Вапняк, Габро, Глинистий сланець, Граніт, Дацит, Діорит, Доломіт, Конгломерат, Крейда, Кременистий сланець, Трахіт", + "title": "Вісмут", + "type": "patchouli:text", + "anchor": "surface_bismuthinite" + }, + { + "Type": "patchouli:multiblock", + "name": "Вісмут", + "multiblock": { + "mapping": { + "0": "#forge:ores/bismuth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 40%$(br)$(thing)Розплавляється в$(): Вісмут$(br)$(thing)Формула$(): Bi", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Сірка", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Джерело$(): Сірки$(br)$(thing)Формула$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гіпс", + "multiblock": { + "mapping": { + "0": "#forge:ores/gypsum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Використовується для$(): Алебастрової (фарбованої) цегли$(br)$(thing)Формула$(): CaS(H₂O)₂O₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 250$(br)$(thing)Щільність$(): 0.4$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Розмір$(): 55$(br)$(thing)Індикатор Max Depth$(): 40$(br2)$(thing)Типи каменю$(): Red Granite, Аргиліт, Аргіліт, Базальт, Вапняк, Глинистий сланець, Граніт, Дацит, Крейда", + "title": "Гарнієрит і Кобальтит", + "type": "patchouli:text", + "anchor": "mars_nickel" + }, + { + "Type": "patchouli:multiblock", + "name": "Гарнієрит", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnierite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Розплавляється в$(): Нікель$(br)$(thing)Формула$(): NiO", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Нікель", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 28%$(br)$(thing)Розплавляється в$(): Нікелю$(br)$(thing)Формула$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Кобальтит", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobaltite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 28%$(br)$(thing)Джерело$(): Кобальту, Миш'яку$(br)$(thing)Формула$(): CoAsS$(br)$(thing)Небезпечний$(): $(c)$(t:Потрібна захисна маска)Арсенікоз (інгаляція)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 7%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 210$(br)$(thing)Щільність$(): 0.4$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Розмір$(): 40$(br)$(thing)Індикатор Max Depth$(): 30$(br2)$(thing)Типи каменю$(): Red Granite, Аргиліт, Аргіліт, Базальт, Вапняк, Дацит, Доломіт, Конгломерат", + "title": "Гематит та Лімоніт", "type": "patchouli:text", "anchor": "mars_hematite" }, @@ -41,8 +1361,943 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 100%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): Fe₂O₃", + "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): Fe₂O₃", "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Жовтий лимоніт", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 30%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гетит", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Самородна Золото", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Розплавляється в$(): Золото$(br)$(thing)Формула$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 140$(br)$(thing)Щільність$(): 0.25$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): 80 — 180$(br)$(thing)Розмір$(): 45$(br)$(thing)Індикатор Max Depth$(): 40$(br2)$(thing)Типи каменю$(): Red Granite, Аргиліт, Аргіліт, Базальт, Вапняк, Габро, Глинистий сланець, Граніт, Дацит, Діорит, Доломіт, Конгломерат, Крейда, Кременистий сланець, Трахіт", + "title": "Гематит та Лімоніт", + "type": "patchouli:text", + "anchor": "surface_hematite" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 55%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Жовтий лимоніт", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 33%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Самородна Золото", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Розплавляється в$(): Золото$(br)$(thing)Формула$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Кальцит", + "multiblock": { + "mapping": { + "0": "#forge:ores/calcite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Джерело$(): Кальцію$(br)$(thing)Формула$(): CaCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 135$(br)$(thing)Щільність$(): 0.25$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): 80 — 180$(br)$(thing)Розмір$(): 45$(br)$(thing)Індикатор Max Depth$(): 40$(br2)$(thing)Типи каменю$(): Red Granite, Аргиліт, Аргіліт, Базальт, Вапняк, Габро, Глинистий сланець, Граніт, Дацит, Діорит, Доломіт, Конгломерат, Крейда, Кременистий сланець, Трахіт", + "title": "Каситерит", + "type": "patchouli:text", + "anchor": "surface_cassiterite" + }, + { + "Type": "patchouli:multiblock", + "name": "Каситерит", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 55%$(br)$(thing)Розплавляється в$(): Олово$(br)$(thing)Формула$(): SnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Олово", + "multiblock": { + "mapping": { + "0": "#forge:ores/tin" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Розплавляється в$(): Олово$(br)$(thing)Формула$(): Sn", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Нітрат калію", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 10%$(br)$(thing)Джерело$(): Калію, Азот$(br)$(thing)Формула$(): KNO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 230$(br)$(thing)Щільність$(): 0.3$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Розмір$(): 42$(br)$(thing)Індикатор Max Depth$(): 15$(br2)$(thing)Типи каменю$(): Red Granite, Аргиліт, Аргіліт, Базальт, Вапняк, Габро, Глинистий сланець, Крейда, Кременистий сланець, Трахіт", + "title": "Марганець і Тантал", + "type": "patchouli:text", + "anchor": "mars_tantalite" + }, + { + "Type": "patchouli:multiblock", + "name": "Гроссуляр", + "multiblock": { + "mapping": { + "0": "#forge:ores/grossular" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 37%$(br)$(thing)Джерело$(): Кальцію, Алюмінію$(br)$(thing)Формула$(): Ca₃Al₂Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Спесартін", + "multiblock": { + "mapping": { + "0": "#forge:ores/spessartine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Джерело$(): Магнезії, Алюмінію$(br)$(thing)Формула$(): Al₂Mn₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Піролюзит", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrolusite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Джерело$(): Магнезії$(br)$(thing)Формула$(): MnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Танталіт", + "multiblock": { + "mapping": { + "0": "#forge:ores/tantalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 12%$(br)$(thing)Джерело$(): Магнезії, Танталу$(br)$(thing)Формула$(): MnTa₂O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 220$(br)$(thing)Щільність$(): 0.4$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Розмір$(): 50$(br)$(thing)Індикатор Max Depth$(): 40$(br2)$(thing)Типи каменю$(): Аргиліт, Аргіліт, Базальт, Вапняк, Глинистий сланець, Дацит, Доломіт, Конгломерат, Трахіт", + "title": "Мідь та Халькопірит", + "type": "patchouli:text", + "anchor": "mars_copper" + }, + { + "Type": "patchouli:multiblock", + "name": "Халькопирит", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcopyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 65%$(br)$(thing)Розплавляється в$(): Мідь$(br)$(thing)Формула$(): CuFeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Самородна Мідь", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Розплавляється в$(): Мідь$(br)$(thing)Формула$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Пірит", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 10%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): FeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 350$(br)$(thing)Щільність$(): 0.35$(br)$(thing)Тип$(): Трубна вена$(br)$(thing)Y$(): -20 — 50$(br)$(thing)Висота$(): 40$(br)$(thing)Радіус$(): 8$(br)$(thing)Індикатор Max Depth$(): 15$(br2)$(thing)Типи каменю$(): Андезит, Базальт, Дацит, Ріоліт", + "title": "Смарагд і Берилій", + "type": "patchouli:text", + "anchor": "mars_beryllium" + }, + { + "Type": "patchouli:multiblock", + "name": "Смарагд", + "multiblock": { + "mapping": { + "0": "#forge:ores/emerald" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Використовується для$(): MV компонентів, Фільтр тегів предметів$(br)$(thing)Формула$(): Be₃Al₂Si₆O₁₈", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Берилій", + "multiblock": { + "mapping": { + "0": "#forge:ores/beryllium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Джерело$(): Берилію$(br)$(thing)Формула$(): Be$(br)$(thing)Небезпечний$(): $(c)$(t:Потрібні гумові рукавички)Бериліоз (контакт із шкірою)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Реальгар", + "multiblock": { + "mapping": { + "0": "#forge:ores/realgar" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Джерело$(): Миш'яку$(br)$(thing)Формула$(): As₄S₄$(br)$(thing)Небезпечний$(): $(c)$(t:Потрібна захисна маска)Арсенікоз (інгаляція)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 215$(br)$(thing)Щільність$(): 0.4$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Розмір$(): 50$(br)$(thing)Індикатор Max Depth$(): 40$(br2)$(thing)Типи каменю$(): Red Granite, Аргиліт, Аргіліт, Базальт, Габро, Глинистий сланець, Граніт, Дацит, Крейда, Кременистий сланець", + "title": "Срібло, Гален і Свинець", + "type": "patchouli:text", + "anchor": "mars_galena" + }, + { + "Type": "patchouli:multiblock", + "name": "Галена", + "multiblock": { + "mapping": { + "0": "#forge:ores/galena" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 40%$(br)$(thing)Розплавляється в$(): Свинцю$(br)$(thing)Формула$(): PbS$(br)$(thing)Небезпечний$(): $(c)$(t:Потрібна захисна маска)Слабка отруйність (інгаляція)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Свинець", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 33%$(br)$(thing)Розплавляється в$(): Свинець$(br)$(thing)Формула$(): Pb$(br)$(thing)Небезпечний$(): $(c)$(t:Потрібна захисна маска)Слабка отруйність (інгаляція)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Самородна Срібла", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Розплавляється в$(): Срібло$(br)$(thing)Формула$(): Ag", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 6%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 215$(br)$(thing)Щільність$(): 0.2$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Розмір$(): 45$(br)$(thing)Індикатор Max Depth$(): 30$(br2)$(thing)Типи каменю$(): Аргіліт, Базальт, Габро, Граніт, Дацит, Діорит, Крейда, Кременистий сланець, Трахіт", + "title": "Сфалерит і Пірит", + "type": "patchouli:text", + "anchor": "mars_sulfur" + }, + { + "Type": "patchouli:multiblock", + "name": "Пірит", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 42%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): FeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Сфалерит", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 23%$(br)$(thing)Розплавляється в$(): Цинк$(br)$(thing)Формула$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 19%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Сірка", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 14%$(br)$(thing)Джерело$(): Сірки$(br)$(thing)Формула$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 210$(br)$(thing)Щільність$(): 0.4$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Розмір$(): 40$(br)$(thing)Індикатор Max Depth$(): 40$(br2)$(thing)Типи каменю$(): Red Granite, Аргіліт, Базальт, Габро, Глинистий сланець, Дацит, Діорит, Доломіт, Крейда, Кременистий сланець, Трахіт", + "title": "Тетраедрит (Звичайний)", + "type": "patchouli:text", + "anchor": "mars_stibnite" + }, + { + "Type": "patchouli:multiblock", + "name": "Тетраедрит", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 47%$(br)$(thing)Розплавляється в$(): Мідь$(br)$(thing)Формула$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Самородна Мідь", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 28%$(br)$(thing)Розплавляється в$(): Мідь$(br)$(thing)Формула$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Стибніт", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 19%$(br)$(thing)Розплавляється в$(): Сурму$(br)$(thing)Формула$(): Sb₂S₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 4%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 140$(br)$(thing)Щільність$(): 0.25$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): 80 — 180$(br)$(thing)Розмір$(): 45$(br)$(thing)Індикатор Max Depth$(): 40$(br2)$(thing)Типи каменю$(): Red Granite, Аргиліт, Аргіліт, Базальт, Вапняк, Габро, Глинистий сланець, Граніт, Дацит, Діорит, Доломіт, Конгломерат, Крейда, Кременистий сланець, Трахіт", + "title": "Тетраедрит (Поверхня)", + "type": "patchouli:text", + "anchor": "surface_tetrahedrite" + }, + { + "Type": "patchouli:multiblock", + "name": "Тетраедрит", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 57%$(br)$(thing)Розплавляється в$(): Мідь$(br)$(thing)Формула$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Самородна Мідь", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 19%$(br)$(thing)Розплавляється в$(): Мідь$(br)$(thing)Формула$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Стибніт", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 19%$(br)$(thing)Розплавляється в$(): Сурму$(br)$(thing)Формула$(): Sb₂S₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Редстоун", + "multiblock": { + "mapping": { + "0": "#forge:ores/redstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 4%$(br)$(thing)Розплавляється в$(): Редстоун$(br)$(thing)Формула$(): Si(FeS₂)₅(CrAl₂O₃)Hg₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Рідкість$(): 280$(br)$(thing)Щільність$(): 0.45$(br)$(thing)Тип$(): Кластерна вена$(br)$(thing)Y$(): 0 — 70$(br)$(thing)Розмір$(): 50$(br)$(thing)Індикатор Max Depth$(): 15$(br2)$(thing)Типи каменю$(): Red Granite, Аргиліт, Базальт, Вапняк, Глинистий сланець, Доломіт, Крейда, Кременистий сланець", + "title": "Шеєліт та Вольфрам", + "type": "patchouli:text", + "anchor": "mars_tungsten" + }, + { + "Type": "patchouli:multiblock", + "name": "Шеєліт", + "multiblock": { + "mapping": { + "0": "#forge:ores/scheelite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 42%$(br)$(thing)Джерело$(): Вольфраму$(br)$(thing)Формула$(): Ca(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Вольфрам", + "multiblock": { + "mapping": { + "0": "#forge:ores/tungstate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 33%$(br)$(thing)Джерело$(): Вольфраму, Літію$(br)$(thing)Формула$(): Li₂(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Літій", + "multiblock": { + "mapping": { + "0": "#forge:ores/lithium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 19%$(br)$(thing)Джерело$(): Літію$(br)$(thing)Формула$(): Li", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гематит", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 4%$(br)$(thing)Розплавляється в$(): Чавун$(br)$(thing)Формула$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" } ], "sortnum": 7 diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/earth_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/earth_ore_index.json new file mode 100644 index 000000000..dc72f6929 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/earth_ore_index.json @@ -0,0 +1,57 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "地球矿物索引", + "icon": "tfc:ore/normal_native_copper", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "这是 $(thing)地球$() 的 $(thing)矿物索引$()。所有矿物按字母顺序排序,然后按矿脉类型从最富集到最贫瘠排列。您可以点击它们以了解有关每种矿脉的更多信息。", + "title": "地球矿物索引", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)云母: $(l:tfg_ores/earth_vein_index#normal_mica)25%$(/l)$()$(li)原生金: $(l:tfg_ores/earth_vein_index#deep_gold)75%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)55%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_magnetite)9%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)5%$(/l), $(l:tfg_ores/earth_vein_index#normal_hematite)5%$(/l)$()$(li)原生铜: $(l:tfg_ores/earth_vein_index#normal_copper)65%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)30%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()$(li)原生银: $(l:tfg_ores/earth_vein_index#normal_silver)15%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)5%$(/l)$()$(li)天然碱: $(l:tfg_ores/earth_vein_index#normal_lubricant)10%$(/l)$()$(li)孔雀石: $(l:tfg_ores/earth_vein_index#deep_limonite)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)15%$(/l)$()$(li)岩盐: $(l:tfg_ores/earth_vein_index#normal_salt)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)20%$(/l)$()$(li)斑铜矿: $(l:tfg_ores/earth_vein_index#deep_sheldonite)53%$(/l), $(l:tfg_ores/earth_vein_index#deep_topaz)15%$(/l)$()$(li)方解石: $(l:tfg_ores/earth_vein_index#normal_gypsum)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_lapis)15%$(/l)$()$(li)方钠石: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)方铅矿: $(l:tfg_ores/earth_vein_index#normal_silver)30%$(/l)$()$(li)明矾石: $(l:tfg_ores/earth_vein_index#normal_saltpeter)15%$(/l)$()$(li)晶质铀矿: $(l:tfg_ores/earth_vein_index#deep_pitchblende)25%$(/l)$()$(li)朱砂: $(l:tfg_ores/earth_vein_index#normal_redstone)20%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)橄榄石: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/l)$()$(li)氟碳镧铈矿: $(l:tfg_ores/earth_vein_index#normal_monazite)62%$(/l)$()$(li)沥青铀矿: $(l:tfg_ores/earth_vein_index#deep_pitchblende)62%$(/l)$()$(li)沸石: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()$(li)油砂: $(l:tfg_ores/earth_vein_index#normal_oilsands)100%$(/l)$()$(li)海绿石矿砂: $(l:tfg_ores/earth_vein_index#normal_lubricant)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_olivine)15%$(/l)$()$(li)滑石: $(l:tfg_ores/earth_vein_index#normal_lubricant)20%$(/l)$()$(li)漂白土: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_gypsum)15%$(/l)$()$(li)烧绿石: $(l:tfg_ores/earth_vein_index#normal_apatite)15%$(/l)$()$(li)煤炭: $(l:tfg_ores/earth_vein_index#normal_coal)100%$(/l), $(l:tfg_ores/earth_vein_index#normal_graphite)30%$(/l)$()$(li)独居石: $(l:tfg_ores/earth_vein_index#normal_monazite)31%$(/l)$()$(li)玄武岩矿砂: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)35%$(/l)$()$(li)电石: $(l:tfg_ores/earth_vein_index#normal_saltpeter)25%$(/l)$()$(li)白钨矿: $(l:tfg_ores/earth_vein_index#deep_scheelite)45%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)皂石: $(l:tfg_ores/earth_vein_index#normal_lubricant)30%$(/l)$()$(li)盐: $(l:tfg_ores/earth_vein_index#normal_salt)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)30%$(/l)$()$(li)石棉: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_quartz)18%$(/l)$()$(li)石榴石矿砂: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)25%$(/l)$()$(li)石膏: $(l:tfg_ores/earth_vein_index#normal_gypsum)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)15%$(/l)$()$(li)石英岩: $(l:tfg_ores/earth_vein_index#normal_quartz)43%$(/l)$()$(li)石墨: $(l:tfg_ores/earth_vein_index#normal_graphite)45%$(/l)$()$(li)硅藻土: $(l:tfg_ores/earth_vein_index#normal_saltpeter)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_garnet_tin)15%$(/l)$()$(li)硅镁镍矿: $(l:tfg_ores/earth_vein_index#normal_garnierite)30%$(/l)$()$(li)硝石: $(l:tfg_ores/earth_vein_index#normal_saltpeter)35%$(/l)$()$(li)硫: $(l:tfg_ores/earth_vein_index#surface_sphalerite)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)50%$(/l), $(l:tfg_ores/earth_vein_index#normal_sphalerite)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)9%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)3%$(/l)$()$(li)硫铂矿: $(l:tfg_ores/earth_vein_index#deep_sheldonite)38%$(/l)$()$(li)硼砂: $(l:tfg_ores/earth_vein_index#normal_gypsum)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l)$()$(li)磁铁矿: $(l:tfg_ores/earth_vein_index#normal_magnetite)63%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)磷灰石: $(l:tfg_ores/earth_vein_index#normal_apatite)50%$(/l)$()$(li)磷酸三钙: $(l:tfg_ores/earth_vein_index#normal_apatite)35%$(/l)$()$(li)紫水晶: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)65%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)25%$(/l)$()$(li)红宝石: $(l:tfg_ores/earth_vein_index#normal_redstone)35%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)20%$(/l)$()$(li)红石: $(l:tfg_ores/earth_vein_index#normal_redstone)45%$(/l)$()$(li)红色石榴石: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)5%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)5%$(/l)$()$(li)绿宝石: $(l:tfg_ores/earth_vein_index#normal_beryllium)50%$(/l)$()$(li)绿色蓝宝石: $(l:tfg_ores/earth_vein_index#deep_sapphire)16%$(/l)$()$(li)膨润土: $(l:tfg_ores/earth_vein_index#normal_olivine)35%$(/l)$()$(li)花岗岩矿砂: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)25%$(/l)$()$(li)菱镁矿: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/l)$()$(li)蓝宝石: $(l:tfg_ores/earth_vein_index#deep_sapphire)16%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/l)$()$(li)蓝晶石: $(l:tfg_ores/earth_vein_index#normal_mica)35%$(/l)$()$(li)蓝金石: $(l:tfg_ores/earth_vein_index#normal_lapis)35%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)蓝黄玉: $(l:tfg_ores/earth_vein_index#deep_topaz)35%$(/l)$()$(li)蛋白石: $(l:tfg_ores/earth_vein_index#deep_garnet_opal)55%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)15%$(/l)$()$(li)赤铁矿: $(l:tfg_ores/earth_vein_index#normal_hematite)50%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)20%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)5%$(/l)$()$(li)软锰矿: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()$(li)辉钴矿: $(l:tfg_ores/earth_vein_index#normal_garnierite)20%$(/l)$()$(li)辉钼矿: $(l:tfg_ores/earth_vein_index#deep_molybdenum)35%$(/l)$()$(li)辉铋矿: $(l:tfg_ores/earth_vein_index#surface_bismuthinite)85%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)80%$(/l)$()$(li)辉铜矿: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)辉锑矿: $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)20%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()$(li)重晶石: $(l:tfg_ores/earth_vein_index#normal_quartz)37%$(/l)$()$(li)针铁矿: $(l:tfg_ores/earth_vein_index#deep_limonite)50%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_hematite)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)5%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)5%$(/l)$()$(li)钍矿: $(l:tfg_ores/earth_vein_index#normal_beryllium)15%$(/l)$()$(li)钒磁铁矿: $(l:tfg_ores/earth_vein_index#normal_magnetite)22%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)25%$(/l)$()$(li)钕矿: $(l:tfg_ores/earth_vein_index#normal_monazite)6%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)钙铝榴石: $(l:tfg_ores/earth_vein_index#normal_manganese)37%$(/l)$()$(li)钨酸锂: $(l:tfg_ores/earth_vein_index#deep_scheelite)35%$(/l)$()$(li)钴矿: $(l:tfg_ores/earth_vein_index#normal_garnierite)15%$(/l)$()$(li)钻石: $(l:tfg_ores/earth_vein_index#normal_graphite)25%$(/l)$()$(li)钼钨钙矿: $(l:tfg_ores/earth_vein_index#deep_molybdenum)17%$(/l)$()$(li)钼铅矿: $(l:tfg_ores/earth_vein_index#deep_molybdenum)47%$(/l), $(l:tfg_ores/earth_vein_index#deep_pitchblende)12%$(/l)$()$(li)钽铁矿: $(l:tfg_ores/earth_vein_index#normal_manganese)12%$(/l)$()$(li)铁铝榴石: $(l:tfg_ores/earth_vein_index#deep_sapphire)38%$(/l)$()$(li)铂矿: $(l:tfg_ores/earth_vein_index#deep_sheldonite)7%$(/l)$()$(li)铅矿: $(l:tfg_ores/earth_vein_index#normal_silver)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)11%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)7%$(/l)$()$(li)铍矿: $(l:tfg_ores/earth_vein_index#normal_beryllium)35%$(/l)$()$(li)铝土矿: $(l:tfg_ores/earth_vein_index#normal_mica)25%$(/l)$()$(li)铬铁矿: $(l:tfg_ores/earth_vein_index#deep_magnetite)33%$(/l), $(l:tfg_ores/earth_vein_index#normal_magnetite)4%$(/l)$()$(li)铯榴石: $(l:tfg_ores/earth_vein_index#normal_mica)15%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)锂云母: $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)15%$(/l)$()$(li)锂矿: $(l:tfg_ores/earth_vein_index#deep_scheelite)20%$(/l)$()$(li)锂辉石: $(l:tfg_ores/earth_vein_index#normal_spodumene)35%$(/l)$()$(li)锡石矿: $(l:tfg_ores/earth_vein_index#surface_cassiterite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_cassiterite)40%$(/l), $(l:tfg_ores/earth_vein_index#surface_copper)5%$(/l)$()$(li)锡石矿砂: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)35%$(/l)$()$(li)锡矿: $(l:tfg_ores/earth_vein_index#normal_cassiterite)60%$(/l), $(l:tfg_ores/earth_vein_index#surface_cassiterite)40%$(/l)$()$(li)锰铝榴石: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()$(li)镁铝榴石: $(l:tfg_ores/earth_vein_index#deep_sapphire)27%$(/l)$()$(li)镍矿: $(l:tfg_ores/earth_vein_index#normal_garnierite)10%$(/l)$()$(li)镍黄铁矿: $(l:tfg_ores/earth_vein_index#normal_garnierite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_lubricant)15%$(/l)$()$(li)闪锌矿: $(l:tfg_ores/earth_vein_index#normal_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#surface_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)15%$(/l)$()$(li)雄黄: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()$(li)青金石: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)黄玉: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)黄色石榴石: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)15%$(/l)$()$(li)黄褐铁矿: $(l:tfg_ores/earth_vein_index#normal_limonite)50%$(/l), $(l:tfg_ores/earth_vein_index#normal_hematite)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)20%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)5%$(/l)$()$(li)黄铁矿: $(l:tfg_ores/earth_vein_index#normal_sulfur)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_sphalerite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_sphalerite)5%$(/l)$()$(li)黄铜矿: $(l:tfg_ores/earth_vein_index#surface_copper)61%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)20%$(/l)$()$(li)黝铜矿: $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)50%$(/l)$()", + "type": "patchouli:text" + } + ], + "sortnum": 0 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/earth_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/earth_vein_index.json new file mode 100644 index 000000000..97452dc40 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/earth_vein_index.json @@ -0,0 +1,3883 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "地球矿脉索引", + "icon": "tfc:ore/normal_native_copper/chalk", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "这是 $(item)地球$() 的 $(thing)矿脉索引$()。每个矿脉都有关于其稀有度、密度、矿脉类型、生成高度、尺寸、生成于何种岩石中等详细信息。", + "title": "地球矿脉索引", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/earth_vein_index#deep_pitchblende)晶质铀矿, 沥青铀矿$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_monazite)氟碳镧铈矿, 独居石$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_oilsands)油砂$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_coal)煤炭$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_scheelite)白钨矿, 钨酸锂$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_lubricant)皂石, 滑石, 天然碱$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_salt)盐, 硼砂$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_garnet_tin)石榴石, 锡石矿砂$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_gypsum)石膏, 方解石$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_quartz)石英$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_graphite)石墨, 钻石$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_basaltic_sands)矿砂$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_garnierite)硅镁镍矿, 辉钴矿$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_saltpeter)硝石, 电石$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/earth_vein_index#normal_sulfur)硫, 黄铁矿$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_sheldonite)硫铂矿, 斑铜矿$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_magnetite)磁铁矿, 钒$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_apatite)磷灰石, 烧绿石$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)紫水晶, 石榴石$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_redstone)红石, 朱砂, 红宝石$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_beryllium)绿宝石, 铍矿$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_olivine)膨润土, 橄榄石$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_sapphire)蓝宝石, 铁铝榴石$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_mica)蓝晶石, 云母, 铝土矿$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_garnet_opal)蛋白石, 石榴石$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_limonite)褐铁矿$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_hematite)赤铁矿, 褐铁矿$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_hematite)赤铁矿, 针铁矿, 红宝石$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/earth_vein_index#surface_bismuthinite)辉铋矿 (地表)$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_bismuthinite)辉铋矿 (普通)$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_gold)金矿 (深层)$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_gold)金矿, 褐铁矿, 赤铁矿$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_limonite)针铁矿, 孔雀石$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_molybdenum)钼铅矿, 辉钼矿$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_copper)铜矿, 黄铜矿$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_magnetite)铬铁矿, 磁铁矿$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_silver)银矿, 方铅矿, 铅矿$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_spodumene)锂辉石, 锂云母$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_cassiterite)锡石矿 (地表)$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_cassiterite)锡石矿 (普通)$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_manganese)锰矿, 钽矿$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_sphalerite)闪锌矿, 硫$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/earth_vein_index#normal_sphalerite)闪锌矿, 黄铁矿$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_lapis)青金石, 蓝金石, 方钠石$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_topaz)黄玉, 辉铜矿$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_copper)黄铜矿, 雄黄$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_tetrahedrite)黝铜矿 (地表)$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_tetrahedrite)黝铜矿 (普通)$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 240$(br)$(thing)密度$(): 0.45$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -64 — -20$(br)$(thing)尺寸$(): 24$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 千枚岩, 大理岩, 板岩, 片岩, 片麻岩, 石英岩, 花岗岩, 辉长岩, 闪长岩", + "title": "晶质铀矿, 沥青铀矿", + "type": "patchouli:text", + "anchor": "deep_pitchblende" + }, + { + "Type": "patchouli:multiblock", + "name": "沥青铀矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pitchblende" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 62%$(br)$(thing)来源$(): 铀, 钍, 铅$(br)$(thing)化学式$(): (UO₂)₃ThPb$(br)$(thing)危害$(): $(c)$(t:需要全身防护)致癌 (任何接触)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "晶质铀矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/uraninite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 铀$(br)$(thing)化学式$(): UO₂$(br)$(thing)危害$(): $(c)$(t:需要全身防护)致癌 (任何接触)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钼铅矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/wulfenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 12%$(br)$(thing)来源$(): 铅, 钼$(br)$(thing)化学式$(): PbMoO₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 205$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -32 — 50$(br)$(thing)尺寸$(): 35$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 花岗岩, 辉长岩, 闪长岩", + "title": "氟碳镧铈矿, 独居石", + "type": "patchouli:text", + "anchor": "normal_monazite" + }, + { + "Type": "patchouli:multiblock", + "name": "氟碳镧铈矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/bastnasite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 62%$(br)$(thing)来源$(): 铈, 氟$(br)$(thing)化学式$(): CeCFO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "独居石", + "multiblock": { + "mapping": { + "0": "#forge:ores/monazite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 31%$(br)$(thing)来源$(): 磷, 稀土$(br)$(thing)化学式$(): ?(PO₄)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钕矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/neodymium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 6%$(br)$(thing)来源$(): 钕$(br)$(thing)化学式$(): Nd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 185$(br)$(thing)密度$(): 0.2$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 70$(br)$(thing)尺寸$(): 55$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 燧石, 白云岩, 白垩岩, 石灰岩, 砾岩, 粘土岩, 页岩", + "title": "油砂", + "type": "patchouli:text", + "anchor": "normal_oilsands" + }, + { + "Type": "patchouli:multiblock", + "name": "油砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/oilsands" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 100%$(br)$(thing)来源$(): 自由 \uD83D\uDEE2\uD83E\uDD85\uD83D\uDDFD", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 215$(br)$(thing)密度$(): 0.55$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 210$(br)$(thing)尺寸$(): 60$(br)$(thing)指示器最大深度$(): 50$(br2)$(thing)岩石类型$(): 燧石, 白云岩, 白垩岩, 石灰岩, 砾岩, 粘土岩, 页岩", + "title": "煤炭", + "type": "patchouli:text", + "anchor": "normal_coal" + }, + { + "Type": "patchouli:multiblock", + "name": "煤炭", + "multiblock": { + "mapping": { + "0": "#forge:ores/coal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 100%$(br)$(thing)用于$(): 燃料, 蒸馏$(br)$(thing)化学式$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 240$(br)$(thing)密度$(): 0.35$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -64 — 0$(br)$(thing)尺寸$(): 20$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 花岗岩, 辉长岩, 闪长岩", + "title": "白钨矿, 钨酸锂", + "type": "patchouli:text", + "anchor": "deep_scheelite" + }, + { + "Type": "patchouli:multiblock", + "name": "白钨矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/scheelite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 45%$(br)$(thing)来源$(): 钨$(br)$(thing)化学式$(): Ca(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钨酸锂", + "multiblock": { + "mapping": { + "0": "#forge:ores/tungstate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 钨, 锂$(br)$(thing)化学式$(): Li₂(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "锂矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/lithium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 锂$(br)$(thing)化学式$(): Li", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 190$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -40 — 56$(br)$(thing)尺寸$(): 36$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 花岗岩, 辉长岩, 闪长岩", + "title": "皂石, 滑石, 天然碱", + "type": "patchouli:text", + "anchor": "normal_lubricant" + }, + { + "Type": "patchouli:multiblock", + "name": "皂石", + "multiblock": { + "mapping": { + "0": "#forge:ores/soapstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 30%$(br)$(thing)来源$(): 镁$(br)$(thing)化学式$(): Mg₃Si₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "海绿石矿砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 镁, 铝$(br)$(thing)化学式$(): KMg₂Al₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "滑石", + "multiblock": { + "mapping": { + "0": "#forge:ores/talc" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 镁$(br)$(thing)化学式$(): Mg₃Si₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "镍黄铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 镍$(br)$(thing)化学式$(): Ni₉S₈", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "天然碱", + "multiblock": { + "mapping": { + "0": "#forge:ores/trona" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 10%$(br)$(thing)来源$(): 钠$(br)$(thing)化学式$(): Na₃C₂H(H₂O)₂O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 175$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): 30 — 70$(br)$(thing)尺寸$(): 40$(br)$(thing)高度$(): 4$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 石灰岩, 粘土岩, 页岩", + "title": "盐, 硼砂", + "type": "patchouli:text", + "anchor": "normal_salt" + }, + { + "Type": "patchouli:multiblock", + "name": "岩盐", + "multiblock": { + "mapping": { + "0": "#forge:ores/rock_salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 40%$(br)$(thing)来源$(): 钾, 氯$(br)$(thing)化学式$(): KCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "盐", + "multiblock": { + "mapping": { + "0": "#forge:ores/salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 30%$(br)$(thing)来源$(): 钠, 氯$(br)$(thing)化学式$(): NaCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "锂云母", + "multiblock": { + "mapping": { + "0": "#forge:ores/lepidolite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 钾, 锂, 铝, 氟$(br)$(thing)化学式$(): KLi₃Al₄F₂O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "硼砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/borax" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 钠, 硼$(br)$(thing)化学式$(): Na₂B₄(H₂O)₁₀O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 270$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -40 — 64$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 60$(br2)$(thing)岩石类型$(): 千枚岩, 大理岩, 安山岩, 板岩, 流纹岩, 燧石, 片岩, 片麻岩, 玄武岩, 白云岩, 白垩岩, 石灰岩, 石英岩, 砾岩, 粘土岩, 花岗岩, 英安岩, 辉长岩, 闪长岩, 页岩", + "title": "石榴石, 锡石矿砂", + "type": "patchouli:text", + "anchor": "normal_garnet_tin" + }, + { + "Type": "patchouli:multiblock", + "name": "锡石矿砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)熔化$(): 锡$(br)$(thing)化学式$(): SnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "石榴石矿砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnet_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 铁铝榴石, 钙铁榴石, 钙铝榴石, 镁铝榴石, 锰铝榴石, 钙铬榴石", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "石棉", + "multiblock": { + "mapping": { + "0": "#forge:ores/asbestos" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 镁, 肺癌$(br)$(thing)化学式$(): Mg₃Si₂H₄O₉$(br)$(thing)危害$(): $(c)$(t:需要面罩)石棉肺 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "硅藻土", + "multiblock": { + "mapping": { + "0": "#forge:ores/diatomite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 铁, 铝$(br)$(thing)化学式$(): (SiO₂)₈(Fe₂O₃)(Al₂O₃)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 180$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): -32 — 60$(br)$(thing)尺寸$(): 40$(br)$(thing)高度$(): 9$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 燧石, 白云岩, 白垩岩, 石灰岩, 砾岩, 粘土岩, 页岩", + "title": "石膏, 方解石", + "type": "patchouli:text", + "anchor": "normal_gypsum" + }, + { + "Type": "patchouli:multiblock", + "name": "石膏", + "multiblock": { + "mapping": { + "0": "#forge:ores/gypsum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)用于$(): 雪花石膏砖块(可染色)$(br)$(thing)化学式$(): CaS(H₂O)₂O₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "方解石", + "multiblock": { + "mapping": { + "0": "#forge:ores/calcite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 30%$(br)$(thing)来源$(): 钙$(br)$(thing)化学式$(): CaCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "硼砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/borax" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 钠, 硼$(br)$(thing)化学式$(): Na₂B₄(H₂O)₁₀O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "漂白土", + "multiblock": { + "mapping": { + "0": "#forge:ores/fullers_earth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 镁$(br)$(thing)化学式$(): MgSi₄H(H₂O)₄O₁₁", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 190$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -32 — 100$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 40$(br2)$(thing)岩石类型$(): 片岩, 片麻岩, 石英岩, 页岩", + "title": "石英", + "type": "patchouli:text", + "anchor": "normal_quartz" + }, + { + "Type": "patchouli:multiblock", + "name": "石英岩", + "multiblock": { + "mapping": { + "0": "#forge:ores/quartzite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 43%$(br)$(thing)用于$(): LV组件$(br)$(thing)化学式$(): SiO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "重晶石", + "multiblock": { + "mapping": { + "0": "#forge:ores/barite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 37%$(br)$(thing)来源$(): 钡$(br)$(thing)化学式$(): BaSO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "石棉", + "multiblock": { + "mapping": { + "0": "#forge:ores/asbestos" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 18%$(br)$(thing)来源$(): 镁, 肺癌$(br)$(thing)化学式$(): Mg₃Si₂H₄O₉$(br)$(thing)危害$(): $(c)$(t:需要面罩)石棉肺 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 80$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): -64 — -16$(br)$(thing)尺寸$(): 16$(br)$(thing)高度$(): 6$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 千枚岩, 大理岩, 安山岩, 板岩, 流纹岩, 燧石, 片岩, 片麻岩, 玄武岩, 白云岩, 白垩岩, 石灰岩, 石英岩, 砾岩, 粘土岩, 花岗岩, 英安岩, 辉长岩, 闪长岩, 页岩", + "title": "石墨, 钻石", + "type": "patchouli:text", + "anchor": "normal_graphite" + }, + { + "Type": "patchouli:multiblock", + "name": "石墨", + "multiblock": { + "mapping": { + "0": "#forge:ores/graphite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 45%$(br)$(thing)用于$(): $(l:mechanics/fire_clay)耐火粘土$(), 石墨烯$(br)$(thing)化学式$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "煤炭", + "multiblock": { + "mapping": { + "0": "#forge:ores/coal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 30%$(br)$(thing)用于$(): 燃料, 蒸馏$(br)$(thing)化学式$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钻石", + "multiblock": { + "mapping": { + "0": "#forge:ores/diamond" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)用于$(): 研磨机, AE2$(br)$(thing)化学式$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 160$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): -32 — 60$(br)$(thing)尺寸$(): 48$(br)$(thing)高度$(): 9$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 玄武岩, 花岗岩", + "title": "矿砂", + "type": "patchouli:text", + "anchor": "normal_basaltic_sands" + }, + { + "Type": "patchouli:multiblock", + "name": "玄武岩矿砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/basaltic_mineral_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): (Fe₃O₄)((Mg₂Fe(SiO₂)₂)(CaCo₃)₃(SiO₂)₈C₄)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "花岗岩矿砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/granitic_mineral_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): (Fe₃O₄)((SiO₂)₄(KMg₃Al₃F₂Si₃O₁₀))", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "漂白土", + "multiblock": { + "mapping": { + "0": "#forge:ores/fullers_earth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 镁$(br)$(thing)化学式$(): MgSi₄H(H₂O)₄O₁₁", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "石膏", + "multiblock": { + "mapping": { + "0": "#forge:ores/gypsum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)用于$(): 雪花石膏砖块(可染色)$(br)$(thing)化学式$(): CaS(H₂O)₂O₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 160$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -32 — 60$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 70$(br2)$(thing)岩石类型$(): 辉长岩, 闪长岩$(br2)找不到吗?辉长岩总是生成在$(thing)玄武岩$()的下方,而且在海洋中的辉长岩岩脉也可能有用!", + "title": "硅镁镍矿, 辉钴矿", + "type": "patchouli:text", + "anchor": "normal_garnierite" + }, + { + "Type": "patchouli:multiblock", + "name": "硅镁镍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnierite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 30%$(br)$(thing)熔化$(): 镍$(br)$(thing)化学式$(): NiO", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "镍黄铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)熔化$(): 镍$(br)$(thing)化学式$(): Ni₉S₈", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "辉钴矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobaltite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 钴, 砷$(br)$(thing)化学式$(): CoAsS$(br)$(thing)危害$(): $(c)$(t:需要面罩)砷中毒 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钴矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobalt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 钴$(br)$(thing)化学式$(): Co", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "镍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 10%$(br)$(thing)熔化$(): 镍$(br)$(thing)化学式$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 210$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -32 — 60$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 千枚岩, 大理岩, 板岩, 片岩, 片麻岩, 石英岩, 花岗岩, 辉长岩, 闪长岩", + "title": "硝石, 电石", + "type": "patchouli:text", + "anchor": "normal_saltpeter" + }, + { + "Type": "patchouli:multiblock", + "name": "硝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 钾, 氮$(br)$(thing)化学式$(): KNO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "硅藻土", + "multiblock": { + "mapping": { + "0": "#forge:ores/diatomite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 铁, 铝$(br)$(thing)化学式$(): (SiO₂)₈(Fe₂O₃)(Al₂O₃)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "电石", + "multiblock": { + "mapping": { + "0": "#forge:ores/electrotine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 金, 银, 红石$(br)$(thing)化学式$(): (Si(FeS₂)₅(CrAl₂O₃)Hg₃)(AgAu)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "明矾石", + "multiblock": { + "mapping": { + "0": "#forge:ores/alunite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 钾, 铝$(br)$(thing)化学式$(): KAl₃Si₂H₆O₁₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 165$(br)$(thing)密度$(): 0.2$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 210$(br)$(thing)尺寸$(): 45$(br)$(thing)指示器最大深度$(): 40$(br2)$(thing)岩石类型$(): 安山岩, 流纹岩, 玄武岩, 英安岩", + "title": "硫, 黄铁矿", + "type": "patchouli:text", + "anchor": "normal_sulfur" + }, + { + "Type": "patchouli:multiblock", + "name": "硫", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 50%$(br)$(thing)来源$(): 硫$(br)$(thing)化学式$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "闪锌矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 锌$(br)$(thing)化学式$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 320$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -64 — 0$(br)$(thing)尺寸$(): 30$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 千枚岩, 大理岩, 板岩, 片岩, 片麻岩, 石英岩", + "title": "硫铂矿, 斑铜矿", + "type": "patchouli:text", + "anchor": "deep_sheldonite" + }, + { + "Type": "patchouli:multiblock", + "name": "斑铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 53%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu₅FeS₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "硫铂矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/cooperite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 38%$(br)$(thing)来源$(): 铂, 镍, 钯$(br)$(thing)化学式$(): Pt₃NiSPd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铂矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/platinum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 7%$(br)$(thing)熔化$(): 铂$(br)$(thing)化学式$(): Pt", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 200$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -32 — 75$(br)$(thing)尺寸$(): 30$(br)$(thing)指示器最大深度$(): 50$(br2)$(thing)岩石类型$(): 燧石, 白云岩, 白垩岩, 石灰岩, 砾岩, 粘土岩, 页岩", + "title": "磁铁矿, 钒", + "type": "patchouli:text", + "anchor": "normal_magnetite" + }, + { + "Type": "patchouli:multiblock", + "name": "磁铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 63%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₃O₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钒磁铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/vanadium_magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 22%$(br)$(thing)来源$(): 铁, 钒$(br)$(thing)化学式$(): (Fe₃O₄)V", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "原生金", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 9%$(br)$(thing)熔化$(): 金$(br)$(thing)化学式$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铬铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/chromite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 4%$(br)$(thing)来源$(): 铬$(br)$(thing)化学式$(): FeCr₂O₄$(br)$(thing)危害$(): $(c)$(t:需要橡胶手套)刺激性 (皮肤接触)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 220$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -32 — 60$(br)$(thing)尺寸$(): 34$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 千枚岩, 大理岩, 板岩, 片岩, 片麻岩, 石英岩, 花岗岩, 辉长岩, 闪长岩", + "title": "磷灰石, 烧绿石", + "type": "patchouli:text", + "anchor": "normal_apatite" + }, + { + "Type": "patchouli:multiblock", + "name": "磷灰石", + "multiblock": { + "mapping": { + "0": "#forge:ores/apatite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 50%$(br)$(thing)来源$(): 钙, 磷, 林业PTSD$(br)$(thing)化学式$(): Ca₅(PO₄)₃Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "磷酸三钙", + "multiblock": { + "mapping": { + "0": "#forge:ores/tricalcium_phosphate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 钙, 磷$(br)$(thing)化学式$(): Ca₃(PO₄)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "烧绿石", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrochlore" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 铌$(br)$(thing)化学式$(): Ca₂Nb₂O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 230$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): -64 — 26$(br)$(thing)尺寸$(): 40$(br)$(thing)高度$(): 8$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 千枚岩, 大理岩, 板岩, 燧石, 片岩, 片麻岩, 白云岩, 白垩岩, 石灰岩, 石英岩, 砾岩, 粘土岩, 页岩", + "title": "紫水晶, 石榴石", + "type": "patchouli:text", + "anchor": "deep_garnet_amethyst" + }, + { + "Type": "patchouli:multiblock", + "name": "紫水晶", + "multiblock": { + "mapping": { + "0": "#forge:ores/amethyst" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 65%$(br)$(thing)来源$(): 铁$(br)$(thing)化学式$(): (SiO₂)₄Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄色石榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 钙铁榴石, 钙铝榴石, 钙铬榴石", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "蛋白石", + "multiblock": { + "mapping": { + "0": "#forge:ores/opal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 硅, 氧$(br)$(thing)化学式$(): (SiO₂)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "红色石榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/red_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)来源$(): 镁铝榴石, 铁铝榴石, 锰铝榴石", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 160$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -32 — 100$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 60$(br2)$(thing)岩石类型$(): 花岗岩$(br2)找不到吗?花岗岩总是生成在$(thing)流纹岩$()的下方,而且在海洋中寻找也可能有用!", + "title": "红石, 朱砂, 红宝石", + "type": "patchouli:text", + "anchor": "normal_redstone" + }, + { + "Type": "patchouli:multiblock", + "name": "红石", + "multiblock": { + "mapping": { + "0": "#forge:ores/redstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 45%$(br)$(thing)熔化$(): 红石$(br)$(thing)化学式$(): Si(FeS₂)₅(CrAl₂O₃)Hg₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "红宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 铬, 铝$(br)$(thing)化学式$(): CrAl₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "朱砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/cinnabar" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 水银$(br)$(thing)化学式$(): HgS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 250$(br)$(thing)密度$(): 0.35$(br)$(thing)类型$(): 管状矿脉$(br)$(thing)Y 坐标$(): -32 — 50$(br)$(thing)高度$(): 60$(br)$(thing)半径$(): 10$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 安山岩, 流纹岩, 玄武岩, 英安岩", + "title": "绿宝石, 铍矿", + "type": "patchouli:text", + "anchor": "normal_beryllium" + }, + { + "Type": "patchouli:multiblock", + "name": "绿宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/emerald" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 50%$(br)$(thing)用于$(): MV组件, 标签过滤卡$(br)$(thing)化学式$(): Be₃Al₂Si₆O₁₈", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/beryllium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 铍$(br)$(thing)化学式$(): Be$(br)$(thing)危害$(): $(c)$(t:需要橡胶手套)铍中毒 (皮肤接触)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/thorium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 钍$(br)$(thing)化学式$(): Th", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 180$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -40 — 30$(br)$(thing)尺寸$(): 26$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 安山岩, 流纹岩, 玄武岩, 花岗岩, 英安岩, 辉长岩, 闪长岩", + "title": "膨润土, 橄榄石", + "type": "patchouli:text", + "anchor": "normal_olivine" + }, + { + "Type": "patchouli:multiblock", + "name": "膨润土", + "multiblock": { + "mapping": { + "0": "#forge:ores/bentonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 钠, 镁$(br)$(thing)化学式$(): NaMg₆Si₁₂H₄(H₂O)₅O₃₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "菱镁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnesite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 镁$(br)$(thing)化学式$(): MgCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "橄榄石", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 镁, 铁$(br)$(thing)化学式$(): Mg₂Fe(SiO₂)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "海绿石矿砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 镁, 铝$(br)$(thing)化学式$(): KMg₂Al₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 180$(br)$(thing)密度$(): 0.35$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): -64 — 26$(br)$(thing)尺寸$(): 28$(br)$(thing)高度$(): 8$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 安山岩, 流纹岩, 玄武岩, 英安岩", + "title": "蓝宝石, 铁铝榴石", + "type": "patchouli:text", + "anchor": "deep_sapphire" + }, + { + "Type": "patchouli:multiblock", + "name": "铁铝榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/almandine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 38%$(br)$(thing)来源$(): 铝, 铁$(br)$(thing)化学式$(): Al₂Fe₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "镁铝榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrope" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 27%$(br)$(thing)来源$(): 铝, 镁$(br)$(thing)化学式$(): Al₂Mg₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "蓝宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 16%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "绿色蓝宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 16%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 190$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 210$(br)$(thing)尺寸$(): 36$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 千枚岩, 大理岩, 板岩, 片岩, 片麻岩, 石英岩, 花岗岩, 辉长岩, 闪长岩", + "title": "蓝晶石, 云母, 铝土矿", + "type": "patchouli:text", + "anchor": "normal_mica" + }, + { + "Type": "patchouli:multiblock", + "name": "蓝晶石", + "multiblock": { + "mapping": { + "0": "#forge:ores/kyanite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al₂SiO₅", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "云母", + "multiblock": { + "mapping": { + "0": "#forge:ores/mica" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 钾, 铝, 氟$(br)$(thing)化学式$(): KAl₃Si₃F₂O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铝土矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铯榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/pollucite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 铯, 铝$(br)$(thing)化学式$(): Cs₂Al₂Si₄(H₂O)₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 220$(br)$(thing)密度$(): 0.35$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): -64 — 62$(br)$(thing)尺寸$(): 26$(br)$(thing)高度$(): 6$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 安山岩, 流纹岩, 玄武岩, 花岗岩, 英安岩, 辉长岩, 闪长岩", + "title": "蛋白石, 石榴石", + "type": "patchouli:text", + "anchor": "deep_garnet_opal" + }, + { + "Type": "patchouli:multiblock", + "name": "蛋白石", + "multiblock": { + "mapping": { + "0": "#forge:ores/opal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 55%$(br)$(thing)来源$(): 硅, 氧$(br)$(thing)化学式$(): (SiO₂)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "紫水晶", + "multiblock": { + "mapping": { + "0": "#forge:ores/amethyst" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 铁$(br)$(thing)化学式$(): (SiO₂)₄Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄色石榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 钙铁榴石, 钙铝榴石, 钙铬榴石", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "红色石榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/red_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)来源$(): 镁铝榴石, 铁铝榴石, 锰铝榴石", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 190$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -32 — 75$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 50$(br2)$(thing)岩石类型$(): 大理岩, 石灰岩", + "title": "褐铁矿", + "type": "patchouli:text", + "anchor": "normal_limonite" + }, + { + "Type": "patchouli:multiblock", + "name": "黄褐铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 50%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "针铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "孔雀石", + "multiblock": { + "mapping": { + "0": "#forge:ores/malachite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu₂CH₂O₅", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 210$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -32 — 75$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 50$(br2)$(thing)岩石类型$(): 安山岩, 流纹岩, 玄武岩, 英安岩", + "title": "赤铁矿, 褐铁矿", + "type": "patchouli:text", + "anchor": "normal_hematite" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 50%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄褐铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 30%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "针铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "原生金", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)熔化$(): 金$(br)$(thing)化学式$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 220$(br)$(thing)密度$(): 0.35$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -64 — 30$(br)$(thing)尺寸$(): 30$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 安山岩, 流纹岩, 玄武岩, 英安岩", + "title": "赤铁矿, 针铁矿, 红宝石", + "type": "patchouli:text", + "anchor": "deep_hematite" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "针铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "红宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 铬, 铝$(br)$(thing)化学式$(): CrAl₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄褐铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "原生金", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)熔化$(): 金$(br)$(thing)化学式$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 140$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 60 — 210$(br)$(thing)尺寸$(): 50$(br)$(thing)指示器最大深度$(): 60$(br2)$(thing)岩石类型$(): 燧石, 白云岩, 白垩岩, 石灰岩, 砾岩, 粘土岩, 花岗岩, 辉长岩, 闪长岩, 页岩", + "title": "辉铋矿 (地表)", + "type": "patchouli:text", + "anchor": "surface_bismuthinite" + }, + { + "Type": "patchouli:multiblock", + "name": "辉铋矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/bismuth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 85%$(br)$(thing)熔化$(): 铋$(br)$(thing)化学式$(): Bi", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铅矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 7%$(br)$(thing)熔化$(): 铅$(br)$(thing)化学式$(): Pb$(br)$(thing)危害$(): $(c)$(t:需要面罩)弱毒性 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "原生银", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)熔化$(): 银$(br)$(thing)化学式$(): Ag", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "硫", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 3%$(br)$(thing)来源$(): 硫$(br)$(thing)化学式$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 170$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -32 — 75$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 60$(br2)$(thing)岩石类型$(): 燧石, 白云岩, 白垩岩, 石灰岩, 砾岩, 粘土岩, 花岗岩, 辉长岩, 闪长岩, 页岩", + "title": "辉铋矿 (普通)", + "type": "patchouli:text", + "anchor": "normal_bismuthinite" + }, + { + "Type": "patchouli:multiblock", + "name": "辉铋矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/bismuth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 80%$(br)$(thing)熔化$(): 铋$(br)$(thing)化学式$(): Bi", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铅矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 11%$(br)$(thing)熔化$(): 铅$(br)$(thing)化学式$(): Pb$(br)$(thing)危害$(): $(c)$(t:需要面罩)弱毒性 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "硫", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 9%$(br)$(thing)来源$(): 硫$(br)$(thing)化学式$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 260$(br)$(thing)密度$(): 0.45$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -64 — 30$(br)$(thing)尺寸$(): 32$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 安山岩, 流纹岩, 玄武岩, 花岗岩, 英安岩, 辉长岩, 闪长岩", + "title": "金矿 (深层)", + "type": "patchouli:text", + "anchor": "deep_gold" + }, + { + "Type": "patchouli:multiblock", + "name": "原生金", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 75%$(br)$(thing)熔化$(): 金$(br)$(thing)化学式$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "针铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄褐铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 170$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): -32 — 60$(br)$(thing)尺寸$(): 40$(br)$(thing)高度$(): 12$(br)$(thing)指示器最大深度$(): 60$(br2)$(thing)岩石类型$(): 安山岩, 流纹岩, 玄武岩, 花岗岩, 英安岩, 辉长岩, 闪长岩", + "title": "金矿, 褐铁矿, 赤铁矿", + "type": "patchouli:text", + "anchor": "normal_gold" + }, + { + "Type": "patchouli:multiblock", + "name": "原生金", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 55%$(br)$(thing)熔化$(): 金$(br)$(thing)化学式$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄褐铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "针铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 240$(br)$(thing)密度$(): 0.35$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -64 — 30$(br)$(thing)尺寸$(): 32$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 大理岩, 石灰岩", + "title": "针铁矿, 孔雀石", + "type": "patchouli:text", + "anchor": "deep_limonite" + }, + { + "Type": "patchouli:multiblock", + "name": "针铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 50%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "孔雀石", + "multiblock": { + "mapping": { + "0": "#forge:ores/malachite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu₂CH₂O₅", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄褐铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 245$(br)$(thing)密度$(): 0.45$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -64 — 10$(br)$(thing)尺寸$(): 26$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 安山岩, 流纹岩, 玄武岩, 花岗岩, 英安岩, 辉长岩, 闪长岩", + "title": "钼铅矿, 辉钼矿", + "type": "patchouli:text", + "anchor": "deep_molybdenum" + }, + { + "Type": "patchouli:multiblock", + "name": "钼铅矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/wulfenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 47%$(br)$(thing)来源$(): 铅, 钼$(br)$(thing)化学式$(): PbMoO₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "辉钼矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/molybdenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 钼$(br)$(thing)化学式$(): MoS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钼钨钙矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/powellite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 17%$(br)$(thing)来源$(): 钼$(br)$(thing)化学式$(): CaMoO₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 170$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -32 — 75$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 85$(br2)$(thing)岩石类型$(): 安山岩, 流纹岩, 玄武岩, 英安岩", + "title": "铜矿, 黄铜矿", + "type": "patchouli:text", + "anchor": "normal_copper" + }, + { + "Type": "patchouli:multiblock", + "name": "原生铜", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 65%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcopyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): CuFeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 10%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 225$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -64 — 30$(br)$(thing)尺寸$(): 20$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 燧石, 白云岩, 白垩岩, 石灰岩, 砾岩, 粘土岩, 页岩", + "title": "铬铁矿, 磁铁矿", + "type": "patchouli:text", + "anchor": "deep_magnetite" + }, + { + "Type": "patchouli:multiblock", + "name": "铬铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/chromite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 33%$(br)$(thing)来源$(): 铬$(br)$(thing)化学式$(): FeCr₂O₄$(br)$(thing)危害$(): $(c)$(t:需要橡胶手套)刺激性 (皮肤接触)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钒磁铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/vanadium_magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 铁, 钒$(br)$(thing)化学式$(): (Fe₃O₄)V", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "原生金", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)熔化$(): 金$(br)$(thing)化学式$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "磁铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 8%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₃O₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "蓝宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 8%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 160$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -32 — 75$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 60$(br2)$(thing)岩石类型$(): 片麻岩, 花岗岩", + "title": "银矿, 方铅矿, 铅矿", + "type": "patchouli:text", + "anchor": "normal_silver" + }, + { + "Type": "patchouli:multiblock", + "name": "铅矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 55%$(br)$(thing)熔化$(): 铅$(br)$(thing)化学式$(): Pb$(br)$(thing)危害$(): $(c)$(t:需要面罩)弱毒性 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "方铅矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/galena" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 30%$(br)$(thing)熔化$(): 铅$(br)$(thing)化学式$(): PbS$(br)$(thing)危害$(): $(c)$(t:需要面罩)弱毒性 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "原生银", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 银$(br)$(thing)化学式$(): Ag", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 180$(br)$(thing)密度$(): 0.375$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): 20 — 60$(br)$(thing)尺寸$(): 35$(br)$(thing)高度$(): 6$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 千枚岩, 大理岩, 板岩, 片岩, 片麻岩, 石英岩, 花岗岩, 辉长岩, 闪长岩", + "title": "锂辉石, 锂云母", + "type": "patchouli:text", + "anchor": "normal_spodumene" + }, + { + "Type": "patchouli:multiblock", + "name": "锂辉石", + "multiblock": { + "mapping": { + "0": "#forge:ores/spodumene" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 锂, 铝$(br)$(thing)化学式$(): LiAlSi₂O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "盐", + "multiblock": { + "mapping": { + "0": "#forge:ores/salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 30%$(br)$(thing)来源$(): 钠, 氯$(br)$(thing)化学式$(): NaCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "岩盐", + "multiblock": { + "mapping": { + "0": "#forge:ores/rock_salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 钾, 氯$(br)$(thing)化学式$(): KCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "锂云母", + "multiblock": { + "mapping": { + "0": "#forge:ores/lepidolite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 钾, 锂, 铝, 氟$(br)$(thing)化学式$(): KLi₃Al₄F₂O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 135$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 60 — 210$(br)$(thing)尺寸$(): 50$(br)$(thing)指示器最大深度$(): 60$(br2)$(thing)岩石类型$(): 花岗岩, 辉长岩, 闪长岩", + "title": "锡石矿 (地表)", + "type": "patchouli:text", + "anchor": "surface_cassiterite" + }, + { + "Type": "patchouli:multiblock", + "name": "锡石矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 60%$(br)$(thing)熔化$(): 锡$(br)$(thing)化学式$(): SnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "锡矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/tin" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 40%$(br)$(thing)熔化$(): 锡$(br)$(thing)化学式$(): Sn", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 170$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -32 — 75$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 60$(br2)$(thing)岩石类型$(): 花岗岩, 辉长岩, 闪长岩", + "title": "锡石矿 (普通)", + "type": "patchouli:text", + "anchor": "normal_cassiterite" + }, + { + "Type": "patchouli:multiblock", + "name": "锡矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/tin" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 60%$(br)$(thing)熔化$(): 锡$(br)$(thing)化学式$(): Sn", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "锡石矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 40%$(br)$(thing)熔化$(): 锡$(br)$(thing)化学式$(): SnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 195$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -32 — 60$(br)$(thing)尺寸$(): 30$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 安山岩, 流纹岩, 燧石, 玄武岩, 白云岩, 白垩岩, 石灰岩, 砾岩, 粘土岩, 英安岩, 页岩", + "title": "锰矿, 钽矿", + "type": "patchouli:text", + "anchor": "normal_manganese" + }, + { + "Type": "patchouli:multiblock", + "name": "钙铝榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/grossular" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 37%$(br)$(thing)来源$(): 钙, 铝$(br)$(thing)化学式$(): Ca₃Al₂Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "锰铝榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/spessartine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 锰, 铝$(br)$(thing)化学式$(): Al₂Mn₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "软锰矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrolusite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 锰$(br)$(thing)化学式$(): MnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钽铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/tantalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 12%$(br)$(thing)来源$(): 锰, 钽$(br)$(thing)化学式$(): MnTa₂O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 145$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 60 — 210$(br)$(thing)尺寸$(): 50$(br)$(thing)指示器最大深度$(): 60$(br2)$(thing)岩石类型$(): 千枚岩, 大理岩, 安山岩, 板岩, 流纹岩, 片岩, 片麻岩, 玄武岩, 石英岩, 英安岩", + "title": "闪锌矿, 硫", + "type": "patchouli:text", + "anchor": "surface_sphalerite" + }, + { + "Type": "patchouli:multiblock", + "name": "硫", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 55%$(br)$(thing)来源$(): 硫$(br)$(thing)化学式$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "闪锌矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 40%$(br)$(thing)熔化$(): 锌$(br)$(thing)化学式$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 170$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -32 — 75$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 60$(br2)$(thing)岩石类型$(): 千枚岩, 大理岩, 安山岩, 板岩, 流纹岩, 片岩, 片麻岩, 玄武岩, 石英岩, 英安岩", + "title": "闪锌矿, 黄铁矿", + "type": "patchouli:text", + "anchor": "normal_sphalerite" + }, + { + "Type": "patchouli:multiblock", + "name": "闪锌矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 40%$(br)$(thing)熔化$(): 锌$(br)$(thing)化学式$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "硫", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 硫$(br)$(thing)化学式$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 170$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -60 — 10$(br)$(thing)尺寸$(): 50$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 千枚岩, 大理岩, 板岩, 片岩, 片麻岩, 石英岩", + "title": "青金石, 蓝金石, 方钠石", + "type": "patchouli:text", + "anchor": "normal_lapis" + }, + { + "Type": "patchouli:multiblock", + "name": "蓝金石", + "multiblock": { + "mapping": { + "0": "#forge:ores/lazurite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 铝, 钙, 钠$(br)$(thing)化学式$(): Al₆Si₆Ca₈Na₈", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "方钠石", + "multiblock": { + "mapping": { + "0": "#forge:ores/sodalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 铝, 钠$(br)$(thing)化学式$(): Al₃Si₃Na₄Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "青金石", + "multiblock": { + "mapping": { + "0": "#forge:ores/lapis" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 蓝金石, 方钠石, 黄铁矿, 方解石", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "方解石", + "multiblock": { + "mapping": { + "0": "#forge:ores/calcite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 钙$(br)$(thing)化学式$(): CaCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 260$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): -64 — 26$(br)$(thing)尺寸$(): 28$(br)$(thing)高度$(): 7$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 千枚岩, 大理岩, 板岩, 片岩, 片麻岩, 石英岩", + "title": "黄玉, 辉铜矿", + "type": "patchouli:text", + "anchor": "deep_topaz" + }, + { + "Type": "patchouli:multiblock", + "name": "蓝黄玉", + "multiblock": { + "mapping": { + "0": "#forge:ores/blue_topaz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 铝, 氟$(br)$(thing)化学式$(): Al₂SiF₂H₂O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄玉", + "multiblock": { + "mapping": { + "0": "#forge:ores/topaz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 铝, 氟$(br)$(thing)化学式$(): Al₂SiFH₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "辉铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcocite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 铜$(br)$(thing)化学式$(): Cu₂S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "斑铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu₅FeS₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 200$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 20 — 217$(br)$(thing)尺寸$(): 50$(br)$(thing)指示器最大深度$(): 60$(br2)$(thing)岩石类型$(): 安山岩, 流纹岩, 玄武岩, 英安岩", + "title": "黄铜矿, 雄黄", + "type": "patchouli:text", + "anchor": "surface_copper" + }, + { + "Type": "patchouli:multiblock", + "name": "黄铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcopyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 61%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): CuFeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "沸石", + "multiblock": { + "mapping": { + "0": "#forge:ores/zeolite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 16%$(br)$(thing)来源$(): 铝, 氧$(br)$(thing)化学式$(): NaCa₄Si₂₇Al₉(H₂O)₂₈O₇₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "雄黄", + "multiblock": { + "mapping": { + "0": "#forge:ores/realgar" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 16%$(br)$(thing)来源$(): 砷$(br)$(thing)化学式$(): As₄S₄$(br)$(thing)危害$(): $(c)$(t:需要面罩)砷中毒 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "锡石矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)熔化$(): 锡$(br)$(thing)化学式$(): SnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 140$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 60 — 210$(br)$(thing)尺寸$(): 50$(br)$(thing)指示器最大深度$(): 60$(br2)$(thing)岩石类型$(): 千枚岩, 大理岩, 板岩, 片岩, 片麻岩, 石英岩", + "title": "黝铜矿 (地表)", + "type": "patchouli:text", + "anchor": "surface_tetrahedrite" + }, + { + "Type": "patchouli:multiblock", + "name": "黝铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 60%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "原生铜", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "辉锑矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)熔化$(): 锑$(br)$(thing)化学式$(): Sb₂S₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 170$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -32 — 75$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 60$(br2)$(thing)岩石类型$(): 千枚岩, 大理岩, 板岩, 片岩, 片麻岩, 石英岩", + "title": "黝铜矿 (普通)", + "type": "patchouli:text", + "anchor": "normal_tetrahedrite" + }, + { + "Type": "patchouli:multiblock", + "name": "黝铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 50%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "原生铜", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 30%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "辉锑矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)熔化$(): 锑$(br)$(thing)化学式$(): Sb₂S₃", + "type": "patchouli:multiblock" + } + ], + "sortnum": 1 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/mars_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/mars_ore_index.json new file mode 100644 index 000000000..8b7903876 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/mars_ore_index.json @@ -0,0 +1,42 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "火星矿物索引", + "icon": "tfc:ore/normal_hematite", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "这是 $(thing)火星$() 的 $(thing)矿物索引$()。所有矿物按字母顺序排序,然后按矿脉类型从最富集到最贫瘠排列。您可以点击它们以了解有关每种矿脉的更多信息。", + "title": "火星矿物索引", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)原生金: $(l:tfg_ores/mars_vein_index#mars_sapphire)55%$(/l), $(l:tfg_ores/mars_vein_index#mars_hematite)5%$(/l), $(l:tfg_ores/mars_vein_index#surface_hematite)5%$(/l)$()$(li)原生铜: $(l:tfg_ores/mars_vein_index#mars_stibnite)28%$(/l), $(l:tfg_ores/mars_vein_index#mars_copper)20%$(/l), $(l:tfg_ores/mars_vein_index#surface_tetrahedrite)19%$(/l)$()$(li)原生银: $(l:tfg_ores/mars_vein_index#mars_galena)20%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)11%$(/l)$()$(li)岩盐: $(l:tfg_ores/mars_vein_index#mars_salt)20%$(/l)$()$(li)斑铜矿: $(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)35%$(/l)$()$(li)方解石: $(l:tfg_ores/mars_vein_index#surface_hematite)5%$(/l)$()$(li)方铅矿: $(l:tfg_ores/mars_vein_index#mars_galena)40%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)35%$(/l)$()$(li)晶质铀矿: $(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)21%$(/l)$()$(li)氟碳镧铈矿: $(l:tfg_ores/mars_vein_index#mars_neodynium)58%$(/l)$()$(li)沥青铀矿: $(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)52%$(/l), $(l:tfg_ores/mars_vein_index#mars_pitchblende)41%$(/l)$()$(li)海绿石矿砂: $(l:tfg_ores/mars_vein_index#mars_lubricant)26%$(/l)$()$(li)滑石: $(l:tfg_ores/mars_vein_index#mars_lubricant)21%$(/l)$()$(li)烧绿石: $(l:tfg_ores/mars_vein_index#mars_apatite)14%$(/l)$()$(li)煤炭: $(l:tfg_ores/mars_vein_index#mars_coal)70%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)独居石: $(l:tfg_ores/mars_vein_index#mars_neodynium)29%$(/l)$()$(li)电石: $(l:tfg_ores/mars_vein_index#mars_sapphire)20%$(/l)$()$(li)白钨矿: $(l:tfg_ores/mars_vein_index#mars_tungsten)42%$(/l)$()$(li)皂石: $(l:tfg_ores/mars_vein_index#mars_lubricant)31%$(/l)$()$(li)盐: $(l:tfg_ores/mars_vein_index#mars_salt)30%$(/l)$()$(li)石棉: $(l:tfg_ores/mars_vein_index#mars_quartzite)17%$(/l)$()$(li)石膏: $(l:tfg_ores/mars_vein_index#surface_bismuthinite)20%$(/l)$()$(li)石英岩: $(l:tfg_ores/mars_vein_index#mars_quartzite)41%$(/l)$()$(li)硅镁镍矿: $(l:tfg_ores/mars_vein_index#mars_nickel)35%$(/l)$()$(li)硝石: $(l:tfg_ores/mars_vein_index#surface_cassiterite)10%$(/l)$()$(li)硫: $(l:tfg_ores/mars_vein_index#mars_sulfur)14%$(/l), $(l:tfg_ores/mars_vein_index#surface_bismuthinite)20%$(/l)$()$(li)硫铂矿: $(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)25%$(/l)$()$(li)磷灰石: $(l:tfg_ores/mars_vein_index#mars_apatite)47%$(/l)$()$(li)磷酸三钙: $(l:tfg_ores/mars_vein_index#mars_apatite)33%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)红宝石: $(l:tfg_ores/mars_vein_index#deep_mars_chromite)35%$(/l)$()$(li)红石: $(l:tfg_ores/mars_vein_index#deep_mars_chromite)45%$(/l), $(l:tfg_ores/mars_vein_index#surface_tetrahedrite)4%$(/l)$()$(li)绿宝石: $(l:tfg_ores/mars_vein_index#mars_beryllium)50%$(/l)$()$(li)绿色蓝宝石: $(l:tfg_ores/mars_vein_index#mars_almandine)15%$(/l), $(l:tfg_ores/mars_vein_index#mars_sapphire)5%$(/l)$()$(li)蓝宝石: $(l:tfg_ores/mars_vein_index#mars_almandine)15%$(/l)$()$(li)赤铁矿: $(l:tfg_ores/mars_vein_index#mars_hematite)50%$(/l), $(l:tfg_ores/mars_vein_index#surface_hematite)55%$(/l), $(l:tfg_ores/mars_vein_index#mars_coal)30%$(/l), $(l:tfg_ores/mars_vein_index#mars_pitchblende)29%$(/l), $(l:tfg_ores/mars_vein_index#mars_sulfur)19%$(/l), $(l:tfg_ores/mars_vein_index#surface_bismuthinite)20%$(/l), $(l:tfg_ores/mars_vein_index#mars_almandine)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_apatite)4%$(/l), $(l:tfg_ores/mars_vein_index#mars_copper)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_galena)6%$(/l), $(l:tfg_ores/mars_vein_index#mars_lubricant)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_neodynium)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_nickel)7%$(/l), $(l:tfg_ores/mars_vein_index#mars_quartzite)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_stibnite)4%$(/l), $(l:tfg_ores/mars_vein_index#mars_tungsten)4%$(/l)$()$(li)软锰矿: $(l:tfg_ores/mars_vein_index#mars_tantalite)25%$(/l)$()$(li)辉钴矿: $(l:tfg_ores/mars_vein_index#mars_nickel)28%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)11%$(/l)$()$(li)辉铋矿: $(l:tfg_ores/mars_vein_index#surface_bismuthinite)40%$(/l)$()$(li)辉锑矿: $(l:tfg_ores/mars_vein_index#mars_stibnite)19%$(/l), $(l:tfg_ores/mars_vein_index#surface_tetrahedrite)19%$(/l)$()$(li)重晶石: $(l:tfg_ores/mars_vein_index#mars_quartzite)35%$(/l)$()$(li)针铁矿: $(l:tfg_ores/mars_vein_index#mars_hematite)15%$(/l)$()$(li)钍矿: $(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)26%$(/l), $(l:tfg_ores/mars_vein_index#mars_pitchblende)29%$(/l)$()$(li)钕矿: $(l:tfg_ores/mars_vein_index#mars_neodynium)5%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)钙铝榴石: $(l:tfg_ores/mars_vein_index#mars_tantalite)37%$(/l)$()$(li)钨酸锂: $(l:tfg_ores/mars_vein_index#mars_tungsten)33%$(/l)$()$(li)钽铁矿: $(l:tfg_ores/mars_vein_index#mars_tantalite)12%$(/l)$()$(li)铁铝榴石: $(l:tfg_ores/mars_vein_index#mars_almandine)36%$(/l)$()$(li)铂矿: $(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)15%$(/l)$()$(li)铅矿: $(l:tfg_ores/mars_vein_index#mars_galena)33%$(/l)$()$(li)铍矿: $(l:tfg_ores/mars_vein_index#mars_beryllium)35%$(/l)$()$(li)铝土矿: $(l:tfg_ores/mars_vein_index#mars_sapphire)20%$(/l)$()$(li)铬铁矿: $(l:tfg_ores/mars_vein_index#deep_mars_chromite)20%$(/l)$()$(li)锂云母: $(l:tfg_ores/mars_vein_index#mars_salt)15%$(/l)$()$(li)锂矿: $(l:tfg_ores/mars_vein_index#mars_tungsten)19%$(/l)$()$(li)锂辉石: $(l:tfg_ores/mars_vein_index#mars_salt)35%$(/l)$()$(li)锡石矿: $(l:tfg_ores/mars_vein_index#surface_cassiterite)55%$(/l)$()$(li)锡矿: $(l:tfg_ores/mars_vein_index#surface_cassiterite)35%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)锰铝榴石: $(l:tfg_ores/mars_vein_index#mars_tantalite)25%$(/l)$()$(li)镁铝榴石: $(l:tfg_ores/mars_vein_index#mars_almandine)26%$(/l)$()$(li)镍矿: $(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)25%$(/l), $(l:tfg_ores/mars_vein_index#mars_nickel)28%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)23%$(/l)$()$(li)镍黄铁矿: $(l:tfg_ores/mars_vein_index#mars_lubricant)15%$(/l)$()$(li)闪锌矿: $(l:tfg_ores/mars_vein_index#mars_sulfur)23%$(/l), $(l:tfg_ores/mars_vein_index#surface_nickel_galena)17%$(/l)$()$(li)雄黄: $(l:tfg_ores/mars_vein_index#mars_beryllium)15%$(/l)$()$(li)黄褐铁矿: $(l:tfg_ores/mars_vein_index#mars_hematite)30%$(/l), $(l:tfg_ores/mars_vein_index#surface_hematite)33%$(/l)$()$(li)黄铁矿: $(l:tfg_ores/mars_vein_index#mars_sulfur)42%$(/l), $(l:tfg_ores/mars_vein_index#mars_copper)10%$(/l)$()$(li)黄铜矿: $(l:tfg_ores/mars_vein_index#mars_copper)65%$(/l)$()$(li)黝铜矿: $(l:tfg_ores/mars_vein_index#surface_tetrahedrite)57%$(/l), $(l:tfg_ores/mars_vein_index#mars_stibnite)47%$(/l)$()", + "type": "patchouli:text" + } + ], + "sortnum": 6 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/mars_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/mars_vein_index.json new file mode 100644 index 000000000..fd5cafe8b --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/mars_vein_index.json @@ -0,0 +1,2304 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "火星矿脉索引", + "icon": "gtceu:mars_stone_hematite_ore", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "这是 $(item)火星$() 的 $(thing)矿脉索引$()。每个矿脉都有关于其稀有度、密度、矿脉类型、生成高度、尺寸、生成于何种岩石中等详细信息。", + "title": "火星矿脉索引", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_almandine)Almandine & Sapphire$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)Bornite & Cooperite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_coal)Coal & Hematite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_sapphire)Gold, Electrotine, & Bauxite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_pitchblende)Pitchblende, Thorium, & Hematite$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)Pitchblende, Thorium, & Uraninite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_quartzite)Quartzite, Asbestos, & Barite$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_chromite)Redstone & Chromite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_salt)Salts & Spodumene$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_lubricant)Soapstone, Talc, & Glauconite$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_nickel_galena)Sphalerite & Galena$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_neodynium)氟碳镧铈矿, 独居石$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_tungsten)白钨矿, 钨酸锂$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_nickel)硅镁镍矿, 辉钴矿$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_apatite)磷灰石, 烧绿石$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_beryllium)绿宝石, 铍矿$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_hematite)赤铁矿, 褐铁矿$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_hematite)赤铁矿, 褐铁矿$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_bismuthinite)辉铋矿$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_copper)铜矿, 黄铜矿$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_galena)银矿, 方铅矿, 铅矿$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_cassiterite)锡石矿$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_tantalite)锰矿, 钽矿$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_sulfur)闪锌矿, 黄铁矿$()$()$(li)$(l:tfg_ores/mars_vein_index#surface_tetrahedrite)黝铜矿 (地表)$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_stibnite)黝铜矿 (普通)$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 280$(br)$(thing)密度$(): 0.35$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): 0 — 70$(br)$(thing)尺寸$(): 65$(br)$(thing)高度$(): 8$(br)$(thing)指示器最大深度$(): 15$(br2)$(thing)岩石类型$(): 泥板岩, 燧石, 白云岩, 石灰岩, 粗面岩, 粘土岩, 红花岗岩, 辉长岩, 闪长岩, 页岩", + "title": "Almandine & Sapphire", + "type": "patchouli:text", + "anchor": "mars_almandine" + }, + { + "Type": "patchouli:multiblock", + "name": "铁铝榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/almandine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 36%$(br)$(thing)来源$(): 铝, 铁$(br)$(thing)化学式$(): Al₂Fe₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "镁铝榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrope" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 26%$(br)$(thing)来源$(): 铝, 镁$(br)$(thing)化学式$(): Al₂Mg₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "蓝宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "绿色蓝宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 370$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -20 — 0$(br)$(thing)尺寸$(): 60$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 泥板岩, 燧石, 玄武岩, 白垩岩, 砾岩, 粗面岩, 红花岗岩, 英安岩, 闪长岩", + "title": "Bornite & Cooperite", + "type": "patchouli:text", + "anchor": "deep_mars_sheldonite" + }, + { + "Type": "patchouli:multiblock", + "name": "斑铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu₅FeS₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "硫铂矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/cooperite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 铂, 镍, 钯$(br)$(thing)化学式$(): Pt₃NiSPd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "镍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)熔化$(): 镍$(br)$(thing)化学式$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铂矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/platinum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 铂$(br)$(thing)化学式$(): Pt", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 215$(br)$(thing)密度$(): 0.6$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 70$(br)$(thing)尺寸$(): 55$(br)$(thing)指示器最大深度$(): 10$(br2)$(thing)岩石类型$(): 泥板岩, 玄武岩, 白云岩, 白垩岩, 砾岩, 粗面岩, 粘土岩, 红花岗岩, 花岗岩, 英安岩, 闪长岩", + "title": "Coal & Hematite", + "type": "patchouli:text", + "anchor": "mars_coal" + }, + { + "Type": "patchouli:multiblock", + "name": "煤炭", + "multiblock": { + "mapping": { + "0": "#forge:ores/coal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 70%$(br)$(thing)用于$(): 燃料, 蒸馏$(br)$(thing)化学式$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 30%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 230$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 70$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 15$(br2)$(thing)岩石类型$(): 燧石, 白垩岩, 粘土岩, 花岗岩, 辉长岩, 闪长岩, 页岩", + "title": "Gold, Electrotine, & Bauxite", + "type": "patchouli:text", + "anchor": "mars_sapphire" + }, + { + "Type": "patchouli:multiblock", + "name": "原生金", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 55%$(br)$(thing)熔化$(): 金$(br)$(thing)化学式$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铝土矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "电石", + "multiblock": { + "mapping": { + "0": "#forge:ores/electrotine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 金, 银, 红石$(br)$(thing)化学式$(): (Si(FeS₂)₅(CrAl₂O₃)Hg₃)(AgAu)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "绿色蓝宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 220$(br)$(thing)密度$(): 0.55$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 70$(br)$(thing)尺寸$(): 20$(br)$(thing)指示器最大深度$(): 15$(br2)$(thing)岩石类型$(): 泥板岩, 白云岩, 砾岩, 粗面岩, 红花岗岩, 英安岩, 辉长岩, 闪长岩, 页岩", + "title": "Pitchblende, Thorium, & Hematite", + "type": "patchouli:text", + "anchor": "mars_pitchblende" + }, + { + "Type": "patchouli:multiblock", + "name": "沥青铀矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pitchblende" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 41%$(br)$(thing)来源$(): 铀, 钍, 铅$(br)$(thing)化学式$(): (UO₂)₃ThPb$(br)$(thing)危害$(): $(c)$(t:需要全身防护)致癌 (任何接触)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/thorium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 29%$(br)$(thing)来源$(): 钍$(br)$(thing)化学式$(): Th", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 29%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 370$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -20 — 0$(br)$(thing)尺寸$(): 60$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 泥板岩, 粗面岩, 粘土岩, 英安岩, 辉长岩, 闪长岩, 页岩", + "title": "Pitchblende, Thorium, & Uraninite", + "type": "patchouli:text", + "anchor": "deep_mars_pitchblende" + }, + { + "Type": "patchouli:multiblock", + "name": "沥青铀矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pitchblende" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 52%$(br)$(thing)来源$(): 铀, 钍, 铅$(br)$(thing)化学式$(): (UO₂)₃ThPb$(br)$(thing)危害$(): $(c)$(t:需要全身防护)致癌 (任何接触)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/thorium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 26%$(br)$(thing)来源$(): 钍$(br)$(thing)化学式$(): Th", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "晶质铀矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/uraninite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 21%$(br)$(thing)来源$(): 铀$(br)$(thing)化学式$(): UO₂$(br)$(thing)危害$(): $(c)$(t:需要全身防护)致癌 (任何接触)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 210$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 70$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 15$(br2)$(thing)岩石类型$(): 泥板岩, 燧石, 白垩岩, 石灰岩, 粗面岩, 粘土岩, 红花岗岩, 花岗岩, 页岩", + "title": "Quartzite, Asbestos, & Barite", + "type": "patchouli:text", + "anchor": "mars_quartzite" + }, + { + "Type": "patchouli:multiblock", + "name": "石英岩", + "multiblock": { + "mapping": { + "0": "#forge:ores/quartzite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 41%$(br)$(thing)用于$(): LV组件$(br)$(thing)化学式$(): SiO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "重晶石", + "multiblock": { + "mapping": { + "0": "#forge:ores/barite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 钡$(br)$(thing)化学式$(): BaSO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "石棉", + "multiblock": { + "mapping": { + "0": "#forge:ores/asbestos" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 17%$(br)$(thing)来源$(): 镁, 肺癌$(br)$(thing)化学式$(): Mg₃Si₂H₄O₉$(br)$(thing)危害$(): $(c)$(t:需要面罩)石棉肺 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 370$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): -20 — 0$(br)$(thing)尺寸$(): 60$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 泥板岩, 燧石, 玄武岩, 白垩岩, 石灰岩, 粘土岩, 英安岩, 页岩", + "title": "Redstone & Chromite", + "type": "patchouli:text", + "anchor": "deep_mars_chromite" + }, + { + "Type": "patchouli:multiblock", + "name": "红石", + "multiblock": { + "mapping": { + "0": "#forge:ores/redstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 45%$(br)$(thing)熔化$(): 红石$(br)$(thing)化学式$(): Si(FeS₂)₅(CrAl₂O₃)Hg₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "红宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 铬, 铝$(br)$(thing)化学式$(): CrAl₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铬铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/chromite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 铬$(br)$(thing)化学式$(): FeCr₂O₄$(br)$(thing)危害$(): $(c)$(t:需要橡胶手套)刺激性 (皮肤接触)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 210$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): 0 — 70$(br)$(thing)尺寸$(): 40$(br)$(thing)高度$(): 6$(br)$(thing)指示器最大深度$(): 15$(br2)$(thing)岩石类型$(): 泥板岩, 燧石, 白垩岩, 石灰岩, 粗面岩, 粘土岩, 红花岗岩, 花岗岩, 闪长岩", + "title": "Salts & Spodumene", + "type": "patchouli:text", + "anchor": "mars_salt" + }, + { + "Type": "patchouli:multiblock", + "name": "锂辉石", + "multiblock": { + "mapping": { + "0": "#forge:ores/spodumene" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 锂, 铝$(br)$(thing)化学式$(): LiAlSi₂O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "盐", + "multiblock": { + "mapping": { + "0": "#forge:ores/salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 30%$(br)$(thing)来源$(): 钠, 氯$(br)$(thing)化学式$(): NaCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "岩盐", + "multiblock": { + "mapping": { + "0": "#forge:ores/rock_salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 钾, 氯$(br)$(thing)化学式$(): KCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "锂云母", + "multiblock": { + "mapping": { + "0": "#forge:ores/lepidolite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 钾, 锂, 铝, 氟$(br)$(thing)化学式$(): KLi₃Al₄F₂O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 220$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 70$(br)$(thing)尺寸$(): 30$(br)$(thing)指示器最大深度$(): 15$(br2)$(thing)岩石类型$(): 泥板岩, 白云岩, 石灰岩, 砾岩, 粘土岩, 红花岗岩, 花岗岩, 英安岩, 闪长岩, 页岩", + "title": "Soapstone, Talc, & Glauconite", + "type": "patchouli:text", + "anchor": "mars_lubricant" + }, + { + "Type": "patchouli:multiblock", + "name": "皂石", + "multiblock": { + "mapping": { + "0": "#forge:ores/soapstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 31%$(br)$(thing)来源$(): 镁$(br)$(thing)化学式$(): Mg₃Si₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "海绿石矿砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 26%$(br)$(thing)来源$(): 镁, 铝$(br)$(thing)化学式$(): KMg₂Al₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "滑石", + "multiblock": { + "mapping": { + "0": "#forge:ores/talc" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 21%$(br)$(thing)来源$(): 镁$(br)$(thing)化学式$(): Mg₃Si₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "镍黄铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 镍$(br)$(thing)化学式$(): Ni₉S₈", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 150$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 80 — 180$(br)$(thing)尺寸$(): 45$(br)$(thing)指示器最大深度$(): 40$(br2)$(thing)岩石类型$(): 泥板岩, 燧石, 玄武岩, 白云岩, 白垩岩, 石灰岩, 砾岩, 粗面岩, 粘土岩, 红花岗岩, 花岗岩, 英安岩, 辉长岩, 闪长岩, 页岩", + "title": "Sphalerite & Galena", + "type": "patchouli:text", + "anchor": "surface_nickel_galena" + }, + { + "Type": "patchouli:multiblock", + "name": "方铅矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/galena" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)熔化$(): 铅$(br)$(thing)化学式$(): PbS$(br)$(thing)危害$(): $(c)$(t:需要面罩)弱毒性 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "镍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 23%$(br)$(thing)熔化$(): 镍$(br)$(thing)化学式$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "闪锌矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 17%$(br)$(thing)熔化$(): 锌$(br)$(thing)化学式$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "原生银", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 11%$(br)$(thing)熔化$(): 银$(br)$(thing)化学式$(): Ag", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "辉钴矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobaltite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 11%$(br)$(thing)来源$(): 钴, 砷$(br)$(thing)化学式$(): CoAsS$(br)$(thing)危害$(): $(c)$(t:需要面罩)砷中毒 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 215$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 70$(br)$(thing)尺寸$(): 45$(br)$(thing)指示器最大深度$(): 15$(br2)$(thing)岩石类型$(): 泥板岩, 燧石, 玄武岩, 白云岩, 白垩岩, 粗面岩, 辉长岩, 闪长岩", + "title": "氟碳镧铈矿, 独居石", + "type": "patchouli:text", + "anchor": "mars_neodynium" + }, + { + "Type": "patchouli:multiblock", + "name": "氟碳镧铈矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/bastnasite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 58%$(br)$(thing)来源$(): 铈, 氟$(br)$(thing)化学式$(): CeCFO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "独居石", + "multiblock": { + "mapping": { + "0": "#forge:ores/monazite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 29%$(br)$(thing)来源$(): 磷, 稀土$(br)$(thing)化学式$(): ?(PO₄)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钕矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/neodymium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)来源$(): 钕$(br)$(thing)化学式$(): Nd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 280$(br)$(thing)密度$(): 0.45$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 70$(br)$(thing)尺寸$(): 50$(br)$(thing)指示器最大深度$(): 15$(br2)$(thing)岩石类型$(): 燧石, 玄武岩, 白云岩, 白垩岩, 石灰岩, 粘土岩, 红花岗岩, 页岩", + "title": "白钨矿, 钨酸锂", + "type": "patchouli:text", + "anchor": "mars_tungsten" + }, + { + "Type": "patchouli:multiblock", + "name": "白钨矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/scheelite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 42%$(br)$(thing)来源$(): 钨$(br)$(thing)化学式$(): Ca(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钨酸锂", + "multiblock": { + "mapping": { + "0": "#forge:ores/tungstate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 33%$(br)$(thing)来源$(): 钨, 锂$(br)$(thing)化学式$(): Li₂(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "锂矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/lithium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 19%$(br)$(thing)来源$(): 锂$(br)$(thing)化学式$(): Li", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 4%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 250$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 70$(br)$(thing)尺寸$(): 55$(br)$(thing)指示器最大深度$(): 40$(br2)$(thing)岩石类型$(): 泥板岩, 玄武岩, 白垩岩, 石灰岩, 粘土岩, 红花岗岩, 花岗岩, 英安岩, 页岩", + "title": "硅镁镍矿, 辉钴矿", + "type": "patchouli:text", + "anchor": "mars_nickel" + }, + { + "Type": "patchouli:multiblock", + "name": "硅镁镍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnierite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)熔化$(): 镍$(br)$(thing)化学式$(): NiO", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "镍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 28%$(br)$(thing)熔化$(): 镍$(br)$(thing)化学式$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "辉钴矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobaltite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 28%$(br)$(thing)来源$(): 钴, 砷$(br)$(thing)化学式$(): CoAsS$(br)$(thing)危害$(): $(c)$(t:需要面罩)砷中毒 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 7%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 220$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 70$(br)$(thing)尺寸$(): 45$(br)$(thing)指示器最大深度$(): 15$(br2)$(thing)岩石类型$(): 燧石, 玄武岩, 白垩岩, 石灰岩, 砾岩, 粗面岩, 粘土岩, 红花岗岩, 英安岩, 页岩", + "title": "磷灰石, 烧绿石", + "type": "patchouli:text", + "anchor": "mars_apatite" + }, + { + "Type": "patchouli:multiblock", + "name": "磷灰石", + "multiblock": { + "mapping": { + "0": "#forge:ores/apatite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 47%$(br)$(thing)来源$(): 钙, 磷, 林业PTSD$(br)$(thing)化学式$(): Ca₅(PO₄)₃Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "磷酸三钙", + "multiblock": { + "mapping": { + "0": "#forge:ores/tricalcium_phosphate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 33%$(br)$(thing)来源$(): 钙, 磷$(br)$(thing)化学式$(): Ca₃(PO₄)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "烧绿石", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrochlore" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 14%$(br)$(thing)来源$(): 铌$(br)$(thing)化学式$(): Ca₂Nb₂O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 4%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 350$(br)$(thing)密度$(): 0.35$(br)$(thing)类型$(): 管状矿脉$(br)$(thing)Y 坐标$(): -20 — 50$(br)$(thing)高度$(): 40$(br)$(thing)半径$(): 8$(br)$(thing)指示器最大深度$(): 15$(br2)$(thing)岩石类型$(): 安山岩, 流纹岩, 玄武岩, 英安岩", + "title": "绿宝石, 铍矿", + "type": "patchouli:text", + "anchor": "mars_beryllium" + }, + { + "Type": "patchouli:multiblock", + "name": "绿宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/emerald" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 50%$(br)$(thing)用于$(): MV组件, 标签过滤卡$(br)$(thing)化学式$(): Be₃Al₂Si₆O₁₈", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/beryllium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 铍$(br)$(thing)化学式$(): Be$(br)$(thing)危害$(): $(c)$(t:需要橡胶手套)铍中毒 (皮肤接触)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "雄黄", + "multiblock": { + "mapping": { + "0": "#forge:ores/realgar" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 砷$(br)$(thing)化学式$(): As₄S₄$(br)$(thing)危害$(): $(c)$(t:需要面罩)砷中毒 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 210$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 70$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 30$(br2)$(thing)岩石类型$(): 泥板岩, 玄武岩, 白云岩, 石灰岩, 砾岩, 粘土岩, 红花岗岩, 英安岩", + "title": "赤铁矿, 褐铁矿", + "type": "patchouli:text", + "anchor": "mars_hematite" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 50%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄褐铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 30%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "针铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "原生金", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)熔化$(): 金$(br)$(thing)化学式$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 140$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 80 — 180$(br)$(thing)尺寸$(): 45$(br)$(thing)指示器最大深度$(): 40$(br2)$(thing)岩石类型$(): 泥板岩, 燧石, 玄武岩, 白云岩, 白垩岩, 石灰岩, 砾岩, 粗面岩, 粘土岩, 红花岗岩, 花岗岩, 英安岩, 辉长岩, 闪长岩, 页岩", + "title": "赤铁矿, 褐铁矿", + "type": "patchouli:text", + "anchor": "surface_hematite" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 55%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄褐铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 33%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "原生金", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)熔化$(): 金$(br)$(thing)化学式$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "方解石", + "multiblock": { + "mapping": { + "0": "#forge:ores/calcite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)来源$(): 钙$(br)$(thing)化学式$(): CaCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 140$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 80 — 180$(br)$(thing)尺寸$(): 45$(br)$(thing)指示器最大深度$(): 40$(br2)$(thing)岩石类型$(): 泥板岩, 燧石, 玄武岩, 白云岩, 白垩岩, 石灰岩, 砾岩, 粗面岩, 粘土岩, 红花岗岩, 花岗岩, 英安岩, 辉长岩, 闪长岩, 页岩", + "title": "辉铋矿", + "type": "patchouli:text", + "anchor": "surface_bismuthinite" + }, + { + "Type": "patchouli:multiblock", + "name": "辉铋矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/bismuth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 40%$(br)$(thing)熔化$(): 铋$(br)$(thing)化学式$(): Bi", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "硫", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 硫$(br)$(thing)化学式$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "石膏", + "multiblock": { + "mapping": { + "0": "#forge:ores/gypsum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)用于$(): 雪花石膏砖块(可染色)$(br)$(thing)化学式$(): CaS(H₂O)₂O₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 220$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 70$(br)$(thing)尺寸$(): 50$(br)$(thing)指示器最大深度$(): 40$(br2)$(thing)岩石类型$(): 泥板岩, 玄武岩, 白云岩, 石灰岩, 砾岩, 粗面岩, 粘土岩, 英安岩, 页岩", + "title": "铜矿, 黄铜矿", + "type": "patchouli:text", + "anchor": "mars_copper" + }, + { + "Type": "patchouli:multiblock", + "name": "黄铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcopyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 65%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): CuFeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "原生铜", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 10%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 215$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 70$(br)$(thing)尺寸$(): 50$(br)$(thing)指示器最大深度$(): 40$(br2)$(thing)岩石类型$(): 泥板岩, 燧石, 玄武岩, 白垩岩, 粘土岩, 红花岗岩, 花岗岩, 英安岩, 辉长岩, 页岩", + "title": "银矿, 方铅矿, 铅矿", + "type": "patchouli:text", + "anchor": "mars_galena" + }, + { + "Type": "patchouli:multiblock", + "name": "方铅矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/galena" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 40%$(br)$(thing)熔化$(): 铅$(br)$(thing)化学式$(): PbS$(br)$(thing)危害$(): $(c)$(t:需要面罩)弱毒性 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铅矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 33%$(br)$(thing)熔化$(): 铅$(br)$(thing)化学式$(): Pb$(br)$(thing)危害$(): $(c)$(t:需要面罩)弱毒性 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "原生银", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)熔化$(): 银$(br)$(thing)化学式$(): Ag", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 6%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 135$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 80 — 180$(br)$(thing)尺寸$(): 45$(br)$(thing)指示器最大深度$(): 40$(br2)$(thing)岩石类型$(): 泥板岩, 燧石, 玄武岩, 白云岩, 白垩岩, 石灰岩, 砾岩, 粗面岩, 粘土岩, 红花岗岩, 花岗岩, 英安岩, 辉长岩, 闪长岩, 页岩", + "title": "锡石矿", + "type": "patchouli:text", + "anchor": "surface_cassiterite" + }, + { + "Type": "patchouli:multiblock", + "name": "锡石矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 55%$(br)$(thing)熔化$(): 锡$(br)$(thing)化学式$(): SnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "锡矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/tin" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)熔化$(): 锡$(br)$(thing)化学式$(): Sn", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "硝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 10%$(br)$(thing)来源$(): 钾, 氮$(br)$(thing)化学式$(): KNO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 230$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 70$(br)$(thing)尺寸$(): 42$(br)$(thing)指示器最大深度$(): 15$(br2)$(thing)岩石类型$(): 泥板岩, 燧石, 玄武岩, 白垩岩, 石灰岩, 粗面岩, 粘土岩, 红花岗岩, 辉长岩, 页岩", + "title": "锰矿, 钽矿", + "type": "patchouli:text", + "anchor": "mars_tantalite" + }, + { + "Type": "patchouli:multiblock", + "name": "钙铝榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/grossular" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 37%$(br)$(thing)来源$(): 钙, 铝$(br)$(thing)化学式$(): Ca₃Al₂Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "锰铝榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/spessartine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 锰, 铝$(br)$(thing)化学式$(): Al₂Mn₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "软锰矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrolusite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 锰$(br)$(thing)化学式$(): MnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钽铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/tantalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 12%$(br)$(thing)来源$(): 锰, 钽$(br)$(thing)化学式$(): MnTa₂O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 215$(br)$(thing)密度$(): 0.2$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 70$(br)$(thing)尺寸$(): 45$(br)$(thing)指示器最大深度$(): 30$(br2)$(thing)岩石类型$(): 泥板岩, 燧石, 玄武岩, 白垩岩, 粗面岩, 花岗岩, 英安岩, 辉长岩, 闪长岩", + "title": "闪锌矿, 黄铁矿", + "type": "patchouli:text", + "anchor": "mars_sulfur" + }, + { + "Type": "patchouli:multiblock", + "name": "黄铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 42%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "闪锌矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 23%$(br)$(thing)熔化$(): 锌$(br)$(thing)化学式$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 19%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "硫", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 14%$(br)$(thing)来源$(): 硫$(br)$(thing)化学式$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 140$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 80 — 180$(br)$(thing)尺寸$(): 45$(br)$(thing)指示器最大深度$(): 40$(br2)$(thing)岩石类型$(): 泥板岩, 燧石, 玄武岩, 白云岩, 白垩岩, 石灰岩, 砾岩, 粗面岩, 粘土岩, 红花岗岩, 花岗岩, 英安岩, 辉长岩, 闪长岩, 页岩", + "title": "黝铜矿 (地表)", + "type": "patchouli:text", + "anchor": "surface_tetrahedrite" + }, + { + "Type": "patchouli:multiblock", + "name": "黝铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 57%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "原生铜", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 19%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "辉锑矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 19%$(br)$(thing)熔化$(): 锑$(br)$(thing)化学式$(): Sb₂S₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "红石", + "multiblock": { + "mapping": { + "0": "#forge:ores/redstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 4%$(br)$(thing)熔化$(): 红石$(br)$(thing)化学式$(): Si(FeS₂)₅(CrAl₂O₃)Hg₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 210$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 70$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 40$(br2)$(thing)岩石类型$(): 泥板岩, 燧石, 玄武岩, 白云岩, 白垩岩, 粗面岩, 红花岗岩, 英安岩, 辉长岩, 闪长岩, 页岩", + "title": "黝铜矿 (普通)", + "type": "patchouli:text", + "anchor": "mars_stibnite" + }, + { + "Type": "patchouli:multiblock", + "name": "黝铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 47%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "原生铜", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 28%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "辉锑矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 19%$(br)$(thing)熔化$(): 锑$(br)$(thing)化学式$(): Sb₂S₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 4%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + } + ], + "sortnum": 7 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/moon_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/moon_ore_index.json new file mode 100644 index 000000000..1ca0ffe3e --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/moon_ore_index.json @@ -0,0 +1,47 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "月球矿物索引", + "icon": "ae2:certus_quartz_crystal", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "这是 $(thing)月球$() 的 $(thing)矿物索引$()。所有矿物按字母顺序排序,然后按矿脉类型从最富集到最贫瘠排列。您可以点击它们以了解有关每种矿脉的更多信息。", + "title": "月球矿物索引", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)下界石英: $(l:tfg_ores/moon_vein_index#moon_quartz)30%$(/l)$()$(li)云母: $(l:tfg_ores/moon_vein_index#moon_mica)23%$(/l)$()$(li)原生金: $(l:tfg_ores/moon_vein_index#moon_gold)55%$(/l), $(l:tfg_ores/moon_vein_index#moon_magnetite)15%$(/l)$()$(li)原生铜: $(l:tfg_ores/moon_vein_index#moon_tetrahedrite)15%$(/l)$()$(li)原生银: $(l:tfg_ores/moon_vein_index#moon_silver)42%$(/l)$()$(li)天然碱: $(l:tfg_ores/moon_vein_index#moon_lubricant)10%$(/l)$()$(li)岩盐: $(l:tfg_ores/moon_vein_index#moon_beryllium)18%$(/l)$()$(li)戴斯矿: $(l:tfg_ores/moon_vein_index#moon_desh)40%$(/l), $(l:tfg_ores/moon_vein_index#moon_sphalerite)15%$(/l)$()$(li)斑铜矿: $(l:tfg_ores/moon_vein_index#moon_sheldonite)35%$(/l), $(l:tfg_ores/moon_vein_index#moon_topaz)15%$(/l)$()$(li)方解石: $(l:tfg_ores/moon_vein_index#moon_gypsum)25%$(/l)$()$(li)方铅矿: $(l:tfg_ores/moon_vein_index#moon_silver)28%$(/l)$()$(li)明矾石: $(l:tfg_ores/moon_vein_index#moon_gypsum)15%$(/l)$()$(li)朱砂: $(l:tfg_ores/moon_vein_index#moon_redstone)19%$(/l)$()$(li)橄榄石: $(l:tfg_ores/moon_vein_index#moon_graphite)10%$(/l), $(l:tfg_ores/moon_vein_index#moon_apatite)4%$(/l), $(l:tfg_ores/moon_vein_index#moon_beryllium)4%$(/l), $(l:tfg_ores/moon_vein_index#moon_gypsum)5%$(/l), $(l:tfg_ores/moon_vein_index#moon_mica)4%$(/l), $(l:tfg_ores/moon_vein_index#moon_molybdenum)5%$(/l), $(l:tfg_ores/moon_vein_index#moon_redstone)4%$(/l), $(l:tfg_ores/moon_vein_index#moon_silver)4%$(/l), $(l:tfg_ores/moon_vein_index#moon_sapphire)2%$(/l), $(l:tfg_ores/moon_vein_index#moon_monazite)1%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)氟碳镧铈矿: $(l:tfg_ores/moon_vein_index#moon_monazite)61%$(/l)$()$(li)沸石: $(l:tfg_ores/moon_vein_index#moon_cassiterite)5%$(/l)$()$(li)海绿石矿砂: $(l:tfg_ores/moon_vein_index#moon_lubricant)25%$(/l)$()$(li)滑石: $(l:tfg_ores/moon_vein_index#moon_lubricant)20%$(/l), $(l:tfg_ores/moon_vein_index#moon_saltpeter)12%$(/l)$()$(li)烧绿石: $(l:tfg_ores/moon_vein_index#moon_apatite)38%$(/l)$()$(li)独居石: $(l:tfg_ores/moon_vein_index#moon_monazite)30%$(/l)$()$(li)电石: $(l:tfg_ores/moon_vein_index#moon_saltpeter)37%$(/l)$()$(li)白钨矿: $(l:tfg_ores/moon_vein_index#moon_scheelite)40%$(/l)$()$(li)皂石: $(l:tfg_ores/moon_vein_index#moon_lubricant)30%$(/l), $(l:tfg_ores/moon_vein_index#moon_saltpeter)20%$(/l)$()$(li)石膏: $(l:tfg_ores/moon_vein_index#moon_gypsum)35%$(/l)$()$(li)石英岩: $(l:tfg_ores/moon_vein_index#moon_quartz)20%$(/l)$()$(li)石墨: $(l:tfg_ores/moon_vein_index#moon_graphite)52%$(/l)$()$(li)硅镁镍矿: $(l:tfg_ores/moon_vein_index#moon_garnierite)23%$(/l)$()$(li)硝石: $(l:tfg_ores/moon_vein_index#moon_saltpeter)29%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)硫铂矿: $(l:tfg_ores/moon_vein_index#moon_sheldonite)25%$(/l)$()$(li)硼砂: $(l:tfg_ores/moon_vein_index#moon_gypsum)20%$(/l)$()$(li)磁铁矿: $(l:tfg_ores/moon_vein_index#moon_magnetite)25%$(/l), $(l:tfg_ores/moon_vein_index#moon_gold)20%$(/l)$()$(li)磷灰石: $(l:tfg_ores/moon_vein_index#moon_apatite)23%$(/l)$()$(li)磷酸三钙: $(l:tfg_ores/moon_vein_index#moon_apatite)33%$(/l)$()$(li)紫水晶: $(l:tfg_ores/moon_vein_index#moon_garnet)38%$(/l)$()$(li)红宝石: $(l:tfg_ores/moon_vein_index#moon_redstone)33%$(/l)$()$(li)红石: $(l:tfg_ores/moon_vein_index#moon_redstone)42%$(/l)$()$(li)红色石榴石: $(l:tfg_ores/moon_vein_index#moon_garnet)9%$(/l)$()$(li)绿宝石: $(l:tfg_ores/moon_vein_index#moon_beryllium)45%$(/l)$()$(li)绿色蓝宝石: $(l:tfg_ores/moon_vein_index#moon_sapphire)16%$(/l), $(l:tfg_ores/moon_vein_index#moon_gold)5%$(/l)$()$(li)蓝宝石: $(l:tfg_ores/moon_vein_index#moon_sapphire)16%$(/l), $(l:tfg_ores/moon_vein_index#moon_magnetite)5%$(/l)$()$(li)蓝晶石: $(l:tfg_ores/moon_vein_index#moon_mica)33%$(/l)$()$(li)蓝黄玉: $(l:tfg_ores/moon_vein_index#moon_topaz)35%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)蛋白石: $(l:tfg_ores/moon_vein_index#moon_garnet)38%$(/l)$()$(li)赛特斯石英矿: $(l:tfg_ores/moon_vein_index#moon_quartz)45%$(/l)$()$(li)软锰矿: $(l:tfg_ores/moon_vein_index#moon_pyrolusite)38%$(/l), $(l:tfg_ores/moon_vein_index#moon_manganese)25%$(/l)$()$(li)辉钴矿: $(l:tfg_ores/moon_vein_index#moon_pyrolusite)23%$(/l), $(l:tfg_ores/moon_vein_index#moon_garnierite)19%$(/l)$()$(li)辉钼矿: $(l:tfg_ores/moon_vein_index#moon_molybdenum)33%$(/l)$()$(li)辉铜矿: $(l:tfg_ores/moon_vein_index#moon_tetrahedrite)25%$(/l), $(l:tfg_ores/moon_vein_index#moon_topaz)25%$(/l)$()$(li)辉锑矿: $(l:tfg_ores/moon_vein_index#moon_tetrahedrite)20%$(/l)$()$(li)重晶石: $(l:tfg_ores/moon_vein_index#moon_quartz)5%$(/l)$()$(li)钍矿: $(l:tfg_ores/moon_vein_index#moon_beryllium)0%$(/l)$()$(li)钒磁铁矿: $(l:tfg_ores/moon_vein_index#moon_magnetite)15%$(/l)$()$(li)钕矿: $(l:tfg_ores/moon_vein_index#moon_monazite)6%$(/l)$()$(li)钙铝榴石: $(l:tfg_ores/moon_vein_index#moon_manganese)37%$(/l)$()$(li)钛铁矿: $(l:tfg_ores/moon_vein_index#moon_bauxite)42%$(/l), $(l:tfg_ores/moon_vein_index#moon_desh)25%$(/l)$()$(li)钨酸锂: $(l:tfg_ores/moon_vein_index#moon_scheelite)50%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)钴矿: $(l:tfg_ores/moon_vein_index#moon_pyrolusite)23%$(/l), $(l:tfg_ores/moon_vein_index#moon_garnierite)14%$(/l)$()$(li)钻石: $(l:tfg_ores/moon_vein_index#moon_graphite)36%$(/l)$()$(li)钼钨钙矿: $(l:tfg_ores/moon_vein_index#moon_molybdenum)16%$(/l)$()$(li)钼铅矿: $(l:tfg_ores/moon_vein_index#moon_molybdenum)44%$(/l)$()$(li)钽铁矿: $(l:tfg_ores/moon_vein_index#moon_pyrolusite)14%$(/l), $(l:tfg_ores/moon_vein_index#moon_manganese)12%$(/l)$()$(li)铁铝榴石: $(l:tfg_ores/moon_vein_index#moon_sapphire)38%$(/l)$()$(li)铂矿: $(l:tfg_ores/moon_vein_index#moon_sheldonite)15%$(/l)$()$(li)铅矿: $(l:tfg_ores/moon_vein_index#moon_silver)23%$(/l)$()$(li)铍矿: $(l:tfg_ores/moon_vein_index#moon_beryllium)31%$(/l)$()$(li)铝土矿: $(l:tfg_ores/moon_vein_index#moon_bauxite)36%$(/l), $(l:tfg_ores/moon_vein_index#moon_mica)23%$(/l), $(l:tfg_ores/moon_vein_index#moon_gold)20%$(/l)$()$(li)铝矿: $(l:tfg_ores/moon_vein_index#moon_desh)20%$(/l), $(l:tfg_ores/moon_vein_index#moon_mica)14%$(/l)$()$(li)铬铁矿: $(l:tfg_ores/moon_vein_index#moon_magnetite)40%$(/l)$()$(li)锂矿: $(l:tfg_ores/moon_vein_index#moon_scheelite)10%$(/l)$()$(li)锡石矿: $(l:tfg_ores/moon_vein_index#moon_cassiterite)41%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)锡矿: $(l:tfg_ores/moon_vein_index#moon_cassiterite)17%$(/l)$()$(li)锰铝榴石: $(l:tfg_ores/moon_vein_index#moon_manganese)25%$(/l)$()$(li)镁铝榴石: $(l:tfg_ores/moon_vein_index#moon_sapphire)27%$(/l)$()$(li)镍矿: $(l:tfg_ores/moon_vein_index#moon_sheldonite)25%$(/l), $(l:tfg_ores/moon_vein_index#moon_garnierite)19%$(/l)$()$(li)镍黄铁矿: $(l:tfg_ores/moon_vein_index#moon_garnierite)23%$(/l), $(l:tfg_ores/moon_vein_index#moon_lubricant)15%$(/l)$()$(li)闪锌矿: $(l:tfg_ores/moon_vein_index#moon_sphalerite)50%$(/l)$()$(li)阿姆阿尔柯尔矿: $(l:tfg_ores/moon_vein_index#moon_bauxite)21%$(/l), $(l:tfg_ores/moon_vein_index#moon_desh)15%$(/l)$()$(li)黄玉: $(l:tfg_ores/moon_vein_index#moon_topaz)25%$(/l)$()$(li)黄色石榴石: $(l:tfg_ores/moon_vein_index#moon_garnet)14%$(/l)$()$(li)黄铁矿: $(l:tfg_ores/moon_vein_index#moon_sphalerite)35%$(/l)$()$(li)黄铜矿: $(l:tfg_ores/moon_vein_index#moon_cassiterite)35%$(/l)$()$(li)黝铜矿: $(l:tfg_ores/moon_vein_index#moon_tetrahedrite)40%$(/l)$()", + "type": "patchouli:text" + } + ], + "sortnum": 4 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/moon_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/moon_vein_index.json new file mode 100644 index 000000000..cc958ae7d --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/moon_vein_index.json @@ -0,0 +1,2521 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "月球矿脉索引", + "icon": "gtceu:moon_stone_certus_quartz_ore", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "这是 $(item)月球$() 的 $(thing)矿脉索引$()。每个矿脉都有关于其稀有度、密度、矿脉类型、生成高度、尺寸、生成于何种岩石中等详细信息。", + "title": "月球矿脉索引", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/moon_vein_index#moon_desh)戴斯矿, 钛铁矿$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_monazite)氟碳镧铈矿, 独居石$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_scheelite)白钨矿, 钨酸锂$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_lubricant)皂石, 滑石, 天然碱$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_gypsum)石膏, 方解石$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_graphite)石墨, 钻石$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_garnierite)硅镁镍矿, 辉钴矿$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_saltpeter)硝石, 电石$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_sheldonite)硫铂矿, 斑铜矿$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_apatite)磷灰石, 烧绿石$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_garnet)紫水晶, 蛋白石, 石榴石$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_redstone)红石, 朱砂, 红宝石$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_beryllium)绿宝石, 铍矿$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_sapphire)蓝宝石, 铁铝榴石$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/moon_vein_index#moon_mica)蓝晶石, 云母, 铝土矿$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_quartz)赛特斯石英矿$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_pyrolusite)软锰矿 & 钴矿$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_gold)金矿, 磁铁矿$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_molybdenum)钼铅矿, 辉钼矿$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_bauxite)铝土矿, 钛铁矿$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_magnetite)铬铁矿, 磁铁矿$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_silver)银矿, 方铅矿, 铅矿$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_cassiterite)锡石矿, 黄铜矿$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_manganese)锰矿, 钽矿$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_sphalerite)闪锌矿, 黄铁矿$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_topaz)黄玉, 辉铜矿$()$()$(li)$(l:tfg_ores/moon_vein_index#moon_tetrahedrite)黝铜矿, 辉铜矿$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 230$(br)$(thing)密度$(): 0.35$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 10 — 80$(br)$(thing)尺寸$(): 45$(br)$(thing)指示器最大深度$(): 50$(br2)$(thing)岩石类型$(): 安山岩, 玄武岩, 英安岩, 辉长岩", + "title": "戴斯矿, 钛铁矿", + "type": "patchouli:text", + "anchor": "moon_desh" + }, + { + "Type": "patchouli:multiblock", + "name": "戴斯矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/desh" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 40%$(br)$(thing)来源$(): 铁, 钛, 氮$(br)$(thing)化学式$(): (Mg₂Fe(SiO₂)₂)₂(TiO₂)N₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钛铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/ilmenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 铁, 钛$(br)$(thing)化学式$(): FeTiO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铝矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/aluminium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "阿姆阿尔柯尔矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/armalcolite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 镁, 金红石, 钛$(br)$(thing)化学式$(): (Mg,Fe)Ti₂O₅", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 310$(br)$(thing)密度$(): 0.2$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 70$(br)$(thing)尺寸$(): 50$(br)$(thing)指示器最大深度$(): 50$(br2)$(thing)岩石类型$(): 响岩, 安山岩, 流纹岩, 英安岩", + "title": "氟碳镧铈矿, 独居石", + "type": "patchouli:text", + "anchor": "moon_monazite" + }, + { + "Type": "patchouli:multiblock", + "name": "氟碳镧铈矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/bastnasite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 61%$(br)$(thing)来源$(): 铈, 氟$(br)$(thing)化学式$(): CeCFO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "独居石", + "multiblock": { + "mapping": { + "0": "#forge:ores/monazite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 30%$(br)$(thing)来源$(): 磷, 稀土$(br)$(thing)化学式$(): ?(PO₄)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钕矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/neodymium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 6%$(br)$(thing)来源$(): 钕$(br)$(thing)化学式$(): Nd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "橄榄石", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 1%$(br)$(thing)来源$(): 镁, 铁$(br)$(thing)化学式$(): Mg₂Fe(SiO₂)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 200$(br)$(thing)密度$(): 0.45$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 70$(br)$(thing)尺寸$(): 20$(br)$(thing)指示器最大深度$(): 50$(br2)$(thing)岩石类型$(): 响岩, 流纹岩, 辉长岩", + "title": "白钨矿, 钨酸锂", + "type": "patchouli:text", + "anchor": "moon_scheelite" + }, + { + "Type": "patchouli:multiblock", + "name": "钨酸锂", + "multiblock": { + "mapping": { + "0": "#forge:ores/tungstate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 50%$(br)$(thing)来源$(): 钨, 锂$(br)$(thing)化学式$(): Li₂(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "白钨矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/scheelite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 40%$(br)$(thing)来源$(): 钨$(br)$(thing)化学式$(): Ca(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "锂矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/lithium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 10%$(br)$(thing)来源$(): 锂$(br)$(thing)化学式$(): Li", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 190$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 66$(br)$(thing)尺寸$(): 36$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 斜长岩, 玄武岩, 苏长岩, 辉长岩, 闪长岩", + "title": "皂石, 滑石, 天然碱", + "type": "patchouli:text", + "anchor": "moon_lubricant" + }, + { + "Type": "patchouli:multiblock", + "name": "皂石", + "multiblock": { + "mapping": { + "0": "#forge:ores/soapstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 30%$(br)$(thing)来源$(): 镁$(br)$(thing)化学式$(): Mg₃Si₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "海绿石矿砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 镁, 铝$(br)$(thing)化学式$(): KMg₂Al₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "滑石", + "multiblock": { + "mapping": { + "0": "#forge:ores/talc" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 镁$(br)$(thing)化学式$(): Mg₃Si₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "镍黄铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 镍$(br)$(thing)化学式$(): Ni₉S₈", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "天然碱", + "multiblock": { + "mapping": { + "0": "#forge:ores/trona" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 10%$(br)$(thing)来源$(): 钠$(br)$(thing)化学式$(): Na₃C₂H(H₂O)₂O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 180$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): 10 — 100$(br)$(thing)尺寸$(): 40$(br)$(thing)高度$(): 9$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 响岩, 斜长岩, 苏长岩", + "title": "石膏, 方解石", + "type": "patchouli:text", + "anchor": "moon_gypsum" + }, + { + "Type": "patchouli:multiblock", + "name": "石膏", + "multiblock": { + "mapping": { + "0": "#forge:ores/gypsum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)用于$(): 雪花石膏砖块(可染色)$(br)$(thing)化学式$(): CaS(H₂O)₂O₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "方解石", + "multiblock": { + "mapping": { + "0": "#forge:ores/calcite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 钙$(br)$(thing)化学式$(): CaCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "硼砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/borax" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 钠, 硼$(br)$(thing)化学式$(): Na₂B₄(H₂O)₁₀O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "明矾石", + "multiblock": { + "mapping": { + "0": "#forge:ores/alunite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 钾, 铝$(br)$(thing)化学式$(): KAl₃Si₂H₆O₁₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "橄榄石", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)来源$(): 镁, 铁$(br)$(thing)化学式$(): Mg₂Fe(SiO₂)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 260$(br)$(thing)密度$(): 0.55$(br)$(thing)类型$(): 管状矿脉$(br)$(thing)Y 坐标$(): 0 — 120$(br)$(thing)高度$(): 60$(br)$(thing)半径$(): 12$(br)$(thing)指示器最大深度$(): 50$(br2)$(thing)岩石类型$(): 响岩, 斜长岩, 玄武岩, 玄武岩, 辉长岩", + "title": "石墨, 钻石", + "type": "patchouli:text", + "anchor": "moon_graphite" + }, + { + "Type": "patchouli:multiblock", + "name": "石墨", + "multiblock": { + "mapping": { + "0": "#forge:ores/graphite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 52%$(br)$(thing)用于$(): $(l:mechanics/fire_clay)耐火粘土$(), 石墨烯$(br)$(thing)化学式$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钻石", + "multiblock": { + "mapping": { + "0": "#forge:ores/diamond" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 36%$(br)$(thing)用于$(): 研磨机, AE2$(br)$(thing)化学式$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "橄榄石", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 10%$(br)$(thing)来源$(): 镁, 铁$(br)$(thing)化学式$(): Mg₂Fe(SiO₂)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 250$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 5 — 85$(br)$(thing)尺寸$(): 55$(br)$(thing)指示器最大深度$(): 50$(br2)$(thing)岩石类型$(): 流纹岩, 辉长岩, 闪长岩", + "title": "硅镁镍矿, 辉钴矿", + "type": "patchouli:text", + "anchor": "moon_garnierite" + }, + { + "Type": "patchouli:multiblock", + "name": "硅镁镍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnierite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 23%$(br)$(thing)熔化$(): 镍$(br)$(thing)化学式$(): NiO", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "镍黄铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 23%$(br)$(thing)熔化$(): 镍$(br)$(thing)化学式$(): Ni₉S₈", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "镍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 19%$(br)$(thing)熔化$(): 镍$(br)$(thing)化学式$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "辉钴矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobaltite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 19%$(br)$(thing)来源$(): 钴, 砷$(br)$(thing)化学式$(): CoAsS$(br)$(thing)危害$(): $(c)$(t:需要面罩)砷中毒 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钴矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobalt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 14%$(br)$(thing)熔化$(): 钴$(br)$(thing)化学式$(): Co", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 210$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 90$(br)$(thing)尺寸$(): 35$(br)$(thing)指示器最大深度$(): 50$(br2)$(thing)岩石类型$(): 安山岩, 流纹岩, 苏长岩, 英安岩", + "title": "硝石, 电石", + "type": "patchouli:text", + "anchor": "moon_saltpeter" + }, + { + "Type": "patchouli:multiblock", + "name": "电石", + "multiblock": { + "mapping": { + "0": "#forge:ores/electrotine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 37%$(br)$(thing)来源$(): 金, 银, 红石$(br)$(thing)化学式$(): (Si(FeS₂)₅(CrAl₂O₃)Hg₃)(AgAu)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "硝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 29%$(br)$(thing)来源$(): 钾, 氮$(br)$(thing)化学式$(): KNO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "皂石", + "multiblock": { + "mapping": { + "0": "#forge:ores/soapstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 镁$(br)$(thing)化学式$(): Mg₃Si₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "滑石", + "multiblock": { + "mapping": { + "0": "#forge:ores/talc" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 12%$(br)$(thing)来源$(): 镁$(br)$(thing)化学式$(): Mg₃Si₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 260$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 70$(br)$(thing)尺寸$(): 30$(br)$(thing)指示器最大深度$(): 50$(br2)$(thing)岩石类型$(): 响岩, 安山岩, 玄武岩", + "title": "硫铂矿, 斑铜矿", + "type": "patchouli:text", + "anchor": "moon_sheldonite" + }, + { + "Type": "patchouli:multiblock", + "name": "斑铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu₅FeS₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "硫铂矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/cooperite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 铂, 镍, 钯$(br)$(thing)化学式$(): Pt₃NiSPd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "镍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)熔化$(): 镍$(br)$(thing)化学式$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铂矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/platinum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 铂$(br)$(thing)化学式$(): Pt", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 250$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 100$(br)$(thing)尺寸$(): 35$(br)$(thing)指示器最大深度$(): 50$(br2)$(thing)岩石类型$(): 斜长岩, 苏长岩, 闪长岩", + "title": "磷灰石, 烧绿石", + "type": "patchouli:text", + "anchor": "moon_apatite" + }, + { + "Type": "patchouli:multiblock", + "name": "烧绿石", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrochlore" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 38%$(br)$(thing)来源$(): 铌$(br)$(thing)化学式$(): Ca₂Nb₂O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "磷酸三钙", + "multiblock": { + "mapping": { + "0": "#forge:ores/tricalcium_phosphate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 33%$(br)$(thing)来源$(): 钙, 磷$(br)$(thing)化学式$(): Ca₃(PO₄)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "磷灰石", + "multiblock": { + "mapping": { + "0": "#forge:ores/apatite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 23%$(br)$(thing)来源$(): 钙, 磷, 林业PTSD$(br)$(thing)化学式$(): Ca₅(PO₄)₃Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "橄榄石", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 4%$(br)$(thing)来源$(): 镁, 铁$(br)$(thing)化学式$(): Mg₂Fe(SiO₂)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 230$(br)$(thing)密度$(): 0.35$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): 10 — 128$(br)$(thing)尺寸$(): 35$(br)$(thing)高度$(): 7$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 安山岩, 流纹岩, 玄武岩", + "title": "紫水晶, 蛋白石, 石榴石", + "type": "patchouli:text", + "anchor": "moon_garnet" + }, + { + "Type": "patchouli:multiblock", + "name": "紫水晶", + "multiblock": { + "mapping": { + "0": "#forge:ores/amethyst" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 38%$(br)$(thing)来源$(): 铁$(br)$(thing)化学式$(): (SiO₂)₄Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "蛋白石", + "multiblock": { + "mapping": { + "0": "#forge:ores/opal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 38%$(br)$(thing)来源$(): 硅, 氧$(br)$(thing)化学式$(): (SiO₂)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄色石榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 14%$(br)$(thing)来源$(): 钙铁榴石, 钙铝榴石, 钙铬榴石", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "红色石榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/red_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 9%$(br)$(thing)来源$(): 镁铝榴石, 铁铝榴石, 锰铝榴石", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 250$(br)$(thing)密度$(): 0.2$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 20 — 100$(br)$(thing)尺寸$(): 45$(br)$(thing)指示器最大深度$(): 50$(br2)$(thing)岩石类型$(): 响岩, 安山岩, 英安岩", + "title": "红石, 朱砂, 红宝石", + "type": "patchouli:text", + "anchor": "moon_redstone" + }, + { + "Type": "patchouli:multiblock", + "name": "红石", + "multiblock": { + "mapping": { + "0": "#forge:ores/redstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 42%$(br)$(thing)熔化$(): 红石$(br)$(thing)化学式$(): Si(FeS₂)₅(CrAl₂O₃)Hg₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "红宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 33%$(br)$(thing)来源$(): 铬, 铝$(br)$(thing)化学式$(): CrAl₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "朱砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/cinnabar" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 19%$(br)$(thing)来源$(): 水银$(br)$(thing)化学式$(): HgS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "橄榄石", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 4%$(br)$(thing)来源$(): 镁, 铁$(br)$(thing)化学式$(): Mg₂Fe(SiO₂)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 260$(br)$(thing)密度$(): 0.45$(br)$(thing)类型$(): 管状矿脉$(br)$(thing)Y 坐标$(): 0 — 120$(br)$(thing)高度$(): 70$(br)$(thing)半径$(): 10$(br)$(thing)指示器最大深度$(): 50$(br2)$(thing)岩石类型$(): 响岩, 斜长岩, 玄武岩", + "title": "绿宝石, 铍矿", + "type": "patchouli:text", + "anchor": "moon_beryllium" + }, + { + "Type": "patchouli:multiblock", + "name": "绿宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/emerald" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 45%$(br)$(thing)用于$(): MV组件, 标签过滤卡$(br)$(thing)化学式$(): Be₃Al₂Si₆O₁₈", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/beryllium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 31%$(br)$(thing)来源$(): 铍$(br)$(thing)化学式$(): Be$(br)$(thing)危害$(): $(c)$(t:需要橡胶手套)铍中毒 (皮肤接触)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "岩盐", + "multiblock": { + "mapping": { + "0": "#forge:ores/rock_salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 18%$(br)$(thing)来源$(): 钾, 氯$(br)$(thing)化学式$(): KCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "橄榄石", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 4%$(br)$(thing)来源$(): 镁, 铁$(br)$(thing)化学式$(): Mg₂Fe(SiO₂)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/thorium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 0%$(br)$(thing)来源$(): 钍$(br)$(thing)化学式$(): Th", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 280$(br)$(thing)密度$(): 0.35$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): 0 — 100$(br)$(thing)尺寸$(): 28$(br)$(thing)高度$(): 8$(br)$(thing)指示器最大深度$(): 50$(br2)$(thing)岩石类型$(): 玄武岩, 苏长岩", + "title": "蓝宝石, 铁铝榴石", + "type": "patchouli:text", + "anchor": "moon_sapphire" + }, + { + "Type": "patchouli:multiblock", + "name": "铁铝榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/almandine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 38%$(br)$(thing)来源$(): 铝, 铁$(br)$(thing)化学式$(): Al₂Fe₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "镁铝榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrope" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 27%$(br)$(thing)来源$(): 铝, 镁$(br)$(thing)化学式$(): Al₂Mg₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "蓝宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 16%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "绿色蓝宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 16%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "橄榄石", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 2%$(br)$(thing)来源$(): 镁, 铁$(br)$(thing)化学式$(): Mg₂Fe(SiO₂)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 250$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 120$(br)$(thing)尺寸$(): 35$(br)$(thing)指示器最大深度$(): 50$(br2)$(thing)岩石类型$(): 斜长岩, 苏长岩, 辉长岩, 闪长岩", + "title": "蓝晶石, 云母, 铝土矿", + "type": "patchouli:text", + "anchor": "moon_mica" + }, + { + "Type": "patchouli:multiblock", + "name": "蓝晶石", + "multiblock": { + "mapping": { + "0": "#forge:ores/kyanite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 33%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al₂SiO₅", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "云母", + "multiblock": { + "mapping": { + "0": "#forge:ores/mica" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 23%$(br)$(thing)来源$(): 钾, 铝, 氟$(br)$(thing)化学式$(): KAl₃Si₃F₂O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铝土矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 23%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铝矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/aluminium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 14%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "橄榄石", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 4%$(br)$(thing)来源$(): 镁, 铁$(br)$(thing)化学式$(): Mg₂Fe(SiO₂)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 230$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 10 — 100$(br)$(thing)尺寸$(): 60$(br)$(thing)指示器最大深度$(): 80$(br2)$(thing)岩石类型$(): 响岩, 安山岩, 斜长岩, 流纹岩, 玄武岩, 苏长岩, 英安岩, 辉长岩, 闪长岩", + "title": "赛特斯石英矿", + "type": "patchouli:text", + "anchor": "moon_quartz" + }, + { + "Type": "patchouli:multiblock", + "name": "赛特斯石英矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/certus_quartz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 45%$(br)$(thing)用于$(): Applied Energistics 2$(br)$(thing)化学式$(): SiO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "下界石英", + "multiblock": { + "mapping": { + "0": "#forge:ores/nether_quartz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 30%$(br)$(thing)用于$(): Applied Energistics 2$(br)$(thing)化学式$(): SiO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "石英岩", + "multiblock": { + "mapping": { + "0": "#forge:ores/quartzite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)用于$(): LV组件$(br)$(thing)化学式$(): SiO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "重晶石", + "multiblock": { + "mapping": { + "0": "#forge:ores/barite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)来源$(): 钡$(br)$(thing)化学式$(): BaSO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 210$(br)$(thing)密度$(): 0.25$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 20 — 80$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 50$(br2)$(thing)岩石类型$(): 安山岩, 斜长岩, 玄武岩, 苏长岩, 辉长岩", + "title": "软锰矿 & 钴矿", + "type": "patchouli:text", + "anchor": "moon_pyrolusite" + }, + { + "Type": "patchouli:multiblock", + "name": "软锰矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrolusite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 38%$(br)$(thing)来源$(): 锰$(br)$(thing)化学式$(): MnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "辉钴矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobaltite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 23%$(br)$(thing)来源$(): 钴, 砷$(br)$(thing)化学式$(): CoAsS$(br)$(thing)危害$(): $(c)$(t:需要面罩)砷中毒 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钴矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobalt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 23%$(br)$(thing)熔化$(): 钴$(br)$(thing)化学式$(): Co", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钽铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/tantalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 14%$(br)$(thing)来源$(): 锰, 钽$(br)$(thing)化学式$(): MnTa₂O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 170$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): 10 — 80$(br)$(thing)尺寸$(): 40$(br)$(thing)高度$(): 10$(br)$(thing)指示器最大深度$(): 60$(br2)$(thing)岩石类型$(): 玄武岩, 花岗岩, 闪长岩", + "title": "金矿, 磁铁矿", + "type": "patchouli:text", + "anchor": "moon_gold" + }, + { + "Type": "patchouli:multiblock", + "name": "原生金", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 55%$(br)$(thing)熔化$(): 金$(br)$(thing)化学式$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铝土矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "磁铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₃O₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "绿色蓝宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 245$(br)$(thing)密度$(): 0.45$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 50$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 50$(br2)$(thing)岩石类型$(): 玄武岩, 苏长岩, 英安岩, 辉长岩", + "title": "钼铅矿, 辉钼矿", + "type": "patchouli:text", + "anchor": "moon_molybdenum" + }, + { + "Type": "patchouli:multiblock", + "name": "钼铅矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/wulfenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 44%$(br)$(thing)来源$(): 铅, 钼$(br)$(thing)化学式$(): PbMoO₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "辉钼矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/molybdenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 33%$(br)$(thing)来源$(): 钼$(br)$(thing)化学式$(): MoS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钼钨钙矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/powellite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 16%$(br)$(thing)来源$(): 钼$(br)$(thing)化学式$(): CaMoO₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "橄榄石", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)来源$(): 镁, 铁$(br)$(thing)化学式$(): Mg₂Fe(SiO₂)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 200$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 80$(br)$(thing)尺寸$(): 50$(br)$(thing)指示器最大深度$(): 50$(br2)$(thing)岩石类型$(): 响岩, 斜长岩, 流纹岩, 玄武岩, 苏长岩, 闪长岩", + "title": "铝土矿, 钛铁矿", + "type": "patchouli:text", + "anchor": "moon_bauxite" + }, + { + "Type": "patchouli:multiblock", + "name": "钛铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/ilmenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 42%$(br)$(thing)来源$(): 铁, 钛$(br)$(thing)化学式$(): FeTiO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铝土矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 36%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "阿姆阿尔柯尔矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/armalcolite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 21%$(br)$(thing)来源$(): 镁, 金红石, 钛$(br)$(thing)化学式$(): (Mg,Fe)Ti₂O₅", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 280$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 90$(br)$(thing)尺寸$(): 70$(br)$(thing)指示器最大深度$(): 50$(br2)$(thing)岩石类型$(): 斜长岩, 苏长岩, 辉长岩, 闪长岩", + "title": "铬铁矿, 磁铁矿", + "type": "patchouli:text", + "anchor": "moon_magnetite" + }, + { + "Type": "patchouli:multiblock", + "name": "铬铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/chromite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 40%$(br)$(thing)来源$(): 铬$(br)$(thing)化学式$(): FeCr₂O₄$(br)$(thing)危害$(): $(c)$(t:需要橡胶手套)刺激性 (皮肤接触)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "磁铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₃O₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钒磁铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/vanadium_magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 铁, 钒$(br)$(thing)化学式$(): (Fe₃O₄)V", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "原生金", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 金$(br)$(thing)化学式$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "蓝宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 210$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 20 — 75$(br)$(thing)尺寸$(): 30$(br)$(thing)指示器最大深度$(): 50$(br2)$(thing)岩石类型$(): 斜长岩, 流纹岩, 苏长岩, 英安岩, 闪长岩", + "title": "银矿, 方铅矿, 铅矿", + "type": "patchouli:text", + "anchor": "moon_silver" + }, + { + "Type": "patchouli:multiblock", + "name": "原生银", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 42%$(br)$(thing)熔化$(): 银$(br)$(thing)化学式$(): Ag", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "方铅矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/galena" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 28%$(br)$(thing)熔化$(): 铅$(br)$(thing)化学式$(): PbS$(br)$(thing)危害$(): $(c)$(t:需要面罩)弱毒性 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铅矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 23%$(br)$(thing)熔化$(): 铅$(br)$(thing)化学式$(): Pb$(br)$(thing)危害$(): $(c)$(t:需要面罩)弱毒性 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "橄榄石", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 4%$(br)$(thing)来源$(): 镁, 铁$(br)$(thing)化学式$(): Mg₂Fe(SiO₂)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 210$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 10 — 128$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 60$(br2)$(thing)岩石类型$(): 花岗岩, 苏长岩, 辉长岩, 闪长岩", + "title": "锡石矿, 黄铜矿", + "type": "patchouli:text", + "anchor": "moon_cassiterite" + }, + { + "Type": "patchouli:multiblock", + "name": "锡石矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 41%$(br)$(thing)熔化$(): 锡$(br)$(thing)化学式$(): SnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcopyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): CuFeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "锡矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/tin" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 17%$(br)$(thing)熔化$(): 锡$(br)$(thing)化学式$(): Sn", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "沸石", + "multiblock": { + "mapping": { + "0": "#forge:ores/zeolite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)来源$(): 铝, 氧$(br)$(thing)化学式$(): NaCa₄Si₂₇Al₉(H₂O)₂₈O₇₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 215$(br)$(thing)密度$(): 0.5$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 5 — 80$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 安山岩, 玄武岩, 玄武岩, 苏长岩, 英安岩, 辉长岩", + "title": "锰矿, 钽矿", + "type": "patchouli:text", + "anchor": "moon_manganese" + }, + { + "Type": "patchouli:multiblock", + "name": "钙铝榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/grossular" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 37%$(br)$(thing)来源$(): 钙, 铝$(br)$(thing)化学式$(): Ca₃Al₂Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "锰铝榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/spessartine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 锰, 铝$(br)$(thing)化学式$(): Al₂Mn₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "软锰矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrolusite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 锰$(br)$(thing)化学式$(): MnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钽铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/tantalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 12%$(br)$(thing)来源$(): 锰, 钽$(br)$(thing)化学式$(): MnTa₂O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 205$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 2 — 75$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 60$(br2)$(thing)岩石类型$(): 响岩, 安山岩, 玄武岩, 英安岩, 辉长岩", + "title": "闪锌矿, 黄铁矿", + "type": "patchouli:text", + "anchor": "moon_sphalerite" + }, + { + "Type": "patchouli:multiblock", + "name": "闪锌矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 50%$(br)$(thing)熔化$(): 锌$(br)$(thing)化学式$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "戴斯矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/desh" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 铁, 钛, 氮$(br)$(thing)化学式$(): (Mg₂Fe(SiO₂)₂)₂(TiO₂)N₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 210$(br)$(thing)密度$(): 0.5$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): 0 — 120$(br)$(thing)尺寸$(): 64$(br)$(thing)高度$(): 25$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 响岩, 安山岩, 斜长岩, 流纹岩, 玄武岩, 苏长岩, 英安岩, 辉长岩, 闪长岩", + "title": "黄玉, 辉铜矿", + "type": "patchouli:text", + "anchor": "moon_topaz" + }, + { + "Type": "patchouli:multiblock", + "name": "蓝黄玉", + "multiblock": { + "mapping": { + "0": "#forge:ores/blue_topaz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 铝, 氟$(br)$(thing)化学式$(): Al₂SiF₂H₂O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄玉", + "multiblock": { + "mapping": { + "0": "#forge:ores/topaz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 铝, 氟$(br)$(thing)化学式$(): Al₂SiFH₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "辉铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcocite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 铜$(br)$(thing)化学式$(): Cu₂S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "斑铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu₅FeS₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 190$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 50 — 128$(br)$(thing)尺寸$(): 40$(br)$(thing)指示器最大深度$(): 60$(br2)$(thing)岩石类型$(): 响岩, 安山岩, 流纹岩, 英安岩", + "title": "黝铜矿, 辉铜矿", + "type": "patchouli:text", + "anchor": "moon_tetrahedrite" + }, + { + "Type": "patchouli:multiblock", + "name": "黝铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 40%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "辉铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcocite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 铜$(br)$(thing)化学式$(): Cu₂S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "辉锑矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)熔化$(): 锑$(br)$(thing)化学式$(): Sb₂S₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "原生铜", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + } + ], + "sortnum": 5 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/nether_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/nether_ore_index.json new file mode 100644 index 000000000..5ae8f125a --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/nether_ore_index.json @@ -0,0 +1,57 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "下界矿物索引", + "icon": "minecraft:quartz", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "这是 $(thing)下界$() 的 $(thing)矿物索引$()。所有矿物按字母顺序排序,然后按矿脉类型从最富集到最贫瘠排列。您可以点击它们以了解有关每种矿脉的更多信息。", + "title": "下界矿物索引", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)下界石英: $(l:tfg_ores/nether_vein_index#nether_quartz)54%$(/l)$()$(li)云母: $(l:tfg_ores/nether_vein_index#nether_mica)33%$(/l)$()$(li)原生金: $(l:tfg_ores/nether_vein_index#nether_gold)75%$(/l), $(l:tfg_ores/nether_vein_index#nether_magnetite)30%$(/l), $(l:tfg_ores/nether_vein_index#nether_hematite)5%$(/l)$()$(li)原生铜: $(l:tfg_ores/nether_vein_index#nether_copper)65%$(/l), $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)30%$(/l)$()$(li)原生银: $(l:tfg_ores/nether_vein_index#nether_silver)35%$(/l)$()$(li)天然碱: $(l:tfg_ores/nether_vein_index#nether_lubricant)10%$(/l)$()$(li)孔雀石: $(l:tfg_ores/nether_vein_index#nether_goethite)20%$(/l)$()$(li)岩盐: $(l:tfg_ores/nether_vein_index#nether_beryllium)18%$(/l)$()$(li)斑铜矿: $(l:tfg_ores/nether_vein_index#nether_sheldonite)41%$(/l), $(l:tfg_ores/nether_vein_index#nether_topaz)15%$(/l)$()$(li)方解石: $(l:tfg_ores/nether_vein_index#nether_gypsum)30%$(/l), $(l:tfg_ores/nether_vein_index#nether_lapis)15%$(/l)$()$(li)方钠石: $(l:tfg_ores/nether_vein_index#nether_lapis)25%$(/l)$()$(li)方铅矿: $(l:tfg_ores/nether_vein_index#nether_silver)30%$(/l)$()$(li)无烟煤: $(l:tfg_ores/nether_vein_index#nether_anthracite)100%$(/l)$()$(li)明矾石: $(l:tfg_ores/nether_vein_index#nether_saltpeter)15%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)晶质铀矿: $(l:tfg_ores/nether_vein_index#nether_pitchblende)50%$(/l)$()$(li)朱砂: $(l:tfg_ores/nether_vein_index#nether_redstone)20%$(/l)$()$(li)橄榄石: $(l:tfg_ores/nether_vein_index#nether_olivine)25%$(/l)$()$(li)氟碳镧铈矿: $(l:tfg_ores/nether_vein_index#nether_monazite)50%$(/l)$()$(li)沥青铀矿: $(l:tfg_ores/nether_vein_index#nether_pitchblende)50%$(/l)$()$(li)海绿石矿砂: $(l:tfg_ores/nether_vein_index#nether_lubricant)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_olivine)15%$(/l)$()$(li)滑石: $(l:tfg_ores/nether_vein_index#nether_lubricant)20%$(/l)$()$(li)漂白土: $(l:tfg_ores/nether_vein_index#nether_basaltic_sands)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_gypsum)15%$(/l)$()$(li)烧绿石: $(l:tfg_ores/nether_vein_index#nether_apatite)15%$(/l)$()$(li)煤炭: $(l:tfg_ores/nether_vein_index#nether_graphite)15%$(/l)$()$(li)独居石: $(l:tfg_ores/nether_vein_index#nether_monazite)25%$(/l)$()$(li)玄武岩矿砂: $(l:tfg_ores/nether_vein_index#nether_basaltic_sands)35%$(/l)$()$(li)电石: $(l:tfg_ores/nether_vein_index#nether_saltpeter)25%$(/l)$()$(li)白钨矿: $(l:tfg_ores/nether_vein_index#nether_scheelite)45%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)皂石: $(l:tfg_ores/nether_vein_index#nether_lubricant)30%$(/l)$()$(li)石棉: $(l:tfg_ores/nether_vein_index#nether_garnet_tin)25%$(/l)$()$(li)石榴石矿砂: $(l:tfg_ores/nether_vein_index#nether_garnet_tin)25%$(/l)$()$(li)石膏: $(l:tfg_ores/nether_vein_index#nether_gypsum)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_basaltic_sands)15%$(/l)$()$(li)石英岩: $(l:tfg_ores/nether_vein_index#nether_quartz)25%$(/l)$()$(li)石墨: $(l:tfg_ores/nether_vein_index#nether_graphite)45%$(/l)$()$(li)硅岩: $(l:tfg_ores/nether_vein_index#nether_naquadah)75%$(/l)$()$(li)硅藻土: $(l:tfg_ores/nether_vein_index#nether_saltpeter)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_garnet_tin)15%$(/l)$()$(li)硅镁镍矿: $(l:tfg_ores/nether_vein_index#nether_garnierite)23%$(/l)$()$(li)硝石: $(l:tfg_ores/nether_vein_index#nether_saltpeter)35%$(/l)$()$(li)硫: $(l:tfg_ores/nether_vein_index#nether_sulfur)50%$(/l), $(l:tfg_ores/nether_vein_index#nether_sphalerite)35%$(/l)$()$(li)硫铂矿: $(l:tfg_ores/nether_vein_index#nether_sheldonite)29%$(/l)$()$(li)硼砂: $(l:tfg_ores/nether_vein_index#nether_gypsum)20%$(/l)$()$(li)磁铁矿: $(l:tfg_ores/nether_vein_index#nether_magnetite)20%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)磷灰石: $(l:tfg_ores/nether_vein_index#nether_apatite)50%$(/l)$()$(li)磷酸三钙: $(l:tfg_ores/nether_vein_index#nether_apatite)35%$(/l)$()$(li)紫水晶: $(l:tfg_ores/nether_vein_index#nether_garnet)38%$(/l)$()$(li)红宝石: $(l:tfg_ores/nether_vein_index#nether_redstone)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_hematite)20%$(/l)$()$(li)红石: $(l:tfg_ores/nether_vein_index#nether_redstone)45%$(/l)$()$(li)红色石榴石: $(l:tfg_ores/nether_vein_index#nether_garnet)9%$(/l)$()$(li)绿宝石: $(l:tfg_ores/nether_vein_index#nether_beryllium)47%$(/l)$()$(li)绿色蓝宝石: $(l:tfg_ores/nether_vein_index#nether_sapphire)16%$(/l)$()$(li)膨润土: $(l:tfg_ores/nether_vein_index#nether_olivine)35%$(/l)$()$(li)花岗岩矿砂: $(l:tfg_ores/nether_vein_index#nether_basaltic_sands)25%$(/l)$()$(li)菱镁矿: $(l:tfg_ores/nether_vein_index#nether_olivine)25%$(/l)$()$(li)蓝宝石: $(l:tfg_ores/nether_vein_index#nether_sapphire)16%$(/l), $(l:tfg_ores/nether_vein_index#nether_magnetite)10%$(/l)$()$(li)蓝晶石: $(l:tfg_ores/nether_vein_index#nether_mica)46%$(/l)$()$(li)蓝金石: $(l:tfg_ores/nether_vein_index#nether_lapis)35%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)蓝黄玉: $(l:tfg_ores/nether_vein_index#nether_topaz)35%$(/l)$()$(li)蛋白石: $(l:tfg_ores/nether_vein_index#nether_garnet)38%$(/l)$()$(li)赤铁矿: $(l:tfg_ores/nether_vein_index#nether_hematite)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_goethite)15%$(/l), $(l:tfg_ores/nether_vein_index#nether_gold)15%$(/l), $(l:tfg_ores/nether_vein_index#nether_copper)5%$(/l)$()$(li)软锰矿: $(l:tfg_ores/nether_vein_index#nether_manganese)25%$(/l)$()$(li)辉钴矿: $(l:tfg_ores/nether_vein_index#nether_garnierite)19%$(/l)$()$(li)辉钼矿: $(l:tfg_ores/nether_vein_index#nether_molybdenum)31%$(/l)$()$(li)辉铜矿: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)辉锑矿: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)20%$(/l)$()$(li)重晶石: $(l:tfg_ores/nether_vein_index#nether_quartz)20%$(/l)$()$(li)针铁矿: $(l:tfg_ores/nether_vein_index#nether_goethite)50%$(/l), $(l:tfg_ores/nether_vein_index#nether_hematite)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_gold)5%$(/l)$()$(li)钍矿: $(l:tfg_ores/nether_vein_index#nether_beryllium)0%$(/l)$()$(li)钒磁铁矿: $(l:tfg_ores/nether_vein_index#nether_magnetite)30%$(/l)$()$(li)钕矿: $(l:tfg_ores/nether_vein_index#nether_monazite)25%$(/l)$()$(li)钙铝榴石: $(l:tfg_ores/nether_vein_index#nether_manganese)37%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)钚矿: $(l:tfg_ores/nether_vein_index#nether_naquadah)25%$(/l)$()$(li)钨酸锂: $(l:tfg_ores/nether_vein_index#nether_scheelite)35%$(/l)$()$(li)钴矿: $(l:tfg_ores/nether_vein_index#nether_garnierite)14%$(/l)$()$(li)钻石: $(l:tfg_ores/nether_vein_index#nether_graphite)40%$(/l)$()$(li)钼钨钙矿: $(l:tfg_ores/nether_vein_index#nether_molybdenum)10%$(/l)$()$(li)钼铅矿: $(l:tfg_ores/nether_vein_index#nether_molybdenum)42%$(/l)$()$(li)钽铁矿: $(l:tfg_ores/nether_vein_index#nether_manganese)12%$(/l)$()$(li)钾石盐: $(l:tfg_ores/nether_vein_index#nether_sylvite)100%$(/l)$()$(li)铁铝榴石: $(l:tfg_ores/nether_vein_index#nether_sapphire)38%$(/l)$()$(li)铂矿: $(l:tfg_ores/nether_vein_index#nether_sheldonite)5%$(/l)$()$(li)铅矿: $(l:tfg_ores/nether_vein_index#nether_silver)35%$(/l)$()$(li)铍矿: $(l:tfg_ores/nether_vein_index#nether_beryllium)33%$(/l)$()$(li)铬铁矿: $(l:tfg_ores/nether_vein_index#nether_magnetite)10%$(/l)$()$(li)铯榴石: $(l:tfg_ores/nether_vein_index#nether_mica)20%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)锂矿: $(l:tfg_ores/nether_vein_index#nether_scheelite)20%$(/l)$()$(li)锡石矿: $(l:tfg_ores/nether_vein_index#nether_cassiterite)40%$(/l)$()$(li)锡石矿砂: $(l:tfg_ores/nether_vein_index#nether_garnet_tin)35%$(/l)$()$(li)锡矿: $(l:tfg_ores/nether_vein_index#nether_cassiterite)60%$(/l)$()$(li)锰铝榴石: $(l:tfg_ores/nether_vein_index#nether_manganese)25%$(/l)$()$(li)镁铝榴石: $(l:tfg_ores/nether_vein_index#nether_sapphire)27%$(/l)$()$(li)镍矿: $(l:tfg_ores/nether_vein_index#nether_garnierite)19%$(/l), $(l:tfg_ores/nether_vein_index#nether_sheldonite)23%$(/l), $(l:tfg_ores/nether_vein_index#nether_molybdenum)15%$(/l)$()$(li)镍黄铁矿: $(l:tfg_ores/nether_vein_index#nether_garnierite)23%$(/l), $(l:tfg_ores/nether_vein_index#nether_lubricant)15%$(/l)$()$(li)闪锌矿: $(l:tfg_ores/nether_vein_index#nether_sphalerite)40%$(/l), $(l:tfg_ores/nether_vein_index#nether_sulfur)15%$(/l)$()$(li)青金石: $(l:tfg_ores/nether_vein_index#nether_lapis)25%$(/l)$()$(li)黄玉: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)黄色石榴石: $(l:tfg_ores/nether_vein_index#nether_garnet)14%$(/l)$()$(li)黄褐铁矿: $(l:tfg_ores/nether_vein_index#nether_goethite)15%$(/l), $(l:tfg_ores/nether_vein_index#nether_hematite)15%$(/l), $(l:tfg_ores/nether_vein_index#nether_gold)5%$(/l)$()$(li)黄铁矿: $(l:tfg_ores/nether_vein_index#nether_sulfur)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_sphalerite)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_copper)10%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)黄铜矿: $(l:tfg_ores/nether_vein_index#nether_copper)20%$(/l)$()$(li)黝铜矿: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)50%$(/l)$()", + "type": "patchouli:text" + } + ], + "sortnum": 2 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/nether_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/nether_vein_index.json new file mode 100644 index 000000000..dc9a08245 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/nether_vein_index.json @@ -0,0 +1,2879 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "下界矿脉索引", + "icon": "gtceu:pyroxenite_nether_quartz_ore", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "这是 $(item)下界$() 的 $(thing)矿脉索引$()。每个矿脉都有关于其稀有度、密度、矿脉类型、生成高度、尺寸、生成于何种岩石中等详细信息。", + "title": "下界矿脉索引", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/nether_vein_index#nether_quartz)下界石英$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_anthracite)无烟煤$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_pitchblende)晶质铀矿, 沥青铀矿$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_monazite)氟碳镧铈矿, 独居石$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_scheelite)白钨矿, 钨酸锂$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_lubricant)皂石, 滑石, 天然碱$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_garnet_tin)石榴石, 锡石矿砂$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_gypsum)石膏, 方解石$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_graphite)石墨, 钻石$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_basaltic_sands)矿砂$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_naquadah)硅岩, 钚矿$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_garnierite)硅镁镍矿, 辉钴矿$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_saltpeter)硝石, 电石$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sulfur)硫, 黄铁矿$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/nether_vein_index#nether_sheldonite)硫铂矿, 斑铜矿$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_apatite)磷灰石, 烧绿石$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_garnet)紫水晶, 蛋白石, 石榴石$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_redstone)红石, 朱砂, 红宝石$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_beryllium)绿宝石, 铍矿$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_olivine)膨润土, 橄榄石$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sapphire)蓝宝石, 铁铝榴石$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_mica)蓝晶石, 云母, 铝土矿$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_hematite)赤铁矿, 褐铁矿$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_gold)金矿, 赤铁矿$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_goethite)针铁矿$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_molybdenum)钼铅矿, 辉钼矿$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sylvite)钾石盐$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_copper)铜矿, 黄铜矿$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/nether_vein_index#nether_magnetite)铬铁矿$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_silver)银矿, 方铅矿, 铅矿$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_cassiterite)锡石矿$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_manganese)锰矿, 钽矿$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sphalerite)闪锌矿, 黄铁矿$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_lapis)青金石, 蓝金石, 方钠石$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_topaz)黄玉, 辉铜矿$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_tetrahedrite)黝铜矿$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 150$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 128$(br)$(thing)尺寸$(): 45$(br2)$(thing)岩石类型$(): 混合岩, 玄武岩, 石灰华, 花岗岩, 辉石岩, 辉长岩, 闪长岩", + "title": "下界石英", + "type": "patchouli:text", + "anchor": "nether_quartz" + }, + { + "Type": "patchouli:multiblock", + "name": "下界石英", + "multiblock": { + "mapping": { + "0": "#forge:ores/nether_quartz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 54%$(br)$(thing)用于$(): Applied Energistics 2$(br)$(thing)化学式$(): SiO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "石英岩", + "multiblock": { + "mapping": { + "0": "#forge:ores/quartzite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)用于$(): LV组件$(br)$(thing)化学式$(): SiO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "重晶石", + "multiblock": { + "mapping": { + "0": "#forge:ores/barite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 钡$(br)$(thing)化学式$(): BaSO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 35$(br)$(thing)密度$(): 0.8$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): 48 — 127$(br)$(thing)尺寸$(): 13$(br)$(thing)高度$(): 4$(br2)$(thing)岩石类型$(): 混合岩", + "title": "无烟煤", + "type": "patchouli:text", + "anchor": "nether_anthracite" + }, + { + "Type": "patchouli:multiblock", + "name": "无烟煤", + "multiblock": { + "mapping": { + "0": "beneath:ore/nether_cursecoal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 100%$(br)$(thing)用于$(): 燃料$(br)$(thing)化学式$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 220$(br)$(thing)密度$(): 0.55$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 128$(br)$(thing)尺寸$(): 29$(br2)$(thing)岩石类型$(): 片岩, 片麻岩, 花岗岩, 辉石岩, 辉长岩, 闪长岩", + "title": "晶质铀矿, 沥青铀矿", + "type": "patchouli:text", + "anchor": "nether_pitchblende" + }, + { + "Type": "patchouli:multiblock", + "name": "沥青铀矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pitchblende" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 50%$(br)$(thing)来源$(): 铀, 钍, 铅$(br)$(thing)化学式$(): (UO₂)₃ThPb$(br)$(thing)危害$(): $(c)$(t:需要全身防护)致癌 (任何接触)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "晶质铀矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/uraninite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 50%$(br)$(thing)来源$(): 铀$(br)$(thing)化学式$(): UO₂$(br)$(thing)危害$(): $(c)$(t:需要全身防护)致癌 (任何接触)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 245$(br)$(thing)密度$(): 0.35$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 24 — 128$(br)$(thing)尺寸$(): 45$(br2)$(thing)岩石类型$(): 片岩, 片麻岩, 花岗岩, 辉石岩, 辉长岩, 闪长岩", + "title": "氟碳镧铈矿, 独居石", + "type": "patchouli:text", + "anchor": "nether_monazite" + }, + { + "Type": "patchouli:multiblock", + "name": "氟碳镧铈矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/bastnasite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 50%$(br)$(thing)来源$(): 铈, 氟$(br)$(thing)化学式$(): CeCFO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "独居石", + "multiblock": { + "mapping": { + "0": "#forge:ores/monazite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 磷, 稀土$(br)$(thing)化学式$(): ?(PO₄)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钕矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/neodymium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 钕$(br)$(thing)化学式$(): Nd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 180$(br)$(thing)密度$(): 0.45$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 128$(br)$(thing)尺寸$(): 25$(br2)$(thing)岩石类型$(): 片岩, 片麻岩, 花岗岩, 辉石岩, 辉长岩, 闪长岩", + "title": "白钨矿, 钨酸锂", + "type": "patchouli:text", + "anchor": "nether_scheelite" + }, + { + "Type": "patchouli:multiblock", + "name": "白钨矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/scheelite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 45%$(br)$(thing)来源$(): 钨$(br)$(thing)化学式$(): Ca(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钨酸锂", + "multiblock": { + "mapping": { + "0": "#forge:ores/tungstate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 钨, 锂$(br)$(thing)化学式$(): Li₂(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "锂矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/lithium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 锂$(br)$(thing)化学式$(): Li", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 250$(br)$(thing)密度$(): 0.35$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 32 — 128$(br)$(thing)尺寸$(): 41$(br2)$(thing)岩石类型$(): 片岩, 片麻岩, 花岗岩, 辉石岩, 辉长岩, 闪长岩", + "title": "皂石, 滑石, 天然碱", + "type": "patchouli:text", + "anchor": "nether_lubricant" + }, + { + "Type": "patchouli:multiblock", + "name": "皂石", + "multiblock": { + "mapping": { + "0": "#forge:ores/soapstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 30%$(br)$(thing)来源$(): 镁$(br)$(thing)化学式$(): Mg₃Si₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "海绿石矿砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 镁, 铝$(br)$(thing)化学式$(): KMg₂Al₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "滑石", + "multiblock": { + "mapping": { + "0": "#forge:ores/talc" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 镁$(br)$(thing)化学式$(): Mg₃Si₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "镍黄铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 镍$(br)$(thing)化学式$(): Ni₉S₈", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "天然碱", + "multiblock": { + "mapping": { + "0": "#forge:ores/trona" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 10%$(br)$(thing)来源$(): 钠$(br)$(thing)化学式$(): Na₃C₂H(H₂O)₂O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 270$(br)$(thing)密度$(): 0.35$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 24 — 128$(br)$(thing)尺寸$(): 45$(br2)$(thing)岩石类型$(): 混合岩, 片岩, 片麻岩, 石灰华, 花岗岩, 辉石岩, 辉长岩, 闪长岩", + "title": "石榴石, 锡石矿砂", + "type": "patchouli:text", + "anchor": "nether_garnet_tin" + }, + { + "Type": "patchouli:multiblock", + "name": "锡石矿砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)熔化$(): 锡$(br)$(thing)化学式$(): SnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "石榴石矿砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnet_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 铁铝榴石, 钙铁榴石, 钙铝榴石, 镁铝榴石, 锰铝榴石, 钙铬榴石", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "石棉", + "multiblock": { + "mapping": { + "0": "#forge:ores/asbestos" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 镁, 肺癌$(br)$(thing)化学式$(): Mg₃Si₂H₄O₉$(br)$(thing)危害$(): $(c)$(t:需要面罩)石棉肺 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "硅藻土", + "multiblock": { + "mapping": { + "0": "#forge:ores/diatomite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 铁, 铝$(br)$(thing)化学式$(): (SiO₂)₈(Fe₂O₃)(Al₂O₃)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 180$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): 32 — 128$(br)$(thing)尺寸$(): 40$(br)$(thing)高度$(): 9$(br2)$(thing)岩石类型$(): 混合岩, 石灰华, 辉石岩", + "title": "石膏, 方解石", + "type": "patchouli:text", + "anchor": "nether_gypsum" + }, + { + "Type": "patchouli:multiblock", + "name": "石膏", + "multiblock": { + "mapping": { + "0": "#forge:ores/gypsum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)用于$(): 雪花石膏砖块(可染色)$(br)$(thing)化学式$(): CaS(H₂O)₂O₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "方解石", + "multiblock": { + "mapping": { + "0": "#forge:ores/calcite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 30%$(br)$(thing)来源$(): 钙$(br)$(thing)化学式$(): CaCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "硼砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/borax" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 钠, 硼$(br)$(thing)化学式$(): Na₂B₄(H₂O)₁₀O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "漂白土", + "multiblock": { + "mapping": { + "0": "#forge:ores/fullers_earth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 镁$(br)$(thing)化学式$(): MgSi₄H(H₂O)₄O₁₁", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 120$(br)$(thing)密度$(): 0.35$(br)$(thing)类型$(): 管状矿脉$(br)$(thing)Y 坐标$(): 0 — 128$(br)$(thing)高度$(): 60$(br)$(thing)半径$(): 12$(br2)$(thing)岩石类型$(): 片岩, 片麻岩, 花岗岩, 辉石岩, 辉长岩, 闪长岩", + "title": "石墨, 钻石", + "type": "patchouli:text", + "anchor": "nether_graphite" + }, + { + "Type": "patchouli:multiblock", + "name": "石墨", + "multiblock": { + "mapping": { + "0": "#forge:ores/graphite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 45%$(br)$(thing)用于$(): $(l:mechanics/fire_clay)耐火粘土$(), 石墨烯$(br)$(thing)化学式$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钻石", + "multiblock": { + "mapping": { + "0": "#forge:ores/diamond" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 40%$(br)$(thing)用于$(): 研磨机, AE2$(br)$(thing)化学式$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "煤炭", + "multiblock": { + "mapping": { + "0": "#forge:ores/coal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)用于$(): 燃料, 蒸馏$(br)$(thing)化学式$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 160$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): 48 — 128$(br)$(thing)尺寸$(): 48$(br)$(thing)高度$(): 9$(br2)$(thing)岩石类型$(): 玄武岩, 花岗岩", + "title": "矿砂", + "type": "patchouli:text", + "anchor": "nether_basaltic_sands" + }, + { + "Type": "patchouli:multiblock", + "name": "玄武岩矿砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/basaltic_mineral_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): (Fe₃O₄)((Mg₂Fe(SiO₂)₂)(CaCo₃)₃(SiO₂)₈C₄)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "花岗岩矿砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/granitic_mineral_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): (Fe₃O₄)((SiO₂)₄(KMg₃Al₃F₂Si₃O₁₀))", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "漂白土", + "multiblock": { + "mapping": { + "0": "#forge:ores/fullers_earth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 镁$(br)$(thing)化学式$(): MgSi₄H(H₂O)₄O₁₁", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "石膏", + "multiblock": { + "mapping": { + "0": "#forge:ores/gypsum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)用于$(): 雪花石膏砖块(可染色)$(br)$(thing)化学式$(): CaS(H₂O)₂O₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 250$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 38$(br)$(thing)尺寸$(): 32$(br2)$(thing)岩石类型$(): 玄武岩, 辉石岩", + "title": "硅岩, 钚矿", + "type": "patchouli:text", + "anchor": "nether_naquadah" + }, + { + "Type": "patchouli:multiblock", + "name": "硅岩", + "multiblock": { + "mapping": { + "0": "#forge:ores/naquadah" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 75%$(br)$(thing)来源$(): 硅岩, 三钛$(br)$(thing)化学式$(): Nq", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钚矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/plutonium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 钚矿$(br)$(thing)化学式$(): Pu²³⁹$(br)$(thing)危害$(): $(c)$(t:需要全身防护)致癌 (任何接触)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 160$(br)$(thing)密度$(): 0.5$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 16 — 128$(br)$(thing)尺寸$(): 45$(br2)$(thing)岩石类型$(): 辉石岩, 辉长岩, 闪长岩", + "title": "硅镁镍矿, 辉钴矿", + "type": "patchouli:text", + "anchor": "nether_garnierite" + }, + { + "Type": "patchouli:multiblock", + "name": "硅镁镍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnierite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 23%$(br)$(thing)熔化$(): 镍$(br)$(thing)化学式$(): NiO", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "镍黄铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 23%$(br)$(thing)熔化$(): 镍$(br)$(thing)化学式$(): Ni₉S₈", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "镍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 19%$(br)$(thing)熔化$(): 镍$(br)$(thing)化学式$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "辉钴矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobaltite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 19%$(br)$(thing)来源$(): 钴, 砷$(br)$(thing)化学式$(): CoAsS$(br)$(thing)危害$(): $(c)$(t:需要面罩)砷中毒 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钴矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobalt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 14%$(br)$(thing)熔化$(): 钴$(br)$(thing)化学式$(): Co", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 210$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 32 — 128$(br)$(thing)尺寸$(): 50$(br2)$(thing)岩石类型$(): 片岩, 片麻岩, 花岗岩, 辉石岩, 辉长岩, 闪长岩", + "title": "硝石, 电石", + "type": "patchouli:text", + "anchor": "nether_saltpeter" + }, + { + "Type": "patchouli:multiblock", + "name": "硝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 钾, 氮$(br)$(thing)化学式$(): KNO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "硅藻土", + "multiblock": { + "mapping": { + "0": "#forge:ores/diatomite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 铁, 铝$(br)$(thing)化学式$(): (SiO₂)₈(Fe₂O₃)(Al₂O₃)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "电石", + "multiblock": { + "mapping": { + "0": "#forge:ores/electrotine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 金, 银, 红石$(br)$(thing)化学式$(): (Si(FeS₂)₅(CrAl₂O₃)Hg₃)(AgAu)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "明矾石", + "multiblock": { + "mapping": { + "0": "#forge:ores/alunite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 钾, 铝$(br)$(thing)化学式$(): KAl₃Si₂H₆O₁₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 165$(br)$(thing)密度$(): 0.3$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 128$(br)$(thing)尺寸$(): 50$(br2)$(thing)岩石类型$(): 片岩, 玄武岩, 辉石岩, 闪长岩", + "title": "硫, 黄铁矿", + "type": "patchouli:text", + "anchor": "nether_sulfur" + }, + { + "Type": "patchouli:multiblock", + "name": "硫", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 50%$(br)$(thing)来源$(): 硫$(br)$(thing)化学式$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "闪锌矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 锌$(br)$(thing)化学式$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 250$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 128$(br)$(thing)尺寸$(): 35$(br2)$(thing)岩石类型$(): 混合岩, 玄武岩, 石灰华, 辉石岩", + "title": "硫铂矿, 斑铜矿", + "type": "patchouli:text", + "anchor": "nether_sheldonite" + }, + { + "Type": "patchouli:multiblock", + "name": "斑铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 41%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu₅FeS₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "硫铂矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/cooperite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 29%$(br)$(thing)来源$(): 铂, 镍, 钯$(br)$(thing)化学式$(): Pt₃NiSPd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "镍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 23%$(br)$(thing)熔化$(): 镍$(br)$(thing)化学式$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铂矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/platinum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)熔化$(): 铂$(br)$(thing)化学式$(): Pt", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 220$(br)$(thing)密度$(): 0.35$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 48 — 128$(br)$(thing)尺寸$(): 39$(br2)$(thing)岩石类型$(): 片岩, 片麻岩", + "title": "磷灰石, 烧绿石", + "type": "patchouli:text", + "anchor": "nether_apatite" + }, + { + "Type": "patchouli:multiblock", + "name": "磷灰石", + "multiblock": { + "mapping": { + "0": "#forge:ores/apatite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 50%$(br)$(thing)来源$(): 钙, 磷, 林业PTSD$(br)$(thing)化学式$(): Ca₅(PO₄)₃Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "磷酸三钙", + "multiblock": { + "mapping": { + "0": "#forge:ores/tricalcium_phosphate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 钙, 磷$(br)$(thing)化学式$(): Ca₃(PO₄)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "烧绿石", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrochlore" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 铌$(br)$(thing)化学式$(): Ca₂Nb₂O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 230$(br)$(thing)密度$(): 0.35$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): 0 — 128$(br)$(thing)尺寸$(): 45$(br)$(thing)高度$(): 8$(br2)$(thing)岩石类型$(): 混合岩, 玄武岩, 石灰华, 辉石岩", + "title": "紫水晶, 蛋白石, 石榴石", + "type": "patchouli:text", + "anchor": "nether_garnet" + }, + { + "Type": "patchouli:multiblock", + "name": "紫水晶", + "multiblock": { + "mapping": { + "0": "#forge:ores/amethyst" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 38%$(br)$(thing)来源$(): 铁$(br)$(thing)化学式$(): (SiO₂)₄Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "蛋白石", + "multiblock": { + "mapping": { + "0": "#forge:ores/opal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 38%$(br)$(thing)来源$(): 硅, 氧$(br)$(thing)化学式$(): (SiO₂)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄色石榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 14%$(br)$(thing)来源$(): 钙铁榴石, 钙铝榴石, 钙铬榴石", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "红色石榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/red_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 9%$(br)$(thing)来源$(): 镁铝榴石, 铁铝榴石, 锰铝榴石", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 160$(br)$(thing)密度$(): 0.5$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 128$(br)$(thing)尺寸$(): 45$(br2)$(thing)岩石类型$(): 花岗岩, 辉石岩", + "title": "红石, 朱砂, 红宝石", + "type": "patchouli:text", + "anchor": "nether_redstone" + }, + { + "Type": "patchouli:multiblock", + "name": "红石", + "multiblock": { + "mapping": { + "0": "#forge:ores/redstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 45%$(br)$(thing)熔化$(): 红石$(br)$(thing)化学式$(): Si(FeS₂)₅(CrAl₂O₃)Hg₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "红宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 铬, 铝$(br)$(thing)化学式$(): CrAl₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "朱砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/cinnabar" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 水银$(br)$(thing)化学式$(): HgS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 250$(br)$(thing)密度$(): 0.45$(br)$(thing)类型$(): 管状矿脉$(br)$(thing)Y 坐标$(): 32 — 128$(br)$(thing)高度$(): 60$(br)$(thing)半径$(): 12$(br2)$(thing)岩石类型$(): 混合岩, 玄武岩, 石灰华, 辉石岩", + "title": "绿宝石, 铍矿", + "type": "patchouli:text", + "anchor": "nether_beryllium" + }, + { + "Type": "patchouli:multiblock", + "name": "绿宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/emerald" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 47%$(br)$(thing)用于$(): MV组件, 标签过滤卡$(br)$(thing)化学式$(): Be₃Al₂Si₆O₁₈", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/beryllium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 33%$(br)$(thing)来源$(): 铍$(br)$(thing)化学式$(): Be$(br)$(thing)危害$(): $(c)$(t:需要橡胶手套)铍中毒 (皮肤接触)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "岩盐", + "multiblock": { + "mapping": { + "0": "#forge:ores/rock_salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 18%$(br)$(thing)来源$(): 钾, 氯$(br)$(thing)化学式$(): KCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/thorium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 0%$(br)$(thing)来源$(): 钍$(br)$(thing)化学式$(): Th", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 250$(br)$(thing)密度$(): 0.35$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 24 — 128$(br)$(thing)尺寸$(): 31$(br2)$(thing)岩石类型$(): 混合岩, 玄武岩, 石灰华, 辉石岩", + "title": "膨润土, 橄榄石", + "type": "patchouli:text", + "anchor": "nether_olivine" + }, + { + "Type": "patchouli:multiblock", + "name": "膨润土", + "multiblock": { + "mapping": { + "0": "#forge:ores/bentonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 钠, 镁$(br)$(thing)化学式$(): NaMg₆Si₁₂H₄(H₂O)₅O₃₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "菱镁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnesite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 镁$(br)$(thing)化学式$(): MgCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "橄榄石", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 镁, 铁$(br)$(thing)化学式$(): Mg₂Fe(SiO₂)₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "海绿石矿砂", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 镁, 铝$(br)$(thing)化学式$(): KMg₂Al₄H₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 180$(br)$(thing)密度$(): 0.45$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): 0 — 128$(br)$(thing)尺寸$(): 33$(br)$(thing)高度$(): 8$(br2)$(thing)岩石类型$(): 片岩, 片麻岩, 花岗岩, 辉石岩, 辉长岩, 闪长岩", + "title": "蓝宝石, 铁铝榴石", + "type": "patchouli:text", + "anchor": "nether_sapphire" + }, + { + "Type": "patchouli:multiblock", + "name": "铁铝榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/almandine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 38%$(br)$(thing)来源$(): 铝, 铁$(br)$(thing)化学式$(): Al₂Fe₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "镁铝榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrope" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 27%$(br)$(thing)来源$(): 铝, 镁$(br)$(thing)化学式$(): Al₂Mg₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "蓝宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 16%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "绿色蓝宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 16%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 220$(br)$(thing)密度$(): 0.35$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 32 — 128$(br)$(thing)尺寸$(): 41$(br2)$(thing)岩石类型$(): 片岩, 片麻岩, 花岗岩, 辉石岩, 辉长岩, 闪长岩", + "title": "蓝晶石, 云母, 铝土矿", + "type": "patchouli:text", + "anchor": "nether_mica" + }, + { + "Type": "patchouli:multiblock", + "name": "蓝晶石", + "multiblock": { + "mapping": { + "0": "#forge:ores/kyanite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 46%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al₂SiO₅", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "云母", + "multiblock": { + "mapping": { + "0": "#forge:ores/mica" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 33%$(br)$(thing)来源$(): 钾, 铝, 氟$(br)$(thing)化学式$(): KAl₃Si₃F₂O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铯榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/pollucite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 铯, 铝$(br)$(thing)化学式$(): Cs₂Al₂Si₄(H₂O)₂O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 220$(br)$(thing)密度$(): 0.45$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 128$(br)$(thing)尺寸$(): 35$(br2)$(thing)岩石类型$(): 混合岩, 玄武岩, 石灰华, 辉石岩", + "title": "赤铁矿, 褐铁矿", + "type": "patchouli:text", + "anchor": "nether_hematite" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "针铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "红宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)来源$(): 铬, 铝$(br)$(thing)化学式$(): CrAl₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄褐铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "原生金", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)熔化$(): 金$(br)$(thing)化学式$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 260$(br)$(thing)密度$(): 0.55$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 128$(br)$(thing)尺寸$(): 37$(br2)$(thing)岩石类型$(): 片岩, 片麻岩, 花岗岩, 辉石岩, 辉长岩, 闪长岩", + "title": "金矿, 赤铁矿", + "type": "patchouli:text", + "anchor": "nether_gold" + }, + { + "Type": "patchouli:multiblock", + "name": "原生金", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 75%$(br)$(thing)熔化$(): 金$(br)$(thing)化学式$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "针铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄褐铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 240$(br)$(thing)密度$(): 0.45$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 128$(br)$(thing)尺寸$(): 37$(br2)$(thing)岩石类型$(): 混合岩, 玄武岩, 石灰华, 辉石岩", + "title": "针铁矿", + "type": "patchouli:text", + "anchor": "nether_goethite" + }, + { + "Type": "patchouli:multiblock", + "name": "针铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 50%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "孔雀石", + "multiblock": { + "mapping": { + "0": "#forge:ores/malachite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu₂CH₂O₅", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄褐铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeHO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 245$(br)$(thing)密度$(): 0.55$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 128$(br)$(thing)尺寸$(): 31$(br2)$(thing)岩石类型$(): 片岩, 片麻岩, 花岗岩, 辉石岩, 辉长岩, 闪长岩", + "title": "钼铅矿, 辉钼矿", + "type": "patchouli:text", + "anchor": "nether_molybdenum" + }, + { + "Type": "patchouli:multiblock", + "name": "钼铅矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/wulfenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 42%$(br)$(thing)来源$(): 铅, 钼$(br)$(thing)化学式$(): PbMoO₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "辉钼矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/molybdenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 31%$(br)$(thing)来源$(): 钼$(br)$(thing)化学式$(): MoS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "镍矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 镍$(br)$(thing)化学式$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钼钨钙矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/powellite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 10%$(br)$(thing)来源$(): 钼$(br)$(thing)化学式$(): CaMoO₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 75$(br)$(thing)密度$(): 0.6$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 64$(br)$(thing)尺寸$(): 17$(br)$(thing)指示器最大深度$(): 20$(br2)$(thing)岩石类型$(): 辉石岩", + "title": "钾石盐", + "type": "patchouli:text", + "anchor": "nether_sylvite" + }, + { + "Type": "patchouli:multiblock", + "name": "钾石盐", + "multiblock": { + "mapping": { + "0": "beneath:ore/blackstone_sylvite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 100%$(br)$(thing)用于$(): 肥料$(br)$(thing)化学式$(): KCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 170$(br)$(thing)密度$(): 0.5$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 32 — 128$(br)$(thing)尺寸$(): 45$(br2)$(thing)岩石类型$(): 混合岩, 玄武岩, 石灰华, 辉石岩", + "title": "铜矿, 黄铜矿", + "type": "patchouli:text", + "anchor": "nether_copper" + }, + { + "Type": "patchouli:multiblock", + "name": "原生铜", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 65%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcopyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): CuFeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 10%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "赤铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 5%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 205$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 0 — 128$(br)$(thing)尺寸$(): 39$(br2)$(thing)岩石类型$(): 混合岩, 玄武岩, 石灰华, 辉石岩", + "title": "铬铁矿", + "type": "patchouli:text", + "anchor": "nether_magnetite" + }, + { + "Type": "patchouli:multiblock", + "name": "钒磁铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/vanadium_magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 30%$(br)$(thing)来源$(): 铁, 钒$(br)$(thing)化学式$(): (Fe₃O₄)V", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "原生金", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 30%$(br)$(thing)熔化$(): 金$(br)$(thing)化学式$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "磁铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): Fe₃O₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铬铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/chromite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 10%$(br)$(thing)来源$(): 铬$(br)$(thing)化学式$(): FeCr₂O₄$(br)$(thing)危害$(): $(c)$(t:需要橡胶手套)刺激性 (皮肤接触)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "蓝宝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 10%$(br)$(thing)来源$(): 铝$(br)$(thing)化学式$(): Al₂O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 160$(br)$(thing)密度$(): 0.5$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 24 — 128$(br)$(thing)尺寸$(): 45$(br2)$(thing)岩石类型$(): 片麻岩, 花岗岩, 辉石岩", + "title": "银矿, 方铅矿, 铅矿", + "type": "patchouli:text", + "anchor": "nether_silver" + }, + { + "Type": "patchouli:multiblock", + "name": "原生银", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)熔化$(): 银$(br)$(thing)化学式$(): Ag", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "铅矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)熔化$(): 铅$(br)$(thing)化学式$(): Pb$(br)$(thing)危害$(): $(c)$(t:需要面罩)弱毒性 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "方铅矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/galena" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 30%$(br)$(thing)熔化$(): 铅$(br)$(thing)化学式$(): PbS$(br)$(thing)危害$(): $(c)$(t:需要面罩)弱毒性 (吸入)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 170$(br)$(thing)密度$(): 0.5$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 32 — 128$(br)$(thing)尺寸$(): 45$(br2)$(thing)岩石类型$(): 片岩, 片麻岩, 花岗岩, 辉石岩, 辉长岩, 闪长岩", + "title": "锡石矿", + "type": "patchouli:text", + "anchor": "nether_cassiterite" + }, + { + "Type": "patchouli:multiblock", + "name": "锡矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/tin" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 60%$(br)$(thing)熔化$(): 锡$(br)$(thing)化学式$(): Sn", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "锡石矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 40%$(br)$(thing)熔化$(): 锡$(br)$(thing)化学式$(): SnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 225$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 32 — 128$(br)$(thing)尺寸$(): 45$(br2)$(thing)岩石类型$(): 混合岩, 玄武岩, 石灰华, 辉石岩", + "title": "锰矿, 钽矿", + "type": "patchouli:text", + "anchor": "nether_manganese" + }, + { + "Type": "patchouli:multiblock", + "name": "钙铝榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/grossular" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 37%$(br)$(thing)来源$(): 钙, 铝$(br)$(thing)化学式$(): Ca₃Al₂Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "锰铝榴石", + "multiblock": { + "mapping": { + "0": "#forge:ores/spessartine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 锰, 铝$(br)$(thing)化学式$(): Al₂Mn₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "软锰矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrolusite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 锰$(br)$(thing)化学式$(): MnO₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "钽铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/tantalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 12%$(br)$(thing)来源$(): 锰, 钽$(br)$(thing)化学式$(): MnTa₂O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 170$(br)$(thing)密度$(): 0.5$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 32 — 128$(br)$(thing)尺寸$(): 45$(br2)$(thing)岩石类型$(): 混合岩, 玄武岩, 石灰华, 辉石岩", + "title": "闪锌矿, 黄铁矿", + "type": "patchouli:text", + "anchor": "nether_sphalerite" + }, + { + "Type": "patchouli:multiblock", + "name": "闪锌矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 40%$(br)$(thing)熔化$(): 锌$(br)$(thing)化学式$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "硫", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 硫$(br)$(thing)化学式$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄铁矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)熔化$(): 铸铁$(br)$(thing)化学式$(): FeS₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 220$(br)$(thing)密度$(): 0.35$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 32 — 128$(br)$(thing)尺寸$(): 40$(br2)$(thing)岩石类型$(): 混合岩, 石灰华, 辉石岩", + "title": "青金石, 蓝金石, 方钠石", + "type": "patchouli:text", + "anchor": "nether_lapis" + }, + { + "Type": "patchouli:multiblock", + "name": "蓝金石", + "multiblock": { + "mapping": { + "0": "#forge:ores/lazurite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 铝, 钙, 钠$(br)$(thing)化学式$(): Al₆Si₆Ca₈Na₈", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "方钠石", + "multiblock": { + "mapping": { + "0": "#forge:ores/sodalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 铝, 钠$(br)$(thing)化学式$(): Al₃Si₃Na₄Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "青金石", + "multiblock": { + "mapping": { + "0": "#forge:ores/lapis" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 蓝金石, 方钠石, 黄铁矿, 方解石", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "方解石", + "multiblock": { + "mapping": { + "0": "#forge:ores/calcite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)来源$(): 钙$(br)$(thing)化学式$(): CaCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 180$(br)$(thing)密度$(): 0.4$(br)$(thing)类型$(): 盘状矿脉$(br)$(thing)Y 坐标$(): 0 — 128$(br)$(thing)尺寸$(): 33$(br)$(thing)高度$(): 7$(br2)$(thing)岩石类型$(): 混合岩, 玄武岩, 石灰华, 辉石岩", + "title": "黄玉, 辉铜矿", + "type": "patchouli:text", + "anchor": "nether_topaz" + }, + { + "Type": "patchouli:multiblock", + "name": "蓝黄玉", + "multiblock": { + "mapping": { + "0": "#forge:ores/blue_topaz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 35%$(br)$(thing)来源$(): 铝, 氟$(br)$(thing)化学式$(): Al₂SiF₂H₂O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "黄玉", + "multiblock": { + "mapping": { + "0": "#forge:ores/topaz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 铝, 氟$(br)$(thing)化学式$(): Al₂SiFH₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "辉铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcocite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 25%$(br)$(thing)来源$(): 铜$(br)$(thing)化学式$(): Cu₂S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "斑铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 15%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu₅FeS₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)稀有度$(): 170$(br)$(thing)密度$(): 0.5$(br)$(thing)类型$(): 团簇状矿脉$(br)$(thing)Y 坐标$(): 32 — 128$(br)$(thing)尺寸$(): 45$(br2)$(thing)岩石类型$(): 混合岩, 片岩, 片麻岩, 石灰华, 辉石岩", + "title": "黝铜矿", + "type": "patchouli:text", + "anchor": "nether_tetrahedrite" + }, + { + "Type": "patchouli:multiblock", + "name": "黝铜矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 50%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "原生铜", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 30%$(br)$(thing)熔化$(): 铜$(br)$(thing)化学式$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "辉锑矿", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)百分比$(): 20%$(br)$(thing)熔化$(): 锑$(br)$(thing)化学式$(): Sb₂S₃", + "type": "patchouli:multiblock" + } + ], + "sortnum": 3 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/textures/gui/knapping/straw.png b/kubejs/assets/tfc/textures/gui/knapping/straw.png new file mode 100644 index 000000000..f877310a9 Binary files /dev/null and b/kubejs/assets/tfc/textures/gui/knapping/straw.png differ diff --git a/kubejs/assets/tfc_textile/lang/ru_ru.json b/kubejs/assets/tfc_textile/lang/ru_ru.json new file mode 100644 index 000000000..4974b62e7 --- /dev/null +++ b/kubejs/assets/tfc_textile/lang/ru_ru.json @@ -0,0 +1,63 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "item.tfc_textile.direwolf_fur": "Шкура лютоволка", + "item.tfc_textile.black_bear_fur": "Шкура черного медведя", + "item.tfc_textile.sabertooth_fur": "Шкура саблезубого тигра", + "item.tfc_textile.polar_bear_fur": "Шкура полярного медведя", + "item.tfc_textile.grizzly_bear_fur": "Шкура бурого медведя", + "item.tfc_textile.cougar_fur": "Шкура пумы", + "item.tfc_textile.panther_fur": "Шкура пантеры", + "item.tfc_textile.caribou_fur": "Шкура северного оленя", + "item.tfc_textile.crocodile_leather": "Кожа крокодила", + "item.tfc_textile.lion_fur": "Шкура льва", + "item.tfc_textile.tiger_fur": "Шкура тигра", + "item.tfc_textile.direwolf_boots": "Ботинки из лютоволка", + "item.tfc_textile.black_bear_boots": "Ботинки из черного медведя", + "item.tfc_textile.sabertooth_boots": "Ботинки из саблезубого тигра", + "item.tfc_textile.polar_bear_boots": "Ботинки из полярного медведя", + "item.tfc_textile.grizzly_bear_boots": "Ботинки из бурого медведя", + "item.tfc_textile.cougar_boots": "Ботинки из пумы", + "item.tfc_textile.panther_boots": "Ботинки из пантеры", + "item.tfc_textile.caribou_boots": "Ботинки из северного оленя", + "item.tfc_textile.crocodile_boots": "Ботинки из крокодила", + "item.tfc_textile.lion_boots": "Ботинки из льва", + "item.tfc_textile.tiger_boots": "Ботинки из тигра", + "item.tfc_textile.raw_socks": "Первобытные ботинки", + "item.tfc_textile.direwolf_pants": "Штаны из лютоволка", + "item.tfc_textile.black_bear_pants": "Штаны из черного медведя", + "item.tfc_textile.sabertooth_pants": "Штаны из саблезубого тигра", + "item.tfc_textile.polar_bear_pants": "Штаны из полярного медведя", + "item.tfc_textile.grizzly_bear_pants": "Штаны из бурого медведя", + "item.tfc_textile.cougar_pants": "Штаны из пумы", + "item.tfc_textile.panther_pants": "Штаны из пантеры", + "item.tfc_textile.caribou_pants": "Штаны из северного оленя", + "item.tfc_textile.crocodile_pants": "Шорты из крокодила", + "item.tfc_textile.lion_pants": "Штаны из льва", + "item.tfc_textile.tiger_pants": "Штаны из тигра", + "item.tfc_textile.raw_pants": "Первобытные штаны", + "item.tfc_textile.direwolf_shirt": "Парка из лютоволка", + "item.tfc_textile.black_bear_shirt": "Рубашка из черного медведя", + "item.tfc_textile.sabertooth_shirt": "Рубашка из саблезубого тигра", + "item.tfc_textile.polar_bear_shirt": "Парка из полярного медведя", + "item.tfc_textile.grizzly_bear_shirt": "Рубашка из бурого медведя", + "item.tfc_textile.cougar_shirt": "Рубашка из пумы", + "item.tfc_textile.panther_shirt": "Рубашка из пантеры", + "item.tfc_textile.caribou_shirt": "Парка из северного оленя", + "item.tfc_textile.crocodile_shirt": "Куртка из крокодила", + "item.tfc_textile.lion_shirt": "Рубашка из льва", + "item.tfc_textile.tiger_shirt": "Рубашка из тигра", + "item.tfc_textile.raw_shirt": "Первобытная рубаха", + "item.tfc_textile.direwolf_hat": "Шапка из лютоволка", + "item.tfc_textile.black_bear_hat": "Шапка из черного медведя", + "item.tfc_textile.sabertooth_hat": "Шапка из саблезубого тигра", + "item.tfc_textile.polar_bear_hat": "Капюшон из полярного медведя", + "item.tfc_textile.grizzly_bear_hat": "Шапка из бурого медведя", + "item.tfc_textile.cougar_hat": "Шапка из пумы", + "item.tfc_textile.panther_hat": "Шапка из пантеры", + "item.tfc_textile.caribou_hat": "Капюшон из северного оленя", + "item.tfc_textile.crocodile_hat": "Шапка из крокодила", + "item.tfc_textile.lion_hat": "Шапка из льва", + "item.tfc_textile.tiger_hat": "Шапка из тигра", + "item.tfc_textile.raw_hat": "Первобытный капюшон", + "item.tfc_textile.primitive_insulation": "Первобытный утеплённый материал" +} \ No newline at end of file diff --git a/kubejs/assets/tfcambiental/lang/ru_ru.json b/kubejs/assets/tfcambiental/lang/ru_ru.json new file mode 100644 index 000000000..c4dd402c4 --- /dev/null +++ b/kubejs/assets/tfcambiental/lang/ru_ru.json @@ -0,0 +1,41 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "death.attack.frostbite": "%1$s замерз насмерть.", + "death.attack.heatstroke": "%1$s умер от теплового удара.", + "effect.tfcambiental.cool.name": "Охлаждение", + "effect.tfcambiental.warm.name": "Нагрев", + "item.tfcambiental.house_tester": "Тестер дома", + "item.tfcambiental.snowshoes": "Зимняя обувь", + "item.tfcambiental.straw_hat": "Соломенная шляпа", + "item.tfcambiental.leather_apron": "Кожаный фартук", + "item.tfcambiental.wool_hat": "Шерстяная шапка", + "item.tfcambiental.wool_sweater": "Шерстяной свитер", + "item.tfcambiental.wool_pants": "Шерстяные штаны", + "item.tfcambiental.wool_boots": "Шерстяные ботинки", + "item.tfcambiental.silk_cowl": "Шёлковый капюшон", + "item.tfcambiental.silk_shirt": "Шёлковая рубашка", + "item.tfcambiental.silk_pants": "Шёлковые штаны", + "item.tfcambiental.silk_shoes": "Шёлковая обувь", + "item.tfcambiental.burlap_cowl": "Джутовый капюшон", + "item.tfcambiental.burlap_shirt": "Джутововая рубашка", + "item.tfcambiental.burlap_pants": "Джутовые штаны", + "item.tfcambiental.burlap_shoes": "Джутовая обувь", + "item.tfcambiental.insulated_leather_hat": "Утепленный кожаный шлем", + "item.tfcambiental.insulated_leather_tunic": "Утепленная кожаная куртка", + "item.tfcambiental.insulated_leather_pants": "Утепленные кожаные штаны", + "item.tfcambiental.insulated_leather_boots": "Утепленные кожаные ботинки", + "tfcambiental.house_tester.description": "Щелкните ПКМ, чтобы проверить, считается ли ваше текущее местоположение внутри или снаружи", + "tfcambiental.message.is_inside": "Вы внутри", + "tfcambiental.message.is_inside_alt": "Your outsides are inside", + "tfcambiental.message.is_outside": "Вы снаружи", + "tfcambiental.message.is_outside_alt": "Your insides are outside", + "tfcambiental.tooltip.warmth": "Терморегуляция: %s", + "tfcambiental.tooltip.insulation": "Термоизоляция: %s", + "tfcambiental.tooltip.sun_protection": "Защищает от прямых солнечных лучей", + "tfcambiental.tooltip.snowshoes": "Больше не нужно тонуть в рыхлом снегу", + "curios.identifier.clothes_hat": "Одежда (Голова)", + "curios.identifier.clothes_torso": "Одежда (Туловище)", + "curios.identifier.clothes_pants": "Одежда (Ноги)", + "curios.identifier.clothes_socks": "Одежда (Ступни)", + "curios.identifier.feet": "Оборудование (Ступни)" +} \ No newline at end of file diff --git a/kubejs/assets/tfcastikorcarts/lang/ru_ru.json b/kubejs/assets/tfcastikorcarts/lang/ru_ru.json new file mode 100644 index 000000000..2ee9cee4d --- /dev/null +++ b/kubejs/assets/tfcastikorcarts/lang/ru_ru.json @@ -0,0 +1,936 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "item.tfcastikorcarts.supply_cart": "Грузовая тележка", + "item.tfcastikorcarts.plow": "Плуг", + "item.tfcastikorcarts.animal_cart": "Скотовоз", + "item.tfcastikorcarts.wheel": "Колесо", + "itemGroup.tfcastikorcarts.tfcastikorcarts": "AstikorCarts", + "entity.tfcastikorcarts.supply_cart": "Грузовая тележка", + "entity.tfcastikorcarts.plow": "Плуг", + "entity.tfcastikorcarts.animal_cart": "Скотовоз", + "entity.tfcastikorcarts.postilion": "Форейтор", + "key.categories.tfcastikorcarts": "AstikorCarts", + "key.tfcastikorcarts.desc": "Клавиша действия", + "subtitles.tfcastikorcarts.cart.attached": "Тележка прикреплена", + "subtitles.tfcastikorcarts.cart.detached": "Тележка откреплена", + "subtitles.tfcastikorcarts.cart.placed": "Тележка размещена", + "stat.tfcastikorcarts.cart_one_cm": "Пройденное расстояние на тележке", + "entity.tfcastikorcarts.supply_cart.acacia": "Акациевая грузовая тележка", + "entity.tfcastikorcarts.supply_cart.ash": "Ясеневая грузовая тележка", + "entity.tfcastikorcarts.supply_cart.aspen": "Осиновая грузовая тележка", + "entity.tfcastikorcarts.supply_cart.birch": "Берёзовая грузовая тележка", + "entity.tfcastikorcarts.supply_cart.blackwood": "Гренадиловая грузовая тележка", + "entity.tfcastikorcarts.supply_cart.chestnut": "Каштановая грузовая тележка", + "entity.tfcastikorcarts.supply_cart.douglas_fir": "Грузовая тележка из дугласовой пихты", + "entity.tfcastikorcarts.supply_cart.hickory": "Ореховая грузовая тележка", + "entity.tfcastikorcarts.supply_cart.kapok": "Грузовая тележка из сейбы", + "entity.tfcastikorcarts.supply_cart.maple": "Кленовая грузовая тележка", + "entity.tfcastikorcarts.supply_cart.oak": "Дубовая грузовая тележка", + "entity.tfcastikorcarts.supply_cart.palm": "Пальмовая грузовая тележка", + "entity.tfcastikorcarts.supply_cart.pine": "Сосновая грузовая тележка", + "entity.tfcastikorcarts.supply_cart.rosewood": "Палисандровая грузовая тележка", + "entity.tfcastikorcarts.supply_cart.sequoia": "Секвойная грузовая тележка", + "entity.tfcastikorcarts.supply_cart.spruce": "Еловая грузовая тележка", + "entity.tfcastikorcarts.supply_cart.sycamore": "Платановая грузовая тележка", + "entity.tfcastikorcarts.supply_cart.white_cedar": "Грузовая тележка из белого кедра", + "entity.tfcastikorcarts.supply_cart.willow": "Ивовая грузовая тележка", + "entity.tfcastikorcarts.supply_cart.african_padauk": "African Padauk грузовая тележка", + "entity.tfcastikorcarts.supply_cart.alder": "Alder грузовая тележка", + "entity.tfcastikorcarts.supply_cart.angelim": "Angelim грузовая тележка", + "entity.tfcastikorcarts.supply_cart.argyle_eucalyptus": "Argyle Eucalyptus грузовая тележка", + "entity.tfcastikorcarts.supply_cart.bald_cypress": "Bald Cypress грузовая тележка", + "entity.tfcastikorcarts.supply_cart.baobab": "Баобабовая грузовая тележка", + "entity.tfcastikorcarts.supply_cart.beech": "Beech грузовая тележка", + "entity.tfcastikorcarts.supply_cart.black_walnut": "Black Walnut грузовая тележка", + "entity.tfcastikorcarts.supply_cart.black_willow": "Black Willow грузовая тележка", + "entity.tfcastikorcarts.supply_cart.brazilwood": "Brazilwood грузовая тележка", + "entity.tfcastikorcarts.supply_cart.butternut": "Butternut грузовая тележка", + "entity.tfcastikorcarts.supply_cart.buxus": "Buxus грузовая тележка", + "entity.tfcastikorcarts.supply_cart.cocobolo": "Cocobolo грузовая тележка", + "entity.tfcastikorcarts.supply_cart.common_oak": "Common Oak грузовая тележка", + "entity.tfcastikorcarts.supply_cart.cypress": "Кипарисовая грузовая тележка", + "entity.tfcastikorcarts.supply_cart.ebony": "Ebony грузовая тележка", + "entity.tfcastikorcarts.supply_cart.fever": "Fever грузовая тележка", + "entity.tfcastikorcarts.supply_cart.ghaf": "Ghaf грузовая тележка", + "entity.tfcastikorcarts.supply_cart.ginkgo": "Ginkgo грузовая тележка", + "entity.tfcastikorcarts.supply_cart.greenheart": "Greenheart грузовая тележка", + "entity.tfcastikorcarts.supply_cart.hawthorn": "Hawthorn грузовая тележка", + "entity.tfcastikorcarts.supply_cart.hazel": "Hazel грузовая тележка", + "entity.tfcastikorcarts.supply_cart.hemlock": "Hemlock грузовая тележка", + "entity.tfcastikorcarts.supply_cart.holly": "Holly грузовая тележка", + "entity.tfcastikorcarts.supply_cart.hornbeam": "Hornbeam грузовая тележка", + "entity.tfcastikorcarts.supply_cart.iroko": "Iroko грузовая тележка", + "entity.tfcastikorcarts.supply_cart.ironwood": "Ironwood грузовая тележка", + "entity.tfcastikorcarts.supply_cart.jabuticabeira": "Jabuticabeira грузовая тележка", + "entity.tfcastikorcarts.supply_cart.joshua": "Joshua грузовая тележка", + "entity.tfcastikorcarts.supply_cart.juniper": "Juniper грузовая тележка", + "entity.tfcastikorcarts.supply_cart.kauri": "Kauri грузовая тележка", + "entity.tfcastikorcarts.supply_cart.laurel": "Laurel грузовая тележка", + "entity.tfcastikorcarts.supply_cart.larch": "Larch грузовая тележка", + "entity.tfcastikorcarts.supply_cart.limba": "Limba грузовая тележка", + "entity.tfcastikorcarts.supply_cart.locust": "Locust грузовая тележка", + "entity.tfcastikorcarts.supply_cart.logwood": "Logwood грузовая тележка", + "entity.tfcastikorcarts.supply_cart.maclura": "Maclura грузовая тележка", + "entity.tfcastikorcarts.supply_cart.mahoe": "Mahoe грузовая тележка", + "entity.tfcastikorcarts.supply_cart.mahogany": "Mahogany грузовая тележка", + "entity.tfcastikorcarts.supply_cart.marblewood": "Marblewood грузовая тележка", + "entity.tfcastikorcarts.supply_cart.medlar": "Medlar грузовая тележка", + "entity.tfcastikorcarts.supply_cart.messmate": "Messmate грузовая тележка", + "entity.tfcastikorcarts.supply_cart.mountain_ash": "Mountain Ash грузовая тележка", + "entity.tfcastikorcarts.supply_cart.mulberry": "Mulberry грузовая тележка", + "entity.tfcastikorcarts.supply_cart.nordmann_fir": "Nordmann Fir грузовая тележка", + "entity.tfcastikorcarts.supply_cart.norway_spruce": "Norway Spruce грузовая тележка", + "entity.tfcastikorcarts.supply_cart.pear": "Pear грузовая тележка", + "entity.tfcastikorcarts.supply_cart.persimmon": "Persimmon грузовая тележка", + "entity.tfcastikorcarts.supply_cart.pink_cherry_blossom": "Pink Cherry Blossom грузовая тележка", + "entity.tfcastikorcarts.supply_cart.pink_ipe": "Pink Ipe грузовая тележка", + "entity.tfcastikorcarts.supply_cart.pink_ivory": "Pink Ivory грузовая тележка", + "entity.tfcastikorcarts.supply_cart.poplar": "Poplar грузовая тележка", + "entity.tfcastikorcarts.supply_cart.purpleheart": "Purpleheart грузовая тележка", + "entity.tfcastikorcarts.supply_cart.purple_ipe": "Purple Ipe грузовая тележка", + "entity.tfcastikorcarts.supply_cart.purple_jacaranda": "Purple Jacaranda грузовая тележка", + "entity.tfcastikorcarts.supply_cart.quince": "Quince грузовая тележка", + "entity.tfcastikorcarts.supply_cart.rainbow_eucalyptus": "Rainbow Eucalyptus грузовая тележка", + "entity.tfcastikorcarts.supply_cart.redwood": "Redwood грузовая тележка", + "entity.tfcastikorcarts.supply_cart.red_cedar": "Red Cedar грузовая тележка", + "entity.tfcastikorcarts.supply_cart.red_cypress": "Red Cypress грузовая тележка", + "entity.tfcastikorcarts.supply_cart.red_elm": "Red Elm грузовая тележка", + "entity.tfcastikorcarts.supply_cart.red_mangrove": "Red Mangrove грузовая тележка", + "entity.tfcastikorcarts.supply_cart.rowan": "Rowan грузовая тележка", + "entity.tfcastikorcarts.supply_cart.rubber_fig": "Rubber Fig грузовая тележка", + "entity.tfcastikorcarts.supply_cart.sloe": "Sloe грузовая тележка", + "entity.tfcastikorcarts.supply_cart.snow_gum_eucalyptus": "Snow Gum Eucalyptus грузовая тележка", + "entity.tfcastikorcarts.supply_cart.sorb": "Sorb грузовая тележка", + "entity.tfcastikorcarts.supply_cart.sweetgum": "Sweetgum грузовая тележка", + "entity.tfcastikorcarts.supply_cart.syzygium": "Syzygium грузовая тележка", + "entity.tfcastikorcarts.supply_cart.teak": "Teak грузовая тележка", + "entity.tfcastikorcarts.supply_cart.walnut": "Walnut грузовая тележка", + "entity.tfcastikorcarts.supply_cart.wenge": "Wenge грузовая тележка", + "entity.tfcastikorcarts.supply_cart.whitebeam": "Whitebeam грузовая тележка", + "entity.tfcastikorcarts.supply_cart.white_cherry_blossom": "White Cherry Blossom грузовая тележка", + "entity.tfcastikorcarts.supply_cart.white_elm": "White Elm грузовая тележка", + "entity.tfcastikorcarts.supply_cart.white_ipe": "White Ipe грузовая тележка", + "entity.tfcastikorcarts.supply_cart.white_jacaranda": "White Jacaranda грузовая тележка", + "entity.tfcastikorcarts.supply_cart.white_mangrove": "White Mangrove грузовая тележка", + "entity.tfcastikorcarts.supply_cart.yellow_ipe": "Yellow Ipe грузовая тележка", + "entity.tfcastikorcarts.supply_cart.yellow_jacaranda": "Yellow Jacaranda грузовая тележка", + "entity.tfcastikorcarts.supply_cart.yellow_meranti": "Yellow Meranti грузовая тележка", + "entity.tfcastikorcarts.supply_cart.yew": "Yew грузовая тележка", + "entity.tfcastikorcarts.supply_cart.zebrawood": "Zebrawood грузовая тележка", + "entity.tfcastikorcarts.plow.acacia": "Акациевый плуг", + "entity.tfcastikorcarts.plow.ash": "Ясеневый плуг", + "entity.tfcastikorcarts.plow.aspen": "Осиновый плуг", + "entity.tfcastikorcarts.plow.birch": "Берёзовый плуг", + "entity.tfcastikorcarts.plow.blackwood": "Гренадиловый плуг", + "entity.tfcastikorcarts.plow.chestnut": "Каштановый плуг", + "entity.tfcastikorcarts.plow.douglas_fir": "Плуг из дугласовой пихты", + "entity.tfcastikorcarts.plow.hickory": "Ореховый плуг", + "entity.tfcastikorcarts.plow.kapok": "Плуг из сейбы", + "entity.tfcastikorcarts.plow.maple": "Кленовый плуг", + "entity.tfcastikorcarts.plow.oak": "Дубовый плуг", + "entity.tfcastikorcarts.plow.palm": "Пальмовый плуг", + "entity.tfcastikorcarts.plow.pine": "Сосновый плуг", + "entity.tfcastikorcarts.plow.rosewood": "Палисандровый плуг", + "entity.tfcastikorcarts.plow.sequoia": "Секвойный плуг", + "entity.tfcastikorcarts.plow.spruce": "Еловый плуг", + "entity.tfcastikorcarts.plow.sycamore": "Платановый плуг", + "entity.tfcastikorcarts.plow.white_cedar": "Плуг из белого кедра", + "entity.tfcastikorcarts.plow.willow": "Ивовый плуг", + "entity.tfcastikorcarts.plow.african_padauk": "African Padauk плуг", + "entity.tfcastikorcarts.plow.alder": "Alder плуг", + "entity.tfcastikorcarts.plow.angelim": "Angelim плуг", + "entity.tfcastikorcarts.plow.argyle_eucalyptus": "Argyle Eucalyptus плуг", + "entity.tfcastikorcarts.plow.bald_cypress": "Bald Cypress плуг", + "entity.tfcastikorcarts.plow.baobab": "Baobab плуг", + "entity.tfcastikorcarts.plow.beech": "Beech плуг", + "entity.tfcastikorcarts.plow.black_walnut": "Black Walnut плуг", + "entity.tfcastikorcarts.plow.black_willow": "Black Willow плуг", + "entity.tfcastikorcarts.plow.brazilwood": "Brazilwood плуг", + "entity.tfcastikorcarts.plow.butternut": "Butternut плуг", + "entity.tfcastikorcarts.plow.buxus": "Buxus плуг", + "entity.tfcastikorcarts.plow.cocobolo": "Cocobolo плуг", + "entity.tfcastikorcarts.plow.common_oak": "Common Oak плуг", + "entity.tfcastikorcarts.plow.cypress": "Cypress плуг", + "entity.tfcastikorcarts.plow.ebony": "Ebony плуг", + "entity.tfcastikorcarts.plow.fever": "Fever плуг", + "entity.tfcastikorcarts.plow.ghaf": "Ghaf плуг", + "entity.tfcastikorcarts.plow.ginkgo": "Ginkgo плуг", + "entity.tfcastikorcarts.plow.greenheart": "Greenheart плуг", + "entity.tfcastikorcarts.plow.hawthorn": "Hawthorn плуг", + "entity.tfcastikorcarts.plow.hazel": "Hazel плуг", + "entity.tfcastikorcarts.plow.hemlock": "Hemlock плуг", + "entity.tfcastikorcarts.plow.holly": "Holly плуг", + "entity.tfcastikorcarts.plow.hornbeam": "Hornbeam плуг", + "entity.tfcastikorcarts.plow.iroko": "Iroko плуг", + "entity.tfcastikorcarts.plow.ironwood": "Ironwood плуг", + "entity.tfcastikorcarts.plow.jabuticabeira": "Jabuticabeira плуг", + "entity.tfcastikorcarts.plow.joshua": "Joshua плуг", + "entity.tfcastikorcarts.plow.juniper": "Juniper плуг", + "entity.tfcastikorcarts.plow.kauri": "Kauri плуг", + "entity.tfcastikorcarts.plow.laurel": "Laurel плуг", + "entity.tfcastikorcarts.plow.larch": "Larch плуг", + "entity.tfcastikorcarts.plow.limba": "Limba плуг", + "entity.tfcastikorcarts.plow.locust": "Locust плуг", + "entity.tfcastikorcarts.plow.logwood": "Logwood плуг", + "entity.tfcastikorcarts.plow.maclura": "Maclura плуг", + "entity.tfcastikorcarts.plow.mahoe": "Mahoe плуг", + "entity.tfcastikorcarts.plow.mahogany": "Mahogany плуг", + "entity.tfcastikorcarts.plow.marblewood": "Marblewood плуг", + "entity.tfcastikorcarts.plow.medlar": "Medlar плуг", + "entity.tfcastikorcarts.plow.messmate": "Messmate плуг", + "entity.tfcastikorcarts.plow.mountain_ash": "Mountain Ash плуг", + "entity.tfcastikorcarts.plow.mulberry": "Mulberry плуг", + "entity.tfcastikorcarts.plow.nordmann_fir": "Nordmann Fir плуг", + "entity.tfcastikorcarts.plow.norway_spruce": "Norway Spruce плуг", + "entity.tfcastikorcarts.plow.pear": "Pear плуг", + "entity.tfcastikorcarts.plow.persimmon": "Persimmon плуг", + "entity.tfcastikorcarts.plow.pink_cherry_blossom": "Pink Cherry Blossom плуг", + "entity.tfcastikorcarts.plow.pink_ipe": "Pink Ipe плуг", + "entity.tfcastikorcarts.plow.pink_ivory": "Pink Ivory плуг", + "entity.tfcastikorcarts.plow.poplar": "Poplar плуг", + "entity.tfcastikorcarts.plow.purpleheart": "Purpleheart плуг", + "entity.tfcastikorcarts.plow.purple_ipe": "Purple Ipe плуг", + "entity.tfcastikorcarts.plow.purple_jacaranda": "Purple Jacaranda плуг", + "entity.tfcastikorcarts.plow.quince": "Quince плуг", + "entity.tfcastikorcarts.plow.rainbow_eucalyptus": "Rainbow Eucalyptus плуг", + "entity.tfcastikorcarts.plow.redwood": "Redwood плуг", + "entity.tfcastikorcarts.plow.red_cedar": "Red Cedar плуг", + "entity.tfcastikorcarts.plow.red_cypress": "Red Cypress плуг", + "entity.tfcastikorcarts.plow.red_elm": "Red Elm плуг", + "entity.tfcastikorcarts.plow.red_mangrove": "Red Mangrove плуг", + "entity.tfcastikorcarts.plow.rowan": "Rowan плуг", + "entity.tfcastikorcarts.plow.rubber_fig": "Rubber Fig плуг", + "entity.tfcastikorcarts.plow.sloe": "Sloe плуг", + "entity.tfcastikorcarts.plow.snow_gum_eucalyptus": "Snow Gum Eucalyptus плуг", + "entity.tfcastikorcarts.plow.sorb": "Sorb плуг", + "entity.tfcastikorcarts.plow.sweetgum": "Sweetgum плуг", + "entity.tfcastikorcarts.plow.syzygium": "Syzygium плуг", + "entity.tfcastikorcarts.plow.teak": "Teak плуг", + "entity.tfcastikorcarts.plow.walnut": "Walnut плуг", + "entity.tfcastikorcarts.plow.wenge": "Wenge плуг", + "entity.tfcastikorcarts.plow.whitebeam": "Whitebeam плуг", + "entity.tfcastikorcarts.plow.white_cherry_blossom": "White Cherry Blossom плуг", + "entity.tfcastikorcarts.plow.white_elm": "White Elm плуг", + "entity.tfcastikorcarts.plow.white_ipe": "White Ipe плуг", + "entity.tfcastikorcarts.plow.white_jacaranda": "White Jacaranda плуг", + "entity.tfcastikorcarts.plow.white_mangrove": "White Mangrove плуг", + "entity.tfcastikorcarts.plow.yellow_ipe": "Yellow Ipe плуг", + "entity.tfcastikorcarts.plow.yellow_jacaranda": "Yellow Jacaranda плуг", + "entity.tfcastikorcarts.plow.yellow_meranti": "Yellow Meranti плуг", + "entity.tfcastikorcarts.plow.yew": "Yew плуг", + "entity.tfcastikorcarts.plow.zebrawood": "Zebrawood плуг", + "entity.tfcastikorcarts.animal_cart.acacia": "Акациевый скотовоз", + "entity.tfcastikorcarts.animal_cart.ash": "Ясеневый скотовоз", + "entity.tfcastikorcarts.animal_cart.aspen": "Осиновый скотовоз", + "entity.tfcastikorcarts.animal_cart.birch": "Берёзовый скотовоз", + "entity.tfcastikorcarts.animal_cart.blackwood": "Гренадиловый скотовоз", + "entity.tfcastikorcarts.animal_cart.chestnut": "Каштановый скотовоз", + "entity.tfcastikorcarts.animal_cart.douglas_fir": "Скотовоз из дугласовой пихты", + "entity.tfcastikorcarts.animal_cart.hickory": "Ореховый скотовоз", + "entity.tfcastikorcarts.animal_cart.kapok": "Скотовоз из сейбы", + "entity.tfcastikorcarts.animal_cart.maple": "Кленовый скотовоз", + "entity.tfcastikorcarts.animal_cart.oak": "Дубовый скотовоз", + "entity.tfcastikorcarts.animal_cart.palm": "Пальмовый скотовоз", + "entity.tfcastikorcarts.animal_cart.pine": "Сосновый скотовоз", + "entity.tfcastikorcarts.animal_cart.rosewood": "Палисандровый скотовоз", + "entity.tfcastikorcarts.animal_cart.sequoia": "Секвойный скотовоз", + "entity.tfcastikorcarts.animal_cart.spruce": "Еловый скотовоз", + "entity.tfcastikorcarts.animal_cart.sycamore": "Платановый скотовоз", + "entity.tfcastikorcarts.animal_cart.white_cedar": "Скотовоз из белого кедра", + "entity.tfcastikorcarts.animal_cart.willow": "Ивовый скотовоз", + "entity.tfcastikorcarts.animal_cart.african_padauk": "African Padauk скотовоз", + "entity.tfcastikorcarts.animal_cart.alder": "Alder скотовоз", + "entity.tfcastikorcarts.animal_cart.angelim": "Angelim скотовоз", + "entity.tfcastikorcarts.animal_cart.argyle_eucalyptus": "Argyle Eucalyptus скотовоз", + "entity.tfcastikorcarts.animal_cart.bald_cypress": "Bald Cypress скотовоз", + "entity.tfcastikorcarts.animal_cart.baobab": "Baobab скотовоз", + "entity.tfcastikorcarts.animal_cart.beech": "Beech скотовоз", + "entity.tfcastikorcarts.animal_cart.black_walnut": "Black Walnut скотовоз", + "entity.tfcastikorcarts.animal_cart.black_willow": "Black Willow скотовоз", + "entity.tfcastikorcarts.animal_cart.brazilwood": "Brazilwood скотовоз", + "entity.tfcastikorcarts.animal_cart.butternut": "Butternut скотовоз", + "entity.tfcastikorcarts.animal_cart.buxus": "Buxus скотовоз", + "entity.tfcastikorcarts.animal_cart.cocobolo": "Cocobolo скотовоз", + "entity.tfcastikorcarts.animal_cart.common_oak": "Common Oak скотовоз", + "entity.tfcastikorcarts.animal_cart.cypress": "Cypress скотовоз", + "entity.tfcastikorcarts.animal_cart.ebony": "Ebony скотовоз", + "entity.tfcastikorcarts.animal_cart.fever": "Fever скотовоз", + "entity.tfcastikorcarts.animal_cart.ghaf": "Ghaf скотовоз", + "entity.tfcastikorcarts.animal_cart.ginkgo": "Ginkgo скотовоз", + "entity.tfcastikorcarts.animal_cart.greenheart": "Greenheart скотовоз", + "entity.tfcastikorcarts.animal_cart.hawthorn": "Hawthorn скотовоз", + "entity.tfcastikorcarts.animal_cart.hazel": "Hazel скотовоз", + "entity.tfcastikorcarts.animal_cart.hemlock": "Hemlock скотовоз", + "entity.tfcastikorcarts.animal_cart.holly": "Holly скотовоз", + "entity.tfcastikorcarts.animal_cart.hornbeam": "Hornbeam скотовоз", + "entity.tfcastikorcarts.animal_cart.iroko": "Iroko скотовоз", + "entity.tfcastikorcarts.animal_cart.ironwood": "Ironwood скотовоз", + "entity.tfcastikorcarts.animal_cart.jabuticabeira": "Jabuticabeira скотовоз", + "entity.tfcastikorcarts.animal_cart.joshua": "Joshua скотовоз", + "entity.tfcastikorcarts.animal_cart.juniper": "Juniper скотовоз", + "entity.tfcastikorcarts.animal_cart.kauri": "Kauri скотовоз", + "entity.tfcastikorcarts.animal_cart.laurel": "Laurel скотовоз", + "entity.tfcastikorcarts.animal_cart.larch": "Larch скотовоз", + "entity.tfcastikorcarts.animal_cart.limba": "Limba скотовоз", + "entity.tfcastikorcarts.animal_cart.locust": "Locust скотовоз", + "entity.tfcastikorcarts.animal_cart.logwood": "Logwood скотовоз", + "entity.tfcastikorcarts.animal_cart.maclura": "Maclura скотовоз", + "entity.tfcastikorcarts.animal_cart.mahoe": "Mahoe скотовоз", + "entity.tfcastikorcarts.animal_cart.mahogany": "Mahogany скотовоз", + "entity.tfcastikorcarts.animal_cart.marblewood": "Marblewood скотовоз", + "entity.tfcastikorcarts.animal_cart.medlar": "Medlar скотовоз", + "entity.tfcastikorcarts.animal_cart.messmate": "Messmate скотовоз", + "entity.tfcastikorcarts.animal_cart.mountain_ash": "Mountain Ash скотовоз", + "entity.tfcastikorcarts.animal_cart.mulberry": "Mulberry скотовоз", + "entity.tfcastikorcarts.animal_cart.nordmann_fir": "Nordmann Fir скотовоз", + "entity.tfcastikorcarts.animal_cart.norway_spruce": "Norway Spruce скотовоз", + "entity.tfcastikorcarts.animal_cart.pear": "Pear скотовоз", + "entity.tfcastikorcarts.animal_cart.persimmon": "Persimmon скотовоз", + "entity.tfcastikorcarts.animal_cart.pink_cherry_blossom": "Pink Cherry Blossom скотовоз", + "entity.tfcastikorcarts.animal_cart.pink_ipe": "Pink Ipe скотовоз", + "entity.tfcastikorcarts.animal_cart.pink_ivory": "Pink Ivory скотовоз", + "entity.tfcastikorcarts.animal_cart.poplar": "Poplar скотовоз", + "entity.tfcastikorcarts.animal_cart.purpleheart": "Purpleheart скотовоз", + "entity.tfcastikorcarts.animal_cart.purple_ipe": "Purple Ipe скотовоз", + "entity.tfcastikorcarts.animal_cart.purple_jacaranda": "Purple Jacaranda скотовоз", + "entity.tfcastikorcarts.animal_cart.quince": "Quince скотовоз", + "entity.tfcastikorcarts.animal_cart.rainbow_eucalyptus": "Rainbow Eucalyptus скотовоз", + "entity.tfcastikorcarts.animal_cart.redwood": "Redwood скотовоз", + "entity.tfcastikorcarts.animal_cart.red_cedar": "Red Cedar скотовоз", + "entity.tfcastikorcarts.animal_cart.red_cypress": "Red Cypress скотовоз", + "entity.tfcastikorcarts.animal_cart.red_elm": "Red Elm скотовоз", + "entity.tfcastikorcarts.animal_cart.red_mangrove": "Red Mangrove скотовоз", + "entity.tfcastikorcarts.animal_cart.rowan": "Rowan скотовоз", + "entity.tfcastikorcarts.animal_cart.rubber_fig": "Rubber Fig скотовоз", + "entity.tfcastikorcarts.animal_cart.sloe": "Sloe скотовоз", + "entity.tfcastikorcarts.animal_cart.snow_gum_eucalyptus": "Snow Gum Eucalyptus скотовоз", + "entity.tfcastikorcarts.animal_cart.sorb": "Sorb скотовоз", + "entity.tfcastikorcarts.animal_cart.sweetgum": "Sweetgum скотовоз", + "entity.tfcastikorcarts.animal_cart.syzygium": "Syzygium скотовоз", + "entity.tfcastikorcarts.animal_cart.teak": "Teak скотовоз", + "entity.tfcastikorcarts.animal_cart.walnut": "Walnut скотовоз", + "entity.tfcastikorcarts.animal_cart.wenge": "Wenge скотовоз", + "entity.tfcastikorcarts.animal_cart.whitebeam": "Whitebeam скотовоз", + "entity.tfcastikorcarts.animal_cart.white_cherry_blossom": "White Cherry Blossom скотовоз", + "entity.tfcastikorcarts.animal_cart.white_elm": "White Elm скотовоз", + "entity.tfcastikorcarts.animal_cart.white_ipe": "White Ipe скотовоз", + "entity.tfcastikorcarts.animal_cart.white_jacaranda": "White Jacaranda скотовоз", + "entity.tfcastikorcarts.animal_cart.white_mangrove": "White Mangrove скотовоз", + "entity.tfcastikorcarts.animal_cart.yellow_ipe": "Yellow Ipe скотовоз", + "entity.tfcastikorcarts.animal_cart.yellow_jacaranda": "Yellow Jacaranda скотовоз", + "entity.tfcastikorcarts.animal_cart.yellow_meranti": "Yellow Meranti скотовоз", + "entity.tfcastikorcarts.animal_cart.yew": "Yew скотовоз", + "entity.tfcastikorcarts.animal_cart.zebrawood": "Zebrawood скотовоз", + "entity.tfcastikorcarts.postilion.acacia": "Acacia Postilion", + "entity.tfcastikorcarts.postilion.ash": "Ash Postilion", + "entity.tfcastikorcarts.postilion.aspen": "Aspen Postilion", + "entity.tfcastikorcarts.postilion.birch": "Birch Postilion", + "entity.tfcastikorcarts.postilion.blackwood": "Blackwood Postilion", + "entity.tfcastikorcarts.postilion.chestnut": "Chestnut Postilion", + "entity.tfcastikorcarts.postilion.douglas_fir": "Douglas Fir Postilion", + "entity.tfcastikorcarts.postilion.hickory": "Hickory Postilion", + "entity.tfcastikorcarts.postilion.kapok": "Kapok Postilion", + "entity.tfcastikorcarts.postilion.maple": "Maple Postilion", + "entity.tfcastikorcarts.postilion.oak": "Oak Postilion", + "entity.tfcastikorcarts.postilion.palm": "Palm Postilion", + "entity.tfcastikorcarts.postilion.pine": "Pine Postilion", + "entity.tfcastikorcarts.postilion.rosewood": "Rosewood Postilion", + "entity.tfcastikorcarts.postilion.sequoia": "Sequoia Postilion", + "entity.tfcastikorcarts.postilion.spruce": "Spruce Postilion", + "entity.tfcastikorcarts.postilion.sycamore": "Sycamore Postilion", + "entity.tfcastikorcarts.postilion.white_cedar": "White Cedar Postilion", + "entity.tfcastikorcarts.postilion.willow": "Willow Postilion", + "entity.tfcastikorcarts.postilion.african_padauk": "African Padauk Postilion", + "entity.tfcastikorcarts.postilion.alder": "Alder Postilion", + "entity.tfcastikorcarts.postilion.angelim": "Angelim Postilion", + "entity.tfcastikorcarts.postilion.argyle_eucalyptus": "Argyle Eucalyptus Postilion", + "entity.tfcastikorcarts.postilion.bald_cypress": "Bald Cypress Postilion", + "entity.tfcastikorcarts.postilion.baobab": "Baobab Postilion", + "entity.tfcastikorcarts.postilion.beech": "Beech Postilion", + "entity.tfcastikorcarts.postilion.black_walnut": "Black Walnut Postilion", + "entity.tfcastikorcarts.postilion.black_willow": "Black Willow Postilion", + "entity.tfcastikorcarts.postilion.brazilwood": "Brazilwood Postilion", + "entity.tfcastikorcarts.postilion.butternut": "Butternut Postilion", + "entity.tfcastikorcarts.postilion.buxus": "Buxus Postilion", + "entity.tfcastikorcarts.postilion.cocobolo": "Cocobolo Postilion", + "entity.tfcastikorcarts.postilion.common_oak": "Common Oak Postilion", + "entity.tfcastikorcarts.postilion.cypress": "Cypress Postilion", + "entity.tfcastikorcarts.postilion.ebony": "Ebony Postilion", + "entity.tfcastikorcarts.postilion.fever": "Fever Postilion", + "entity.tfcastikorcarts.postilion.ghaf": "Ghaf Postilion", + "entity.tfcastikorcarts.postilion.ginkgo": "Ginkgo Postilion", + "entity.tfcastikorcarts.postilion.greenheart": "Greenheart Postilion", + "entity.tfcastikorcarts.postilion.hawthorn": "Hawthorn Postilion", + "entity.tfcastikorcarts.postilion.hazel": "Hazel Postilion", + "entity.tfcastikorcarts.postilion.hemlock": "Hemlock Postilion", + "entity.tfcastikorcarts.postilion.holly": "Holly Postilion", + "entity.tfcastikorcarts.postilion.hornbeam": "Hornbeam Postilion", + "entity.tfcastikorcarts.postilion.iroko": "Iroko Postilion", + "entity.tfcastikorcarts.postilion.ironwood": "Ironwood Postilion", + "entity.tfcastikorcarts.postilion.jabuticabeira": "Jabuticabeira Postilion", + "entity.tfcastikorcarts.postilion.joshua": "Joshua Postilion", + "entity.tfcastikorcarts.postilion.juniper": "Juniper Postilion", + "entity.tfcastikorcarts.postilion.kauri": "Kauri Postilion", + "entity.tfcastikorcarts.postilion.laurel": "Laurel Postilion", + "entity.tfcastikorcarts.postilion.larch": "Larch Postilion", + "entity.tfcastikorcarts.postilion.limba": "Limba Postilion", + "entity.tfcastikorcarts.postilion.locust": "Locust Postilion", + "entity.tfcastikorcarts.postilion.logwood": "Logwood Postilion", + "entity.tfcastikorcarts.postilion.maclura": "Maclura Postilion", + "entity.tfcastikorcarts.postilion.mahoe": "Mahoe Postilion", + "entity.tfcastikorcarts.postilion.mahogany": "Mahogany Postilion", + "entity.tfcastikorcarts.postilion.marblewood": "Marblewood Postilion", + "entity.tfcastikorcarts.postilion.medlar": "Medlar Postilion", + "entity.tfcastikorcarts.postilion.messmate": "Messmate Postilion", + "entity.tfcastikorcarts.postilion.mountain_ash": "Mountain Ash Postilion", + "entity.tfcastikorcarts.postilion.mulberry": "Mulberry Postilion", + "entity.tfcastikorcarts.postilion.nordmann_fir": "Nordmann Fir Postilion", + "entity.tfcastikorcarts.postilion.norway_spruce": "Norway Spruce Postilion", + "entity.tfcastikorcarts.postilion.pear": "Pear Postilion", + "entity.tfcastikorcarts.postilion.persimmon": "Persimmon Postilion", + "entity.tfcastikorcarts.postilion.pink_cherry_blossom": "Pink Cherry Blossom Postilion", + "entity.tfcastikorcarts.postilion.pink_ipe": "Pink Ipe Postilion", + "entity.tfcastikorcarts.postilion.pink_ivory": "Pink Ivory Postilion", + "entity.tfcastikorcarts.postilion.poplar": "Poplar Postilion", + "entity.tfcastikorcarts.postilion.purpleheart": "Purpleheart Postilion", + "entity.tfcastikorcarts.postilion.purple_ipe": "Purple Ipe Postilion", + "entity.tfcastikorcarts.postilion.purple_jacaranda": "Purple Jacaranda Postilion", + "entity.tfcastikorcarts.postilion.quince": "Quince Postilion", + "entity.tfcastikorcarts.postilion.rainbow_eucalyptus": "Rainbow Eucalyptus Postilion", + "entity.tfcastikorcarts.postilion.redwood": "Redwood Postilion", + "entity.tfcastikorcarts.postilion.red_cedar": "Red Cedar Postilion", + "entity.tfcastikorcarts.postilion.red_cypress": "Red Cypress Postilion", + "entity.tfcastikorcarts.postilion.red_elm": "Red Elm Postilion", + "entity.tfcastikorcarts.postilion.red_mangrove": "Red Mangrove Postilion", + "entity.tfcastikorcarts.postilion.rowan": "Rowan Postilion", + "entity.tfcastikorcarts.postilion.rubber_fig": "Rubber Fig Postilion", + "entity.tfcastikorcarts.postilion.sloe": "Sloe Postilion", + "entity.tfcastikorcarts.postilion.snow_gum_eucalyptus": "Snow Gum Eucalyptus Postilion", + "entity.tfcastikorcarts.postilion.sorb": "Sorb Postilion", + "entity.tfcastikorcarts.postilion.sweetgum": "Sweetgum Postilion", + "entity.tfcastikorcarts.postilion.syzygium": "Syzygium Postilion", + "entity.tfcastikorcarts.postilion.teak": "Teak Postilion", + "entity.tfcastikorcarts.postilion.walnut": "Walnut Postilion", + "entity.tfcastikorcarts.postilion.wenge": "Wenge Postilion", + "entity.tfcastikorcarts.postilion.whitebeam": "Whitebeam Postilion", + "entity.tfcastikorcarts.postilion.white_cherry_blossom": "White Cherry Blossom Postilion", + "entity.tfcastikorcarts.postilion.white_elm": "White Elm Postilion", + "entity.tfcastikorcarts.postilion.white_ipe": "White Ipe Postilion", + "entity.tfcastikorcarts.postilion.white_jacaranda": "White Jacaranda Postilion", + "entity.tfcastikorcarts.postilion.white_mangrove": "White Mangrove Postilion", + "entity.tfcastikorcarts.postilion.yellow_ipe": "Yellow Ipe Postilion", + "entity.tfcastikorcarts.postilion.yellow_jacaranda": "Yellow Jacaranda Postilion", + "entity.tfcastikorcarts.postilion.yellow_meranti": "Yellow Meranti Postilion", + "entity.tfcastikorcarts.postilion.yew": "Yew Postilion", + "entity.tfcastikorcarts.postilion.zebrawood": "Zebrawood Postilion", + "item.tfcastikorcarts.supply_cart.acacia": "Акациевая грузовая тележка", + "item.tfcastikorcarts.supply_cart.ash": "Ясеневая грузовая тележка", + "item.tfcastikorcarts.supply_cart.aspen": "Осиновая грузовая тележка", + "item.tfcastikorcarts.supply_cart.birch": "Берёзовая грузовая тележка", + "item.tfcastikorcarts.supply_cart.blackwood": "Гренадиловая грузовая тележка", + "item.tfcastikorcarts.supply_cart.chestnut": "Каштановая грузовая тележка", + "item.tfcastikorcarts.supply_cart.douglas_fir": "Грузовая тележка из дугласовой пихты", + "item.tfcastikorcarts.supply_cart.hickory": "Ореховая грузовая тележка", + "item.tfcastikorcarts.supply_cart.kapok": "Грузовая тележка из сейбы", + "item.tfcastikorcarts.supply_cart.maple": "Кленовая грузовая тележка", + "item.tfcastikorcarts.supply_cart.oak": "Дубовая грузовая тележка", + "item.tfcastikorcarts.supply_cart.palm": "Пальмовая грузовая тележка", + "item.tfcastikorcarts.supply_cart.pine": "Сосновая грузовая тележка", + "item.tfcastikorcarts.supply_cart.rosewood": "Палисандровая грузовая тележка", + "item.tfcastikorcarts.supply_cart.sequoia": "Секвойная грузовая тележка", + "item.tfcastikorcarts.supply_cart.spruce": "Еловая грузовая тележка", + "item.tfcastikorcarts.supply_cart.sycamore": "Платановая грузовая тележка", + "item.tfcastikorcarts.supply_cart.white_cedar": "Грузовая тележка из белого кедра", + "item.tfcastikorcarts.supply_cart.willow": "Ивовая грузовая тележка", + "item.tfcastikorcarts.supply_cart.african_padauk": "African Padauk грузовая тележка", + "item.tfcastikorcarts.supply_cart.alder": "Alder грузовая тележка", + "item.tfcastikorcarts.supply_cart.angelim": "Angelim грузовая тележка", + "item.tfcastikorcarts.supply_cart.argyle_eucalyptus": "Argyle Eucalyptus грузовая тележка", + "item.tfcastikorcarts.supply_cart.bald_cypress": "Bald Cypress грузовая тележка", + "item.tfcastikorcarts.supply_cart.baobab": "Baobab грузовая тележка", + "item.tfcastikorcarts.supply_cart.beech": "Beech грузовая тележка", + "item.tfcastikorcarts.supply_cart.black_walnut": "Black Walnut грузовая тележка", + "item.tfcastikorcarts.supply_cart.black_willow": "Black Willow грузовая тележка", + "item.tfcastikorcarts.supply_cart.brazilwood": "Brazilwood грузовая тележка", + "item.tfcastikorcarts.supply_cart.butternut": "Butternut грузовая тележка", + "item.tfcastikorcarts.supply_cart.buxus": "Buxus грузовая тележка", + "item.tfcastikorcarts.supply_cart.cocobolo": "Cocobolo грузовая тележка", + "item.tfcastikorcarts.supply_cart.common_oak": "Common Oak грузовая тележка", + "item.tfcastikorcarts.supply_cart.cypress": "Cypress грузовая тележка", + "item.tfcastikorcarts.supply_cart.ebony": "Ebony грузовая тележка", + "item.tfcastikorcarts.supply_cart.fever": "Fever грузовая тележка", + "item.tfcastikorcarts.supply_cart.ghaf": "Ghaf грузовая тележка", + "item.tfcastikorcarts.supply_cart.ginkgo": "Ginkgo грузовая тележка", + "item.tfcastikorcarts.supply_cart.greenheart": "Greenheart грузовая тележка", + "item.tfcastikorcarts.supply_cart.hawthorn": "Hawthorn грузовая тележка", + "item.tfcastikorcarts.supply_cart.hazel": "Hazel грузовая тележка", + "item.tfcastikorcarts.supply_cart.hemlock": "Hemlock грузовая тележка", + "item.tfcastikorcarts.supply_cart.holly": "Holly грузовая тележка", + "item.tfcastikorcarts.supply_cart.hornbeam": "Hornbeam грузовая тележка", + "item.tfcastikorcarts.supply_cart.iroko": "Iroko грузовая тележка", + "item.tfcastikorcarts.supply_cart.ironwood": "Ironwood грузовая тележка", + "item.tfcastikorcarts.supply_cart.jabuticabeira": "Jabuticabeira грузовая тележка", + "item.tfcastikorcarts.supply_cart.joshua": "Joshua грузовая тележка", + "item.tfcastikorcarts.supply_cart.juniper": "Juniper грузовая тележка", + "item.tfcastikorcarts.supply_cart.kauri": "Kauri грузовая тележка", + "item.tfcastikorcarts.supply_cart.laurel": "Laurel грузовая тележка", + "item.tfcastikorcarts.supply_cart.larch": "Larch грузовая тележка", + "item.tfcastikorcarts.supply_cart.limba": "Limba грузовая тележка", + "item.tfcastikorcarts.supply_cart.locust": "Locust грузовая тележка", + "item.tfcastikorcarts.supply_cart.logwood": "Logwood грузовая тележка", + "item.tfcastikorcarts.supply_cart.maclura": "Maclura грузовая тележка", + "item.tfcastikorcarts.supply_cart.mahoe": "Mahoe грузовая тележка", + "item.tfcastikorcarts.supply_cart.mahogany": "Mahogany грузовая тележка", + "item.tfcastikorcarts.supply_cart.marblewood": "Marblewood грузовая тележка", + "item.tfcastikorcarts.supply_cart.medlar": "Medlar грузовая тележка", + "item.tfcastikorcarts.supply_cart.messmate": "Messmate грузовая тележка", + "item.tfcastikorcarts.supply_cart.mountain_ash": "Mountain Ash грузовая тележка", + "item.tfcastikorcarts.supply_cart.mulberry": "Mulberry грузовая тележка", + "item.tfcastikorcarts.supply_cart.nordmann_fir": "Nordmann Fir грузовая тележка", + "item.tfcastikorcarts.supply_cart.norway_spruce": "Norway Spruce грузовая тележка", + "item.tfcastikorcarts.supply_cart.pear": "Pear грузовая тележка", + "item.tfcastikorcarts.supply_cart.persimmon": "Persimmon грузовая тележка", + "item.tfcastikorcarts.supply_cart.pink_cherry_blossom": "Pink Cherry Blossom грузовая тележка", + "item.tfcastikorcarts.supply_cart.pink_ipe": "Pink Ipe грузовая тележка", + "item.tfcastikorcarts.supply_cart.pink_ivory": "Pink Ivory грузовая тележка", + "item.tfcastikorcarts.supply_cart.poplar": "Poplar грузовая тележка", + "item.tfcastikorcarts.supply_cart.purpleheart": "Purpleheart грузовая тележка", + "item.tfcastikorcarts.supply_cart.purple_ipe": "Purple Ipe грузовая тележка", + "item.tfcastikorcarts.supply_cart.purple_jacaranda": "Purple Jacaranda грузовая тележка", + "item.tfcastikorcarts.supply_cart.quince": "Quince грузовая тележка", + "item.tfcastikorcarts.supply_cart.rainbow_eucalyptus": "Rainbow Eucalyptus грузовая тележка", + "item.tfcastikorcarts.supply_cart.redwood": "Redwood грузовая тележка", + "item.tfcastikorcarts.supply_cart.red_cedar": "Red Cedar грузовая тележка", + "item.tfcastikorcarts.supply_cart.red_cypress": "Red Cypress грузовая тележка", + "item.tfcastikorcarts.supply_cart.red_elm": "Red Elm грузовая тележка", + "item.tfcastikorcarts.supply_cart.red_mangrove": "Red Mangrove грузовая тележка", + "item.tfcastikorcarts.supply_cart.rowan": "Rowan грузовая тележка", + "item.tfcastikorcarts.supply_cart.rubber_fig": "Rubber Fig грузовая тележка", + "item.tfcastikorcarts.supply_cart.sloe": "Sloe грузовая тележка", + "item.tfcastikorcarts.supply_cart.snow_gum_eucalyptus": "Snow Gum Eucalyptus грузовая тележка", + "item.tfcastikorcarts.supply_cart.sorb": "Sorb грузовая тележка", + "item.tfcastikorcarts.supply_cart.sweetgum": "Sweetgum грузовая тележка", + "item.tfcastikorcarts.supply_cart.syzygium": "Syzygium грузовая тележка", + "item.tfcastikorcarts.supply_cart.teak": "Teak грузовая тележка", + "item.tfcastikorcarts.supply_cart.walnut": "Walnut грузовая тележка", + "item.tfcastikorcarts.supply_cart.wenge": "Wenge грузовая тележка", + "item.tfcastikorcarts.supply_cart.whitebeam": "Whitebeam грузовая тележка", + "item.tfcastikorcarts.supply_cart.white_cherry_blossom": "White Cherry Blossom грузовая тележка", + "item.tfcastikorcarts.supply_cart.white_elm": "White Elm грузовая тележка", + "item.tfcastikorcarts.supply_cart.white_ipe": "White Ipe грузовая тележка", + "item.tfcastikorcarts.supply_cart.white_jacaranda": "White Jacaranda грузовая тележка", + "item.tfcastikorcarts.supply_cart.white_mangrove": "White Mangrove грузовая тележка", + "item.tfcastikorcarts.supply_cart.yellow_ipe": "Yellow Ipe грузовая тележка", + "item.tfcastikorcarts.supply_cart.yellow_jacaranda": "Yellow Jacaranda грузовая тележка", + "item.tfcastikorcarts.supply_cart.yellow_meranti": "Yellow Meranti грузовая тележка", + "item.tfcastikorcarts.supply_cart.yew": "Yew грузовая тележка", + "item.tfcastikorcarts.supply_cart.zebrawood": "Zebrawood грузовая тележка", + "item.tfcastikorcarts.plow.acacia": "Акациевый плуг", + "item.tfcastikorcarts.plow.ash": "Ясеневый плуг", + "item.tfcastikorcarts.plow.aspen": "Осиновый плуг", + "item.tfcastikorcarts.plow.birch": "Берёзовый плуг", + "item.tfcastikorcarts.plow.blackwood": "Гренадиловый плуг", + "item.tfcastikorcarts.plow.chestnut": "Каштановый плуг", + "item.tfcastikorcarts.plow.douglas_fir": "Плуг из дугласовой пихты", + "item.tfcastikorcarts.plow.hickory": "Ореховый плуг", + "item.tfcastikorcarts.plow.kapok": "Плуг из сейбы", + "item.tfcastikorcarts.plow.maple": "Кленовый плуг", + "item.tfcastikorcarts.plow.oak": "Дубовый плуг", + "item.tfcastikorcarts.plow.palm": "Пальмовый плуг", + "item.tfcastikorcarts.plow.pine": "Сосновый плуг", + "item.tfcastikorcarts.plow.rosewood": "Палисандровый плуг", + "item.tfcastikorcarts.plow.sequoia": "Секвойный плуг", + "item.tfcastikorcarts.plow.spruce": "Еловый плуг", + "item.tfcastikorcarts.plow.sycamore": "Платановый плуг", + "item.tfcastikorcarts.plow.white_cedar": "Плуг из белого кедра", + "item.tfcastikorcarts.plow.willow": "Ивовый плуг", + "item.tfcastikorcarts.plow.african_padauk": "African Padauk плуг", + "item.tfcastikorcarts.plow.alder": "Alder плуг", + "item.tfcastikorcarts.plow.angelim": "Angelim плуг", + "item.tfcastikorcarts.plow.argyle_eucalyptus": "Argyle Eucalyptus плуг", + "item.tfcastikorcarts.plow.bald_cypress": "Bald Cypress плуг", + "item.tfcastikorcarts.plow.baobab": "Baobab плуг", + "item.tfcastikorcarts.plow.beech": "Beech плуг", + "item.tfcastikorcarts.plow.black_walnut": "Black Walnut плуг", + "item.tfcastikorcarts.plow.black_willow": "Black Willow плуг", + "item.tfcastikorcarts.plow.brazilwood": "Brazilwood плуг", + "item.tfcastikorcarts.plow.butternut": "Butternut плуг", + "item.tfcastikorcarts.plow.buxus": "Buxus плуг", + "item.tfcastikorcarts.plow.cocobolo": "Cocobolo плуг", + "item.tfcastikorcarts.plow.common_oak": "Common Oak плуг", + "item.tfcastikorcarts.plow.cypress": "Cypress плуг", + "item.tfcastikorcarts.plow.ebony": "Ebony плуг", + "item.tfcastikorcarts.plow.fever": "Fever плуг", + "item.tfcastikorcarts.plow.ghaf": "Ghaf плуг", + "item.tfcastikorcarts.plow.ginkgo": "Ginkgo плуг", + "item.tfcastikorcarts.plow.greenheart": "Greenheart плуг", + "item.tfcastikorcarts.plow.hawthorn": "Hawthorn плуг", + "item.tfcastikorcarts.plow.hazel": "Hazel плуг", + "item.tfcastikorcarts.plow.hemlock": "Hemlock плуг", + "item.tfcastikorcarts.plow.holly": "Holly плуг", + "item.tfcastikorcarts.plow.hornbeam": "Hornbeam плуг", + "item.tfcastikorcarts.plow.iroko": "Iroko плуг", + "item.tfcastikorcarts.plow.ironwood": "Ironwood плуг", + "item.tfcastikorcarts.plow.jabuticabeira": "Jabuticabeira плуг", + "item.tfcastikorcarts.plow.joshua": "Joshua плуг", + "item.tfcastikorcarts.plow.juniper": "Juniper плуг", + "item.tfcastikorcarts.plow.kauri": "Kauri плуг", + "item.tfcastikorcarts.plow.laurel": "Laurel плуг", + "item.tfcastikorcarts.plow.larch": "Larch плуг", + "item.tfcastikorcarts.plow.limba": "Limba плуг", + "item.tfcastikorcarts.plow.locust": "Locust плуг", + "item.tfcastikorcarts.plow.logwood": "Logwood плуг", + "item.tfcastikorcarts.plow.maclura": "Maclura плуг", + "item.tfcastikorcarts.plow.mahoe": "Mahoe плуг", + "item.tfcastikorcarts.plow.mahogany": "Mahogany плуг", + "item.tfcastikorcarts.plow.marblewood": "Marblewood плуг", + "item.tfcastikorcarts.plow.medlar": "Medlar плуг", + "item.tfcastikorcarts.plow.messmate": "Messmate плуг", + "item.tfcastikorcarts.plow.mountain_ash": "Mountain Ash плуг", + "item.tfcastikorcarts.plow.mulberry": "Mulberry плуг", + "item.tfcastikorcarts.plow.nordmann_fir": "Nordmann Fir плуг", + "item.tfcastikorcarts.plow.norway_spruce": "Norway Spruce плуг", + "item.tfcastikorcarts.plow.pear": "Pear плуг", + "item.tfcastikorcarts.plow.persimmon": "Persimmon плуг", + "item.tfcastikorcarts.plow.pink_cherry_blossom": "Pink Cherry Blossom плуг", + "item.tfcastikorcarts.plow.pink_ipe": "Pink Ipe плуг", + "item.tfcastikorcarts.plow.pink_ivory": "Pink Ivory плуг", + "item.tfcastikorcarts.plow.poplar": "Poplar плуг", + "item.tfcastikorcarts.plow.purpleheart": "Purpleheart плуг", + "item.tfcastikorcarts.plow.purple_ipe": "Purple Ipe плуг", + "item.tfcastikorcarts.plow.purple_jacaranda": "Purple Jacaranda плуг", + "item.tfcastikorcarts.plow.quince": "Quince плуг", + "item.tfcastikorcarts.plow.rainbow_eucalyptus": "Rainbow Eucalyptus плуг", + "item.tfcastikorcarts.plow.redwood": "Redwood плуг", + "item.tfcastikorcarts.plow.red_cedar": "Red Cedar плуг", + "item.tfcastikorcarts.plow.red_cypress": "Red Cypress плуг", + "item.tfcastikorcarts.plow.red_elm": "Red Elm плуг", + "item.tfcastikorcarts.plow.red_mangrove": "Red Mangrove плуг", + "item.tfcastikorcarts.plow.rowan": "Rowan плуг", + "item.tfcastikorcarts.plow.rubber_fig": "Rubber Fig плуг", + "item.tfcastikorcarts.plow.sloe": "Sloe плуг", + "item.tfcastikorcarts.plow.snow_gum_eucalyptus": "Snow Gum Eucalyptus плуг", + "item.tfcastikorcarts.plow.sorb": "Sorb плуг", + "item.tfcastikorcarts.plow.sweetgum": "Sweetgum плуг", + "item.tfcastikorcarts.plow.syzygium": "Syzygium плуг", + "item.tfcastikorcarts.plow.teak": "Teak плуг", + "item.tfcastikorcarts.plow.walnut": "Walnut плуг", + "item.tfcastikorcarts.plow.wenge": "Wenge плуг", + "item.tfcastikorcarts.plow.whitebeam": "Whitebeam плуг", + "item.tfcastikorcarts.plow.white_cherry_blossom": "White Cherry Blossom плуг", + "item.tfcastikorcarts.plow.white_elm": "White Elm плуг", + "item.tfcastikorcarts.plow.white_ipe": "White Ipe плуг", + "item.tfcastikorcarts.plow.white_jacaranda": "White Jacaranda плуг", + "item.tfcastikorcarts.plow.white_mangrove": "White Mangrove плуг", + "item.tfcastikorcarts.plow.yellow_ipe": "Yellow Ipe плуг", + "item.tfcastikorcarts.plow.yellow_jacaranda": "Yellow Jacaranda плуг", + "item.tfcastikorcarts.plow.yellow_meranti": "Yellow Meranti плуг", + "item.tfcastikorcarts.plow.yew": "Yew плуг", + "item.tfcastikorcarts.plow.zebrawood": "Zebrawood плуг", + "item.tfcastikorcarts.animal_cart.acacia": "Акациевый скотовоз", + "item.tfcastikorcarts.animal_cart.ash": "Ясеневый скотовоз", + "item.tfcastikorcarts.animal_cart.aspen": "Осиновый скотовоз", + "item.tfcastikorcarts.animal_cart.birch": "Берёзовый скотовоз", + "item.tfcastikorcarts.animal_cart.blackwood": "Гренадиловый скотовоз", + "item.tfcastikorcarts.animal_cart.chestnut": "Каштановый скотовоз", + "item.tfcastikorcarts.animal_cart.douglas_fir": "Скотовоз из дугласовой пихты", + "item.tfcastikorcarts.animal_cart.hickory": "Ореховый скотовоз", + "item.tfcastikorcarts.animal_cart.kapok": "Скотовоз из сейбы", + "item.tfcastikorcarts.animal_cart.maple": "Кленовый скотовоз", + "item.tfcastikorcarts.animal_cart.oak": "Дубовый скотовоз", + "item.tfcastikorcarts.animal_cart.palm": "Пальмовый скотовоз", + "item.tfcastikorcarts.animal_cart.pine": "Сосновый скотовоз", + "item.tfcastikorcarts.animal_cart.rosewood": "Палисандровый скотовоз", + "item.tfcastikorcarts.animal_cart.sequoia": "Секвойный скотовоз", + "item.tfcastikorcarts.animal_cart.spruce": "Еловый скотовоз", + "item.tfcastikorcarts.animal_cart.sycamore": "Платановый скотовоз", + "item.tfcastikorcarts.animal_cart.white_cedar": "Скотовоз из белого кедра", + "item.tfcastikorcarts.animal_cart.willow": "Ивовый скотовоз", + "item.tfcastikorcarts.animal_cart.african_padauk": "African Padauk скотовоз", + "item.tfcastikorcarts.animal_cart.alder": "Alder скотовоз", + "item.tfcastikorcarts.animal_cart.angelim": "Angelim скотовоз", + "item.tfcastikorcarts.animal_cart.argyle_eucalyptus": "Argyle Eucalyptus скотовоз", + "item.tfcastikorcarts.animal_cart.bald_cypress": "Bald Cypress скотовоз", + "item.tfcastikorcarts.animal_cart.baobab": "Baobab скотовоз", + "item.tfcastikorcarts.animal_cart.beech": "Beech скотовоз", + "item.tfcastikorcarts.animal_cart.black_walnut": "Black Walnut скотовоз", + "item.tfcastikorcarts.animal_cart.black_willow": "Black Willow скотовоз", + "item.tfcastikorcarts.animal_cart.brazilwood": "Brazilwood скотовоз", + "item.tfcastikorcarts.animal_cart.butternut": "Butternut скотовоз", + "item.tfcastikorcarts.animal_cart.buxus": "Buxus скотовоз", + "item.tfcastikorcarts.animal_cart.cocobolo": "Cocobolo скотовоз", + "item.tfcastikorcarts.animal_cart.common_oak": "Common Oak скотовоз", + "item.tfcastikorcarts.animal_cart.cypress": "Cypress скотовоз", + "item.tfcastikorcarts.animal_cart.ebony": "Ebony скотовоз", + "item.tfcastikorcarts.animal_cart.fever": "Fever скотовоз", + "item.tfcastikorcarts.animal_cart.ghaf": "Ghaf скотовоз", + "item.tfcastikorcarts.animal_cart.ginkgo": "Ginkgo скотовоз", + "item.tfcastikorcarts.animal_cart.greenheart": "Greenheart скотовоз", + "item.tfcastikorcarts.animal_cart.hawthorn": "Hawthorn скотовоз", + "item.tfcastikorcarts.animal_cart.hazel": "Hazel скотовоз", + "item.tfcastikorcarts.animal_cart.hemlock": "Hemlock скотовоз", + "item.tfcastikorcarts.animal_cart.holly": "Holly скотовоз", + "item.tfcastikorcarts.animal_cart.hornbeam": "Hornbeam скотовоз", + "item.tfcastikorcarts.animal_cart.iroko": "Iroko скотовоз", + "item.tfcastikorcarts.animal_cart.ironwood": "Ironwood скотовоз", + "item.tfcastikorcarts.animal_cart.jabuticabeira": "Jabuticabeira скотовоз", + "item.tfcastikorcarts.animal_cart.joshua": "Joshua скотовоз", + "item.tfcastikorcarts.animal_cart.juniper": "Juniper скотовоз", + "item.tfcastikorcarts.animal_cart.kauri": "Kauri скотовоз", + "item.tfcastikorcarts.animal_cart.laurel": "Laurel скотовоз", + "item.tfcastikorcarts.animal_cart.larch": "Larch скотовоз", + "item.tfcastikorcarts.animal_cart.limba": "Limba скотовоз", + "item.tfcastikorcarts.animal_cart.locust": "Locust скотовоз", + "item.tfcastikorcarts.animal_cart.logwood": "Logwood скотовоз", + "item.tfcastikorcarts.animal_cart.maclura": "Maclura скотовоз", + "item.tfcastikorcarts.animal_cart.mahoe": "Mahoe скотовоз", + "item.tfcastikorcarts.animal_cart.mahogany": "Mahogany скотовоз", + "item.tfcastikorcarts.animal_cart.marblewood": "Marblewood скотовоз", + "item.tfcastikorcarts.animal_cart.medlar": "Medlar скотовоз", + "item.tfcastikorcarts.animal_cart.messmate": "Messmate скотовоз", + "item.tfcastikorcarts.animal_cart.mountain_ash": "Mountain Ash скотовоз", + "item.tfcastikorcarts.animal_cart.mulberry": "Mulberry скотовоз", + "item.tfcastikorcarts.animal_cart.nordmann_fir": "Nordmann Fir скотовоз", + "item.tfcastikorcarts.animal_cart.norway_spruce": "Norway Spruce скотовоз", + "item.tfcastikorcarts.animal_cart.pear": "Pear скотовоз", + "item.tfcastikorcarts.animal_cart.persimmon": "Persimmon скотовоз", + "item.tfcastikorcarts.animal_cart.pink_cherry_blossom": "Pink Cherry Blossom скотовоз", + "item.tfcastikorcarts.animal_cart.pink_ipe": "Pink Ipe скотовоз", + "item.tfcastikorcarts.animal_cart.pink_ivory": "Pink Ivory скотовоз", + "item.tfcastikorcarts.animal_cart.poplar": "Poplar скотовоз", + "item.tfcastikorcarts.animal_cart.purpleheart": "Purpleheart скотовоз", + "item.tfcastikorcarts.animal_cart.purple_ipe": "Purple Ipe скотовоз", + "item.tfcastikorcarts.animal_cart.purple_jacaranda": "Purple Jacaranda скотовоз", + "item.tfcastikorcarts.animal_cart.quince": "Quince скотовоз", + "item.tfcastikorcarts.animal_cart.rainbow_eucalyptus": "Rainbow Eucalyptus скотовоз", + "item.tfcastikorcarts.animal_cart.redwood": "Redwood скотовоз", + "item.tfcastikorcarts.animal_cart.red_cedar": "Red Cedar скотовоз", + "item.tfcastikorcarts.animal_cart.red_cypress": "Red Cypress скотовоз", + "item.tfcastikorcarts.animal_cart.red_elm": "Red Elm скотовоз", + "item.tfcastikorcarts.animal_cart.red_mangrove": "Red Mangrove скотовоз", + "item.tfcastikorcarts.animal_cart.rowan": "Rowan скотовоз", + "item.tfcastikorcarts.animal_cart.rubber_fig": "Rubber Fig скотовоз", + "item.tfcastikorcarts.animal_cart.sloe": "Sloe скотовоз", + "item.tfcastikorcarts.animal_cart.snow_gum_eucalyptus": "Snow Gum Eucalyptus скотовоз", + "item.tfcastikorcarts.animal_cart.sorb": "Sorb скотовоз", + "item.tfcastikorcarts.animal_cart.sweetgum": "Sweetgum скотовоз", + "item.tfcastikorcarts.animal_cart.syzygium": "Syzygium скотовоз", + "item.tfcastikorcarts.animal_cart.teak": "Teak скотовоз", + "item.tfcastikorcarts.animal_cart.walnut": "Walnut скотовоз", + "item.tfcastikorcarts.animal_cart.wenge": "Wenge скотовоз", + "item.tfcastikorcarts.animal_cart.whitebeam": "Whitebeam скотовоз", + "item.tfcastikorcarts.animal_cart.white_cherry_blossom": "White Cherry Blossom скотовоз", + "item.tfcastikorcarts.animal_cart.white_elm": "White Elm скотовоз", + "item.tfcastikorcarts.animal_cart.white_ipe": "White Ipe скотовоз", + "item.tfcastikorcarts.animal_cart.white_jacaranda": "White Jacaranda скотовоз", + "item.tfcastikorcarts.animal_cart.white_mangrove": "White Mangrove скотовоз", + "item.tfcastikorcarts.animal_cart.yellow_ipe": "Yellow Ipe скотовоз", + "item.tfcastikorcarts.animal_cart.yellow_jacaranda": "Yellow Jacaranda скотовоз", + "item.tfcastikorcarts.animal_cart.yellow_meranti": "Yellow Meranti скотовоз", + "item.tfcastikorcarts.animal_cart.yew": "Yew скотовоз", + "item.tfcastikorcarts.animal_cart.zebrawood": "Zebrawood скотовоз", + "item.tfcastikorcarts.postilion.acacia": "Acacia Postilion", + "item.tfcastikorcarts.postilion.ash": "Ash Postilion", + "item.tfcastikorcarts.postilion.aspen": "Aspen Postilion", + "item.tfcastikorcarts.postilion.birch": "Birch Postilion", + "item.tfcastikorcarts.postilion.blackwood": "Blackwood Postilion", + "item.tfcastikorcarts.postilion.chestnut": "Chestnut Postilion", + "item.tfcastikorcarts.postilion.douglas_fir": "Douglas Fir Postilion", + "item.tfcastikorcarts.postilion.hickory": "Hickory Postilion", + "item.tfcastikorcarts.postilion.kapok": "Kapok Postilion", + "item.tfcastikorcarts.postilion.maple": "Maple Postilion", + "item.tfcastikorcarts.postilion.oak": "Oak Postilion", + "item.tfcastikorcarts.postilion.palm": "Palm Postilion", + "item.tfcastikorcarts.postilion.pine": "Pine Postilion", + "item.tfcastikorcarts.postilion.rosewood": "Rosewood Postilion", + "item.tfcastikorcarts.postilion.sequoia": "Sequoia Postilion", + "item.tfcastikorcarts.postilion.spruce": "Spruce Postilion", + "item.tfcastikorcarts.postilion.sycamore": "Sycamore Postilion", + "item.tfcastikorcarts.postilion.white_cedar": "White Cedar Postilion", + "item.tfcastikorcarts.postilion.willow": "Willow Postilion", + "item.tfcastikorcarts.postilion.african_padauk": "African Padauk Postilion", + "item.tfcastikorcarts.postilion.alder": "Alder Postilion", + "item.tfcastikorcarts.postilion.angelim": "Angelim Postilion", + "item.tfcastikorcarts.postilion.argyle_eucalyptus": "Argyle Eucalyptus Postilion", + "item.tfcastikorcarts.postilion.bald_cypress": "Bald Cypress Postilion", + "item.tfcastikorcarts.postilion.baobab": "Baobab Postilion", + "item.tfcastikorcarts.postilion.beech": "Beech Postilion", + "item.tfcastikorcarts.postilion.black_walnut": "Black Walnut Postilion", + "item.tfcastikorcarts.postilion.black_willow": "Black Willow Postilion", + "item.tfcastikorcarts.postilion.brazilwood": "Brazilwood Postilion", + "item.tfcastikorcarts.postilion.butternut": "Butternut Postilion", + "item.tfcastikorcarts.postilion.buxus": "Buxus Postilion", + "item.tfcastikorcarts.postilion.cocobolo": "Cocobolo Postilion", + "item.tfcastikorcarts.postilion.common_oak": "Common Oak Postilion", + "item.tfcastikorcarts.postilion.cypress": "Cypress Postilion", + "item.tfcastikorcarts.postilion.ebony": "Ebony Postilion", + "item.tfcastikorcarts.postilion.fever": "Fever Postilion", + "item.tfcastikorcarts.postilion.ghaf": "Ghaf Postilion", + "item.tfcastikorcarts.postilion.ginkgo": "Ginkgo Postilion", + "item.tfcastikorcarts.postilion.greenheart": "Greenheart Postilion", + "item.tfcastikorcarts.postilion.hawthorn": "Hawthorn Postilion", + "item.tfcastikorcarts.postilion.hazel": "Hazel Postilion", + "item.tfcastikorcarts.postilion.hemlock": "Hemlock Postilion", + "item.tfcastikorcarts.postilion.holly": "Holly Postilion", + "item.tfcastikorcarts.postilion.hornbeam": "Hornbeam Postilion", + "item.tfcastikorcarts.postilion.iroko": "Iroko Postilion", + "item.tfcastikorcarts.postilion.ironwood": "Ironwood Postilion", + "item.tfcastikorcarts.postilion.jabuticabeira": "Jabuticabeira Postilion", + "item.tfcastikorcarts.postilion.joshua": "Joshua Postilion", + "item.tfcastikorcarts.postilion.juniper": "Juniper Postilion", + "item.tfcastikorcarts.postilion.kauri": "Kauri Postilion", + "item.tfcastikorcarts.postilion.laurel": "Laurel Postilion", + "item.tfcastikorcarts.postilion.larch": "Larch Postilion", + "item.tfcastikorcarts.postilion.limba": "Limba Postilion", + "item.tfcastikorcarts.postilion.locust": "Locust Postilion", + "item.tfcastikorcarts.postilion.logwood": "Logwood Postilion", + "item.tfcastikorcarts.postilion.maclura": "Maclura Postilion", + "item.tfcastikorcarts.postilion.mahoe": "Mahoe Postilion", + "item.tfcastikorcarts.postilion.mahogany": "Mahogany Postilion", + "item.tfcastikorcarts.postilion.marblewood": "Marblewood Postilion", + "item.tfcastikorcarts.postilion.medlar": "Medlar Postilion", + "item.tfcastikorcarts.postilion.messmate": "Messmate Postilion", + "item.tfcastikorcarts.postilion.mountain_ash": "Mountain Ash Postilion", + "item.tfcastikorcarts.postilion.mulberry": "Mulberry Postilion", + "item.tfcastikorcarts.postilion.nordmann_fir": "Nordmann Fir Postilion", + "item.tfcastikorcarts.postilion.norway_spruce": "Norway Spruce Postilion", + "item.tfcastikorcarts.postilion.pear": "Pear Postilion", + "item.tfcastikorcarts.postilion.persimmon": "Persimmon Postilion", + "item.tfcastikorcarts.postilion.pink_cherry_blossom": "Pink Cherry Blossom Postilion", + "item.tfcastikorcarts.postilion.pink_ipe": "Pink Ipe Postilion", + "item.tfcastikorcarts.postilion.pink_ivory": "Pink Ivory Postilion", + "item.tfcastikorcarts.postilion.poplar": "Poplar Postilion", + "item.tfcastikorcarts.postilion.purpleheart": "Purpleheart Postilion", + "item.tfcastikorcarts.postilion.purple_ipe": "Purple Ipe Postilion", + "item.tfcastikorcarts.postilion.purple_jacaranda": "Purple Jacaranda Postilion", + "item.tfcastikorcarts.postilion.quince": "Quince Postilion", + "item.tfcastikorcarts.postilion.rainbow_eucalyptus": "Rainbow Eucalyptus Postilion", + "item.tfcastikorcarts.postilion.redwood": "Redwood Postilion", + "item.tfcastikorcarts.postilion.red_cedar": "Red Cedar Postilion", + "item.tfcastikorcarts.postilion.red_cypress": "Red Cypress Postilion", + "item.tfcastikorcarts.postilion.red_elm": "Red Elm Postilion", + "item.tfcastikorcarts.postilion.red_mangrove": "Red Mangrove Postilion", + "item.tfcastikorcarts.postilion.rowan": "Rowan Postilion", + "item.tfcastikorcarts.postilion.rubber_fig": "Rubber Fig Postilion", + "item.tfcastikorcarts.postilion.sloe": "Sloe Postilion", + "item.tfcastikorcarts.postilion.snow_gum_eucalyptus": "Snow Gum Eucalyptus Postilion", + "item.tfcastikorcarts.postilion.sorb": "Sorb Postilion", + "item.tfcastikorcarts.postilion.sweetgum": "Sweetgum Postilion", + "item.tfcastikorcarts.postilion.syzygium": "Syzygium Postilion", + "item.tfcastikorcarts.postilion.teak": "Teak Postilion", + "item.tfcastikorcarts.postilion.walnut": "Walnut Postilion", + "item.tfcastikorcarts.postilion.wenge": "Wenge Postilion", + "item.tfcastikorcarts.postilion.whitebeam": "Whitebeam Postilion", + "item.tfcastikorcarts.postilion.white_cherry_blossom": "White Cherry Blossom Postilion", + "item.tfcastikorcarts.postilion.white_elm": "White Elm Postilion", + "item.tfcastikorcarts.postilion.white_ipe": "White Ipe Postilion", + "item.tfcastikorcarts.postilion.white_jacaranda": "White Jacaranda Postilion", + "item.tfcastikorcarts.postilion.white_mangrove": "White Mangrove Postilion", + "item.tfcastikorcarts.postilion.yellow_ipe": "Yellow Ipe Postilion", + "item.tfcastikorcarts.postilion.yellow_jacaranda": "Yellow Jacaranda Postilion", + "item.tfcastikorcarts.postilion.yellow_meranti": "Yellow Meranti Postilion", + "item.tfcastikorcarts.postilion.yew": "Yew Postilion", + "item.tfcastikorcarts.postilion.zebrawood": "Zebrawood Postilion", + "item.tfcastikorcarts.wheel.acacia": "Акациевое колесо", + "item.tfcastikorcarts.wheel.ash": "Ясеневое колесо", + "item.tfcastikorcarts.wheel.aspen": "Осиновое колесо", + "item.tfcastikorcarts.wheel.birch": "Берёзовое колесо", + "item.tfcastikorcarts.wheel.blackwood": "Гренадиловое колесо", + "item.tfcastikorcarts.wheel.chestnut": "Каштановое колесо", + "item.tfcastikorcarts.wheel.douglas_fir": "Колесо из дугласовой пихты", + "item.tfcastikorcarts.wheel.hickory": "Ореховое колесо", + "item.tfcastikorcarts.wheel.kapok": "Колесо из сейбы", + "item.tfcastikorcarts.wheel.maple": "Кленовое колесо", + "item.tfcastikorcarts.wheel.oak": "Дубовое колесо", + "item.tfcastikorcarts.wheel.palm": "Пальмовое колесо", + "item.tfcastikorcarts.wheel.pine": "Сосновое колесо", + "item.tfcastikorcarts.wheel.rosewood": "Палисандровое колесо", + "item.tfcastikorcarts.wheel.sequoia": "Секвойное колесо", + "item.tfcastikorcarts.wheel.spruce": "Еловое колесо", + "item.tfcastikorcarts.wheel.sycamore": "Платановое колесо", + "item.tfcastikorcarts.wheel.white_cedar": "Колесо из белого кедра", + "item.tfcastikorcarts.wheel.willow": "Ивовое колесо", + "item.tfcastikorcarts.wheel.african_padauk": "African Padauk колесо", + "item.tfcastikorcarts.wheel.alder": "Alder колесо", + "item.tfcastikorcarts.wheel.angelim": "Angelim колесо", + "item.tfcastikorcarts.wheel.argyle_eucalyptus": "Argyle Eucalyptus колесо", + "item.tfcastikorcarts.wheel.bald_cypress": "Bald Cypress колесо", + "item.tfcastikorcarts.wheel.baobab": "Baobab колесо", + "item.tfcastikorcarts.wheel.beech": "Beech колесо", + "item.tfcastikorcarts.wheel.black_walnut": "Black Walnut колесо", + "item.tfcastikorcarts.wheel.black_willow": "Black Willow колесо", + "item.tfcastikorcarts.wheel.brazilwood": "Brazilwood колесо", + "item.tfcastikorcarts.wheel.butternut": "Butternut колесо", + "item.tfcastikorcarts.wheel.buxus": "Buxus колесо", + "item.tfcastikorcarts.wheel.cocobolo": "Cocobolo колесо", + "item.tfcastikorcarts.wheel.common_oak": "Common Oak колесо", + "item.tfcastikorcarts.wheel.cypress": "Cypress колесо", + "item.tfcastikorcarts.wheel.ebony": "Ebony колесо", + "item.tfcastikorcarts.wheel.fever": "Fever колесо", + "item.tfcastikorcarts.wheel.ghaf": "Ghaf колесо", + "item.tfcastikorcarts.wheel.ginkgo": "Ginkgo колесо", + "item.tfcastikorcarts.wheel.greenheart": "Greenheart колесо", + "item.tfcastikorcarts.wheel.hawthorn": "Hawthorn колесо", + "item.tfcastikorcarts.wheel.hazel": "Hazel колесо", + "item.tfcastikorcarts.wheel.hemlock": "Hemlock колесо", + "item.tfcastikorcarts.wheel.holly": "Holly колесо", + "item.tfcastikorcarts.wheel.hornbeam": "Hornbeam колесо", + "item.tfcastikorcarts.wheel.iroko": "Iroko колесо", + "item.tfcastikorcarts.wheel.ironwood": "Ironwood колесо", + "item.tfcastikorcarts.wheel.jabuticabeira": "Jabuticabeira колесо", + "item.tfcastikorcarts.wheel.joshua": "Joshua колесо", + "item.tfcastikorcarts.wheel.juniper": "Juniper колесо", + "item.tfcastikorcarts.wheel.kauri": "Kauri колесо", + "item.tfcastikorcarts.wheel.laurel": "Laurel колесо", + "item.tfcastikorcarts.wheel.larch": "Larch колесо", + "item.tfcastikorcarts.wheel.limba": "Limba колесо", + "item.tfcastikorcarts.wheel.locust": "Locust колесо", + "item.tfcastikorcarts.wheel.logwood": "Logwood колесо", + "item.tfcastikorcarts.wheel.maclura": "Maclura колесо", + "item.tfcastikorcarts.wheel.mahoe": "Mahoe колесо", + "item.tfcastikorcarts.wheel.mahogany": "Mahogany колесо", + "item.tfcastikorcarts.wheel.marblewood": "Marblewood колесо", + "item.tfcastikorcarts.wheel.medlar": "Medlar колесо", + "item.tfcastikorcarts.wheel.messmate": "Messmate колесо", + "item.tfcastikorcarts.wheel.mountain_ash": "Mountain Ash колесо", + "item.tfcastikorcarts.wheel.mulberry": "Mulberry колесо", + "item.tfcastikorcarts.wheel.nordmann_fir": "Nordmann Fir колесо", + "item.tfcastikorcarts.wheel.norway_spruce": "Norway Spruce колесо", + "item.tfcastikorcarts.wheel.pear": "Pear колесо", + "item.tfcastikorcarts.wheel.persimmon": "Persimmon колесо", + "item.tfcastikorcarts.wheel.pink_cherry_blossom": "Pink Cherry Blossom колесо", + "item.tfcastikorcarts.wheel.pink_ipe": "Pink Ipe колесо", + "item.tfcastikorcarts.wheel.pink_ivory": "Pink Ivory колесо", + "item.tfcastikorcarts.wheel.poplar": "Poplar колесо", + "item.tfcastikorcarts.wheel.purpleheart": "Purpleheart колесо", + "item.tfcastikorcarts.wheel.purple_ipe": "Purple Ipe колесо", + "item.tfcastikorcarts.wheel.purple_jacaranda": "Purple Jacaranda колесо", + "item.tfcastikorcarts.wheel.quince": "Quince колесо", + "item.tfcastikorcarts.wheel.rainbow_eucalyptus": "Rainbow Eucalyptus колесо", + "item.tfcastikorcarts.wheel.redwood": "Redwood колесо", + "item.tfcastikorcarts.wheel.red_cedar": "Red Cedar колесо", + "item.tfcastikorcarts.wheel.red_cypress": "Red Cypress колесо", + "item.tfcastikorcarts.wheel.red_elm": "Red Elm колесо", + "item.tfcastikorcarts.wheel.red_mangrove": "Red Mangrove колесо", + "item.tfcastikorcarts.wheel.rowan": "Rowan колесо", + "item.tfcastikorcarts.wheel.rubber_fig": "Rubber Fig колесо", + "item.tfcastikorcarts.wheel.sloe": "Sloe колесо", + "item.tfcastikorcarts.wheel.snow_gum_eucalyptus": "Snow Gum Eucalyptus колесо", + "item.tfcastikorcarts.wheel.sorb": "Sorb колесо", + "item.tfcastikorcarts.wheel.sweetgum": "Sweetgum колесо", + "item.tfcastikorcarts.wheel.syzygium": "Syzygium колесо", + "item.tfcastikorcarts.wheel.teak": "Teak колесо", + "item.tfcastikorcarts.wheel.walnut": "Walnut колесо", + "item.tfcastikorcarts.wheel.wenge": "Wenge колесо", + "item.tfcastikorcarts.wheel.whitebeam": "Whitebeam колесо", + "item.tfcastikorcarts.wheel.white_cherry_blossom": "White Cherry Blossom колесо", + "item.tfcastikorcarts.wheel.white_elm": "White Elm колесо", + "item.tfcastikorcarts.wheel.white_ipe": "White Ipe колесо", + "item.tfcastikorcarts.wheel.white_jacaranda": "White Jacaranda колесо", + "item.tfcastikorcarts.wheel.white_mangrove": "White Mangrove колесо", + "item.tfcastikorcarts.wheel.yellow_ipe": "Yellow Ipe колесо", + "item.tfcastikorcarts.wheel.yellow_jacaranda": "Yellow Jacaranda колесо", + "item.tfcastikorcarts.wheel.yellow_meranti": "Yellow Meranti колесо", + "item.tfcastikorcarts.wheel.yew": "Yew колесо", + "item.tfcastikorcarts.wheel.zebrawood": "Zebrawood колесо" +} \ No newline at end of file diff --git a/kubejs/assets/tfcbetterbf/lang/ru_ru.json b/kubejs/assets/tfcbetterbf/lang/ru_ru.json new file mode 100644 index 000000000..2e15165b0 --- /dev/null +++ b/kubejs/assets/tfcbetterbf/lang/ru_ru.json @@ -0,0 +1,5 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.tfcbetterbf.insulated_fire_bricks": "Изолированные огнеупорные кирпичи", + "item.tfcbetterbf.insulation": "Изоляция для доменной печи" +} \ No newline at end of file diff --git a/kubejs/assets/tfccanes/lang/ru_ru.json b/kubejs/assets/tfccanes/lang/ru_ru.json new file mode 100644 index 000000000..dd016da5e --- /dev/null +++ b/kubejs/assets/tfccanes/lang/ru_ru.json @@ -0,0 +1,5 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "item.tfccanes.walking_cane": "Трость (Дерево)", + "item.tfccanes.refined_walking_cane": "Трость (Кованое железо)" +} \ No newline at end of file diff --git a/kubejs/assets/tfcgroomer/lang/ru_ru.json b/kubejs/assets/tfcgroomer/lang/ru_ru.json new file mode 100644 index 000000000..7186a314a --- /dev/null +++ b/kubejs/assets/tfcgroomer/lang/ru_ru.json @@ -0,0 +1,12 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.tfcgroomer.copper_grooming_station": "Кормушка (Медь)", + "block.tfcgroomer.bronze_grooming_station": "Кормушка (Бронза)", + "block.tfcgroomer.bismuth_bronze_grooming_station": "Кормушка (Висмутовая бронза)", + "block.tfcgroomer.black_bronze_grooming_station": "Кормушка (Чёрная бронза)", + "block.tfcgroomer.wrought_iron_grooming_station": "Кормушка (Кованое железо)", + "block.tfcgroomer.steel_grooming_station": "Кормушка (Сталь)", + "block.tfcgroomer.black_steel_grooming_station": "Кормушка (Чёрная сталь)", + "block.tfcgroomer.red_steel_grooming_station": "Кормушка (Красная сталь)", + "block.tfcgroomer.blue_steel_grooming_station": "Кормушка (Синяя сталь)" +} \ No newline at end of file diff --git a/kubejs/assets/tfcgroomer/lang/zh_cn.json b/kubejs/assets/tfcgroomer/lang/zh_cn.json new file mode 100644 index 000000000..bcd41c77e --- /dev/null +++ b/kubejs/assets/tfcgroomer/lang/zh_cn.json @@ -0,0 +1,12 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.tfcgroomer.copper_grooming_station": "铜喂食槽", + "block.tfcgroomer.bronze_grooming_station": "青铜喂食槽", + "block.tfcgroomer.bismuth_bronze_grooming_station": "铋青铜喂食槽", + "block.tfcgroomer.black_bronze_grooming_station": "黑青铜喂食槽", + "block.tfcgroomer.wrought_iron_grooming_station": "锻铁喂食槽", + "block.tfcgroomer.steel_grooming_station": "钢喂食槽", + "block.tfcgroomer.black_steel_grooming_station": "黑钢喂食槽", + "block.tfcgroomer.red_steel_grooming_station": "红钢喂食槽", + "block.tfcgroomer.blue_steel_grooming_station": "蓝钢喂食槽" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/bioreactor.json b/kubejs/assets/tfg/blockstates/bioreactor.json new file mode 100644 index 000000000..a93232387 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/bioreactor.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "tfg:block/machines/bioreactor", + "y": 90 + }, + "facing=north": { + "model": "tfg:block/machines/bioreactor" + }, + "facing=south": { + "model": "tfg:block/machines/bioreactor", + "y": 180 + }, + "facing=west": { + "model": "tfg:block/machines/bioreactor", + "y": 270 + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/corallium_arenicolus_0.json b/kubejs/assets/tfg/blockstates/corallium_arenicolus_0.json index ee10f45fa..39cbc2d9b 100644 --- a/kubejs/assets/tfg/blockstates/corallium_arenicolus_0.json +++ b/kubejs/assets/tfg/blockstates/corallium_arenicolus_0.json @@ -1,10 +1,9 @@ { - "variants": { - "half=lower": { - "model": "tfg:block/corallium_arenicolus_0_bottom" - }, - "half=upper": { - "model": "tfg:block/corallium_arenicolus_0_top" + "variants": { + "height=0": { "model": "tfg:block/corallium_arenicolus_0_bottom" }, + "height=1": { "model": "tfg:block/corallium_arenicolus_0_top" }, + "height=2": { "model": "" }, + "height=3": { "model": "" }, + "height=4": { "model": "" } } - } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/flax.json b/kubejs/assets/tfg/blockstates/flax.json new file mode 100644 index 000000000..0b8a1e705 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/flax.json @@ -0,0 +1,34 @@ +{ + "variants": { + "age=0": { + "model": "tfg:block/crop/flax_age_0" + }, + "age=1": { + "model": "tfg:block/crop/flax_age_1" + }, + "age=2": { + "model": "tfg:block/crop/flax_age_2" + }, + "age=3": { + "model": "tfg:block/crop/flax_age_3" + }, + "age=4,part=bottom": { + "model": "tfg:block/crop/flax_age_4_bottom" + }, + "age=5,part=bottom": { + "model": "tfg:block/crop/flax_age_5_bottom" + }, + "age=6,part=bottom": { + "model": "tfg:block/crop/flax_age_6_bottom" + }, + "age=4,part=top": { + "model": "tfg:block/crop/flax_age_4_top" + }, + "age=5,part=top": { + "model": "tfg:block/crop/flax_age_5_top" + }, + "age=6,part=top": { + "model": "tfg:block/crop/flax_age_6_top" + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/flax_dead.json b/kubejs/assets/tfg/blockstates/flax_dead.json new file mode 100644 index 000000000..15259e1b7 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/flax_dead.json @@ -0,0 +1,13 @@ +{ + "variants": { + "mature=false": { + "model": "tfg:block/crop/flax_dead_young" + }, + "mature=true,part=top": { + "model": "tfg:block/crop/flax_dead_top" + }, + "mature=true,part=bottom": { + "model": "tfg:block/crop/flax_dead_bottom" + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/flax_wild.json b/kubejs/assets/tfg/blockstates/flax_wild.json new file mode 100644 index 000000000..c8023989c --- /dev/null +++ b/kubejs/assets/tfg/blockstates/flax_wild.json @@ -0,0 +1,16 @@ +{ + "variants": { + "part=top,mature=true": { + "model": "tfg:block/crop/flax_wild_top" + }, + "part=top,mature=false": { + "model": "tfg:block/crop/flax_dead_top" + }, + "part=bottom,mature=true": { + "model": "tfg:block/crop/flax_wild_bottom" + }, + "part=bottom,mature=false": { + "model": "tfg:block/crop/flax_dead_bottom" + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/grass/amber_clay_mycelium.json b/kubejs/assets/tfg/blockstates/grass/amber_clay_mycelium.json new file mode 100644 index 000000000..03f7d4d1b --- /dev/null +++ b/kubejs/assets/tfg/blockstates/grass/amber_clay_mycelium.json @@ -0,0 +1,24 @@ +{ + "variants": { + "snowy=false": [ + { + "model": "tfg:block/grass/amber_clay" + }, + { + "model": "tfg:block/grass/amber_clay", + "y": 90 + }, + { + "model": "tfg:block/grass/amber_clay", + "y": 180 + }, + { + "model": "tfg:block/grass/amber_clay", + "y": 270 + } + ], + "snowy=true": { + "model": "tfg:block/grass/mars_snowy_clay" + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/grass/amber_kaolin_mycelium.json b/kubejs/assets/tfg/blockstates/grass/amber_kaolin_mycelium.json new file mode 100644 index 000000000..883367b79 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/grass/amber_kaolin_mycelium.json @@ -0,0 +1,24 @@ +{ + "variants": { + "snowy=false": [ + { + "model": "tfg:block/grass/amber_kaolin" + }, + { + "model": "tfg:block/grass/amber_kaolin", + "y": 90 + }, + { + "model": "tfg:block/grass/amber_kaolin", + "y": 180 + }, + { + "model": "tfg:block/grass/amber_kaolin", + "y": 270 + } + ], + "snowy=true": { + "model": "tfg:block/grass/snowy_kaolin" + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/grass/mars_clay_dirt.json b/kubejs/assets/tfg/blockstates/grass/mars_clay_dirt.json new file mode 100644 index 000000000..82a734fc4 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/grass/mars_clay_dirt.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "tfg:block/grass/mars_clay_dirt" + }, + { + "model": "tfg:block/grass/mars_clay_dirt", + "y": 90 + }, + { + "model": "tfg:block/grass/mars_clay_dirt", + "y": 180 + }, + { + "model": "tfg:block/grass/mars_clay_dirt", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/grass/rusticus_clay_mycelium.json b/kubejs/assets/tfg/blockstates/grass/rusticus_clay_mycelium.json new file mode 100644 index 000000000..5bd374511 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/grass/rusticus_clay_mycelium.json @@ -0,0 +1,24 @@ +{ + "variants": { + "snowy=false": [ + { + "model": "tfg:block/grass/rusticus_clay" + }, + { + "model": "tfg:block/grass/rusticus_clay", + "y": 90 + }, + { + "model": "tfg:block/grass/rusticus_clay", + "y": 180 + }, + { + "model": "tfg:block/grass/rusticus_clay", + "y": 270 + } + ], + "snowy=true": { + "model": "tfg:block/grass/mars_snowy_clay" + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/grass/rusticus_kaolin_mycelium.json b/kubejs/assets/tfg/blockstates/grass/rusticus_kaolin_mycelium.json new file mode 100644 index 000000000..9bc921e64 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/grass/rusticus_kaolin_mycelium.json @@ -0,0 +1,24 @@ +{ + "variants": { + "snowy=false": [ + { + "model": "tfg:block/grass/rusticus_kaolin" + }, + { + "model": "tfg:block/grass/rusticus_kaolin", + "y": 90 + }, + { + "model": "tfg:block/grass/rusticus_kaolin", + "y": 180 + }, + { + "model": "tfg:block/grass/rusticus_kaolin", + "y": 270 + } + ], + "snowy=true": { + "model": "tfg:block/grass/snowy_kaolin" + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/grass/sangnum_clay_mycelium.json b/kubejs/assets/tfg/blockstates/grass/sangnum_clay_mycelium.json new file mode 100644 index 000000000..468453bbf --- /dev/null +++ b/kubejs/assets/tfg/blockstates/grass/sangnum_clay_mycelium.json @@ -0,0 +1,24 @@ +{ + "variants": { + "snowy=false": [ + { + "model": "tfg:block/grass/sangnum_clay" + }, + { + "model": "tfg:block/grass/sangnum_clay", + "y": 90 + }, + { + "model": "tfg:block/grass/sangnum_clay", + "y": 180 + }, + { + "model": "tfg:block/grass/sangnum_clay", + "y": 270 + } + ], + "snowy=true": { + "model": "tfg:block/grass/mars_snowy_clay" + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/grass/sangnum_kaolin_mycelium.json b/kubejs/assets/tfg/blockstates/grass/sangnum_kaolin_mycelium.json new file mode 100644 index 000000000..d5c147c43 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/grass/sangnum_kaolin_mycelium.json @@ -0,0 +1,24 @@ +{ + "variants": { + "snowy=false": [ + { + "model": "tfg:block/grass/sangnum_kaolin" + }, + { + "model": "tfg:block/grass/sangnum_kaolin", + "y": 90 + }, + { + "model": "tfg:block/grass/sangnum_kaolin", + "y": 180 + }, + { + "model": "tfg:block/grass/sangnum_kaolin", + "y": 270 + } + ], + "snowy=true": { + "model": "tfg:block/grass/snowy_kaolin" + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/large_nest_box.json b/kubejs/assets/tfg/blockstates/large_nest_box.json index 52b03f4c9..350cb2cc4 100644 --- a/kubejs/assets/tfg/blockstates/large_nest_box.json +++ b/kubejs/assets/tfg/blockstates/large_nest_box.json @@ -1,138 +1,209 @@ { - "variants": { - "facing=north,has_egg_type=0,nest_part=0": { - "model": "tfg:block/large_nest_box/large_nest_box_empty" - }, - "facing=north,has_egg_type=0,nest_part=1": { - "model": "tfg:block/large_nest_box/large_nest_box_empty", - "y": 90 - }, - "facing=north,has_egg_type=0,nest_part=2": { - "model": "tfg:block/large_nest_box/large_nest_box_empty", - "y": 270 - }, - "facing=north,has_egg_type=0,nest_part=3": { - "model": "tfg:block/large_nest_box/large_nest_box_empty", - "y": 180 - }, + "variants": { + "facing=north,has_egg_type=0,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_empty" + }, + "facing=north,has_egg_type=0,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_empty", + "y": 90 + }, + "facing=north,has_egg_type=0,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_empty", + "y": 270 + }, + "facing=north,has_egg_type=0,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_empty", + "y": 180 + }, + + + "facing=south,has_egg_type=0,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_empty", + "y": 180 + }, + "facing=south,has_egg_type=0,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_empty", + "y": 270 + }, + "facing=south,has_egg_type=0,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_empty", + "y": 90 + }, + "facing=south,has_egg_type=0,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_empty" + }, + + + "facing=east,has_egg_type=0,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_empty", + "y": 90 + }, + "facing=east,has_egg_type=0,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_empty", + "y": 180 + }, + "facing=east,has_egg_type=0,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_empty" + }, + "facing=east,has_egg_type=0,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_empty", + "y": 270 + }, + + + "facing=west,has_egg_type=0,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_empty", + "y": 270 + }, + "facing=west,has_egg_type=0,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_empty" + + }, + "facing=west,has_egg_type=0,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_empty", + "y": 180 + }, + "facing=west,has_egg_type=0,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_empty", + "y": 90 + + }, + + + "facing=north,has_egg_type=1,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_sniffer_0" + }, + "facing=north,has_egg_type=1,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_sniffer_1", + "y": 90 + }, + "facing=north,has_egg_type=1,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_sniffer_2", + "y": 270 + }, + "facing=north,has_egg_type=1,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_sniffer_3", + "y": 180 + }, + + "facing=south,has_egg_type=1,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_sniffer_0", + "y": 180 + }, + "facing=south,has_egg_type=1,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_sniffer_1", + "y": 270 + }, + "facing=south,has_egg_type=1,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_sniffer_2", + "y": 90 + }, + "facing=south,has_egg_type=1,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_sniffer_3" + }, + + "facing=east,has_egg_type=1,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_sniffer_0", + "y": 90 + }, + "facing=east,has_egg_type=1,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_sniffer_1", + "y": 180 + }, + "facing=east,has_egg_type=1,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_sniffer_2" + }, + "facing=east,has_egg_type=1,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_sniffer_3", + "y": 270 + }, + + "facing=west,has_egg_type=1,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_sniffer_0", + "y": 270 + }, + "facing=west,has_egg_type=1,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_sniffer_1" + + }, + "facing=west,has_egg_type=1,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_sniffer_2", + "y": 180 + }, + "facing=west,has_egg_type=1,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_sniffer_3", + "y": 90 + + }, + + + + "facing=north,has_egg_type=2,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_wraptor_0" + }, + "facing=north,has_egg_type=2,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_wraptor_1", + "y": 90 + }, + "facing=north,has_egg_type=2,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_wraptor_2", + "y": 270 + }, + "facing=north,has_egg_type=2,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_wraptor_3", + "y": 180 + }, + + "facing=south,has_egg_type=2,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_wraptor_0", + "y": 180 + }, + "facing=south,has_egg_type=2,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_wraptor_1", + "y": 270 + }, + "facing=south,has_egg_type=2,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_wraptor_2", + "y": 90 + }, + "facing=south,has_egg_type=2,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_wraptor_3" + }, + + "facing=east,has_egg_type=2,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_wraptor_0", + "y": 90 + }, + "facing=east,has_egg_type=2,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_wraptor_1", + "y": 180 + }, + "facing=east,has_egg_type=2,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_wraptor_2" + }, + "facing=east,has_egg_type=2,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_wraptor_3", + "y": 270 + }, + + "facing=west,has_egg_type=2,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_wraptor_0", + "y": 270 + }, + "facing=west,has_egg_type=2,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_wraptor_1" + + }, + "facing=west,has_egg_type=2,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_wraptor_2", + "y": 180 + }, + "facing=west,has_egg_type=2,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_wraptor_3", + "y": 90 + + } + + } - - "facing=south,has_egg_type=0,nest_part=0": { - "model": "tfg:block/large_nest_box/large_nest_box_empty", - "y": 180 - }, - "facing=south,has_egg_type=0,nest_part=1": { - "model": "tfg:block/large_nest_box/large_nest_box_empty", - "y": 270 - }, - "facing=south,has_egg_type=0,nest_part=2": { - "model": "tfg:block/large_nest_box/large_nest_box_empty", - "y": 90 - }, - "facing=south,has_egg_type=0,nest_part=3": { - "model": "tfg:block/large_nest_box/large_nest_box_empty" - }, - - - "facing=east,has_egg_type=0,nest_part=0": { - "model": "tfg:block/large_nest_box/large_nest_box_empty", - "y": 90 - }, - "facing=east,has_egg_type=0,nest_part=1": { - "model": "tfg:block/large_nest_box/large_nest_box_empty", - "y": 180 - }, - "facing=east,has_egg_type=0,nest_part=2": { - "model": "tfg:block/large_nest_box/large_nest_box_empty" - }, - "facing=east,has_egg_type=0,nest_part=3": { - "model": "tfg:block/large_nest_box/large_nest_box_empty", - "y": 270 - }, - - - "facing=west,has_egg_type=0,nest_part=0": { - "model": "tfg:block/large_nest_box/large_nest_box_empty", - "y": 270 - }, - "facing=west,has_egg_type=0,nest_part=1": { - "model": "tfg:block/large_nest_box/large_nest_box_empty" - - }, - "facing=west,has_egg_type=0,nest_part=2": { - "model": "tfg:block/large_nest_box/large_nest_box_empty", - "y": 180 - }, - "facing=west,has_egg_type=0,nest_part=3": { - "model": "tfg:block/large_nest_box/large_nest_box_empty", - "y": 90 - - }, - - - "facing=north,has_egg_type=1,nest_part=0": { - "model": "tfg:block/large_nest_box/large_nest_box_sniffer_0" - }, - "facing=north,has_egg_type=1,nest_part=1": { - "model": "tfg:block/large_nest_box/large_nest_box_sniffer_1", - "y": 90 - }, - "facing=north,has_egg_type=1,nest_part=2": { - "model": "tfg:block/large_nest_box/large_nest_box_sniffer_2", - "y": 270 - }, - "facing=north,has_egg_type=1,nest_part=3": { - "model": "tfg:block/large_nest_box/large_nest_box_sniffer_3", - "y": 180 - }, - - "facing=south,has_egg_type=1,nest_part=0": { - "model": "tfg:block/large_nest_box/large_nest_box_sniffer_0", - "y": 180 - }, - "facing=south,has_egg_type=1,nest_part=1": { - "model": "tfg:block/large_nest_box/large_nest_box_sniffer_1", - "y": 270 - }, - "facing=south,has_egg_type=1,nest_part=2": { - "model": "tfg:block/large_nest_box/large_nest_box_sniffer_2", - "y": 90 - }, - "facing=south,has_egg_type=1,nest_part=3": { - "model": "tfg:block/large_nest_box/large_nest_box_sniffer_3" - }, - - "facing=east,has_egg_type=1,nest_part=0": { - "model": "tfg:block/large_nest_box/large_nest_box_sniffer_0", - "y": 90 - }, - "facing=east,has_egg_type=1,nest_part=1": { - "model": "tfg:block/large_nest_box/large_nest_box_sniffer_1", - "y": 180 - }, - "facing=east,has_egg_type=1,nest_part=2": { - "model": "tfg:block/large_nest_box/large_nest_box_sniffer_2" - }, - "facing=east,has_egg_type=1,nest_part=3": { - "model": "tfg:block/large_nest_box/large_nest_box_sniffer_3", - "y": 270 - }, - - "facing=west,has_egg_type=1,nest_part=0": { - "model": "tfg:block/large_nest_box/large_nest_box_sniffer_0", - "y": 270 - }, - "facing=west,has_egg_type=1,nest_part=1": { - "model": "tfg:block/large_nest_box/large_nest_box_sniffer_1" - - }, - "facing=west,has_egg_type=1,nest_part=2": { - "model": "tfg:block/large_nest_box/large_nest_box_sniffer_2", - "y": 180 - }, - "facing=west,has_egg_type=1,nest_part=3": { - "model": "tfg:block/large_nest_box/large_nest_box_sniffer_3", - "y": 90 - } - } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/large_nest_box_warped.json b/kubejs/assets/tfg/blockstates/large_nest_box_warped.json index b5894ba69..3ce30bae1 100644 --- a/kubejs/assets/tfg/blockstates/large_nest_box_warped.json +++ b/kubejs/assets/tfg/blockstates/large_nest_box_warped.json @@ -1,140 +1,206 @@ { - "variants": { - "facing=north,has_egg_type=0,nest_part=0": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_empty" - }, - "facing=north,has_egg_type=0,nest_part=1": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", - "y": 90 - }, - "facing=north,has_egg_type=0,nest_part=2": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", - "y": 270 - }, - "facing=north,has_egg_type=0,nest_part=3": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", - "y": 180 - }, - - - "facing=south,has_egg_type=0,nest_part=0": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", - "y": 180 - }, - "facing=south,has_egg_type=0,nest_part=1": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", - "y": 270 - }, - "facing=south,has_egg_type=0,nest_part=2": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", - "y": 90 - }, - "facing=south,has_egg_type=0,nest_part=3": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_empty" - }, - - - "facing=east,has_egg_type=0,nest_part=0": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", - "y": 90 - }, - "facing=east,has_egg_type=0,nest_part=1": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", - "y": 180 - }, - "facing=east,has_egg_type=0,nest_part=2": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_empty" - }, - "facing=east,has_egg_type=0,nest_part=3": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", - "y": 270 - }, - - - "facing=west,has_egg_type=0,nest_part=0": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", - "y": 270 - }, - "facing=west,has_egg_type=0,nest_part=1": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_empty" - - }, - "facing=west,has_egg_type=0,nest_part=2": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", - "y": 180 - }, - "facing=west,has_egg_type=0,nest_part=3": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", - "y": 90 - - }, - - - "facing=north,has_egg_type=1,nest_part=0": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_0" - }, - "facing=north,has_egg_type=1,nest_part=1": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_1", - "y": 90 - }, - "facing=north,has_egg_type=1,nest_part=2": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_2", - "y": 270 - }, - "facing=north,has_egg_type=1,nest_part=3": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_3", - "y": 180 - }, - - "facing=south,has_egg_type=1,nest_part=0": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_0", - "y": 180 - }, - "facing=south,has_egg_type=1,nest_part=1": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_1", - "y": 270 - }, - "facing=south,has_egg_type=1,nest_part=2": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_2", - "y": 90 - }, - "facing=south,has_egg_type=1,nest_part=3": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_3" - }, - - "facing=east,has_egg_type=1,nest_part=0": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_0", - "y": 90 - }, - "facing=east,has_egg_type=1,nest_part=1": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_1", - "y": 180 - }, - "facing=east,has_egg_type=1,nest_part=2": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_2" - }, - "facing=east,has_egg_type=1,nest_part=3": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_3", - "y": 270 - }, - - "facing=west,has_egg_type=1,nest_part=0": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_0", - "y": 270 - }, - "facing=west,has_egg_type=1,nest_part=1": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_1" - - }, - "facing=west,has_egg_type=1,nest_part=2": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_2", - "y": 180 - }, - "facing=west,has_egg_type=1,nest_part=3": { - "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_3", - "y": 90 - - } - - } + "variants": { + "facing=north,has_egg_type=0,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_empty" + }, + "facing=north,has_egg_type=0,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", + "y": 90 + }, + "facing=north,has_egg_type=0,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", + "y": 270 + }, + "facing=north,has_egg_type=0,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", + "y": 180 + }, + + + "facing=south,has_egg_type=0,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", + "y": 180 + }, + "facing=south,has_egg_type=0,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", + "y": 270 + }, + "facing=south,has_egg_type=0,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", + "y": 90 + }, + "facing=south,has_egg_type=0,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_empty" + }, + + + "facing=east,has_egg_type=0,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", + "y": 90 + }, + "facing=east,has_egg_type=0,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", + "y": 180 + }, + "facing=east,has_egg_type=0,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_empty" + }, + "facing=east,has_egg_type=0,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", + "y": 270 + }, + + + "facing=west,has_egg_type=0,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", + "y": 270 + }, + "facing=west,has_egg_type=0,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_empty" + + }, + "facing=west,has_egg_type=0,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", + "y": 180 + }, + "facing=west,has_egg_type=0,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_empty", + "y": 90 + + }, + + + "facing=north,has_egg_type=1,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_0" + }, + "facing=north,has_egg_type=1,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_1", + "y": 90 + }, + "facing=north,has_egg_type=1,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_2", + "y": 270 + }, + "facing=north,has_egg_type=1,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_3", + "y": 180 + }, + + "facing=south,has_egg_type=1,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_0", + "y": 180 + }, + "facing=south,has_egg_type=1,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_1", + "y": 270 + }, + "facing=south,has_egg_type=1,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_2", + "y": 90 + }, + "facing=south,has_egg_type=1,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_3" + }, + + "facing=east,has_egg_type=1,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_0", + "y": 90 + }, + "facing=east,has_egg_type=1,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_1", + "y": 180 + }, + "facing=east,has_egg_type=1,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_2" + }, + "facing=east,has_egg_type=1,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_3", + "y": 270 + }, + + "facing=west,has_egg_type=1,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_0", + "y": 270 + }, + "facing=west,has_egg_type=1,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_1" + + }, + "facing=west,has_egg_type=1,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_2", + "y": 180 + }, + "facing=west,has_egg_type=1,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_sniffer_3", + "y": 90 + + }, + + + "facing=north,has_egg_type=2,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_wraptor_0" + }, + "facing=north,has_egg_type=2,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_wraptor_1", + "y": 90 + }, + "facing=north,has_egg_type=2,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_wraptor_2", + "y": 270 + }, + "facing=north,has_egg_type=2,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_wraptor_3", + "y": 180 + }, + + "facing=south,has_egg_type=2,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_wraptor_0", + "y": 180 + }, + "facing=south,has_egg_type=2,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_wraptor_1", + "y": 270 + }, + "facing=south,has_egg_type=2,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_wraptor_2", + "y": 90 + }, + "facing=south,has_egg_type=2,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_wraptor_3" + }, + + "facing=east,has_egg_type=2,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_wraptor_0", + "y": 90 + }, + "facing=east,has_egg_type=2,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_wraptor_1", + "y": 180 + }, + "facing=east,has_egg_type=2,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_wraptor_2" + }, + "facing=east,has_egg_type=2,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_wraptor_3", + "y": 270 + }, + + "facing=west,has_egg_type=2,nest_part=0": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_wraptor_0", + "y": 270 + }, + "facing=west,has_egg_type=2,nest_part=1": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_wraptor_1" + + }, + "facing=west,has_egg_type=2,nest_part=2": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_wraptor_2", + "y": 180 + }, + "facing=west,has_egg_type=2,nest_part=3": { + "model": "tfg:block/large_nest_box/large_nest_box_warped_wraptor_3", + "y": 90 + + } + } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rapeseed_wild.json b/kubejs/assets/tfg/blockstates/rapeseed_wild.json index 3ddbb2d6e..599bc8001 100644 --- a/kubejs/assets/tfg/blockstates/rapeseed_wild.json +++ b/kubejs/assets/tfg/blockstates/rapeseed_wild.json @@ -1,13 +1,13 @@ { "variants": { "part=top,mature=true": { - "model": "tfg:block/crop/rapeseed_age_5_top" + "model": "tfg:block/crop/rapeseed_wild_top" }, "part=top,mature=false": { "model": "tfg:block/crop/rapeseed_dead_top" }, "part=bottom,mature=true": { - "model": "tfg:block/crop/rapeseed_age_5_bottom" + "model": "tfg:block/crop/rapeseed_wild_bottom" }, "part=bottom,mature=false": { "model": "tfg:block/crop/rapeseed_dead_bottom" diff --git a/kubejs/assets/tfg/blockstates/saplings/aeronos.json b/kubejs/assets/tfg/blockstates/saplings/aeronos.json index 1ec4995be..f5294b69e 100644 --- a/kubejs/assets/tfg/blockstates/saplings/aeronos.json +++ b/kubejs/assets/tfg/blockstates/saplings/aeronos.json @@ -1,5 +1,5 @@ { "variants": { - "": { "model": "ad_astra:block/alphacene_mushroom" } + "": { "model": "ad_astra:block/aeronos_mushroom" } } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/saplings/glacian.json b/kubejs/assets/tfg/blockstates/saplings/glacian.json new file mode 100644 index 000000000..ae03de2bb --- /dev/null +++ b/kubejs/assets/tfg/blockstates/saplings/glacian.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "tfg:block/glacian_mushroom" } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/saplings/strophar.json b/kubejs/assets/tfg/blockstates/saplings/strophar.json index 2a714f2ca..027b7f4ce 100644 --- a/kubejs/assets/tfg/blockstates/saplings/strophar.json +++ b/kubejs/assets/tfg/blockstates/saplings/strophar.json @@ -1,5 +1,5 @@ { "variants": { - "": { "model": "ad_astra:block/strophar" } + "": { "model": "ad_astra:block/strophar_mushroom" } } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/spice.json b/kubejs/assets/tfg/blockstates/spice.json new file mode 100644 index 000000000..c78fc36c7 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/spice.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "species:block/red_suspicious_sand_0" + }, + { + "model": "species:block/red_suspicious_sand_1" + }, + { + "model": "species:block/red_suspicious_sand_2" + }, + { + "model": "species:block/red_suspicious_sand_3" + }, + { + "model": "tfg:block/sand_spice" + } + ] + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/spike/blackstone_spike.json b/kubejs/assets/tfg/blockstates/spike/blackstone_spike.json deleted file mode 100644 index ceb70d3bc..000000000 --- a/kubejs/assets/tfg/blockstates/spike/blackstone_spike.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "part=base": { - "model": "tfg:block/spike/blackstone_base" - }, - "part=middle": { - "model": "tfg:block/spike/blackstone_middle" - }, - "part=tip": { - "model": "tfg:block/spike/blackstone_tip" - } - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/spike/deepslate_spike.json b/kubejs/assets/tfg/blockstates/spike/deepslate_spike.json deleted file mode 100644 index 8a2c2fb53..000000000 --- a/kubejs/assets/tfg/blockstates/spike/deepslate_spike.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "part=base": { - "model": "tfg:block/spike/deepslate_base" - }, - "part=middle": { - "model": "tfg:block/spike/deepslate_middle" - }, - "part=tip": { - "model": "tfg:block/spike/deepslate_tip" - } - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/spike/dripstone_spike.json b/kubejs/assets/tfg/blockstates/spike/dripstone_spike.json deleted file mode 100644 index c1b9a82b3..000000000 --- a/kubejs/assets/tfg/blockstates/spike/dripstone_spike.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "part=base": { - "model": "tfg:block/spike/dripstone_base" - }, - "part=middle": { - "model": "tfg:block/spike/dripstone_middle" - }, - "part=tip": { - "model": "tfg:block/spike/dripstone_tip" - } - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/spike/glacio_stone_spike.json b/kubejs/assets/tfg/blockstates/spike/glacio_stone_spike.json deleted file mode 100644 index 579d34692..000000000 --- a/kubejs/assets/tfg/blockstates/spike/glacio_stone_spike.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "part=base": { - "model": "tfg:block/spike/glacio_stone_base" - }, - "part=middle": { - "model": "tfg:block/spike/glacio_stone_middle" - }, - "part=tip": { - "model": "tfg:block/spike/glacio_stone_tip" - } - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/spike/mars_stone_spike.json b/kubejs/assets/tfg/blockstates/spike/mars_stone_spike.json deleted file mode 100644 index d124b85eb..000000000 --- a/kubejs/assets/tfg/blockstates/spike/mars_stone_spike.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "part=base": { - "model": "tfg:block/spike/mars_stone_base" - }, - "part=middle": { - "model": "tfg:block/spike/mars_stone_middle" - }, - "part=tip": { - "model": "tfg:block/spike/mars_stone_tip" - } - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/spike/mercury_stone_spike.json b/kubejs/assets/tfg/blockstates/spike/mercury_stone_spike.json deleted file mode 100644 index e8d64b02a..000000000 --- a/kubejs/assets/tfg/blockstates/spike/mercury_stone_spike.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "part=base": { - "model": "tfg:block/spike/mercury_stone_base" - }, - "part=middle": { - "model": "tfg:block/spike/mercury_stone_middle" - }, - "part=tip": { - "model": "tfg:block/spike/mercury_stone_tip" - } - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/spike/moon_deepslate_spike.json b/kubejs/assets/tfg/blockstates/spike/moon_deepslate_spike.json deleted file mode 100644 index 00f44e402..000000000 --- a/kubejs/assets/tfg/blockstates/spike/moon_deepslate_spike.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "part=base": { - "model": "tfg:block/spike/moon_deepslate_base" - }, - "part=middle": { - "model": "tfg:block/spike/moon_deepslate_middle" - }, - "part=tip": { - "model": "tfg:block/spike/moon_deepslate_tip" - } - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/spike/moon_stone_spike.json b/kubejs/assets/tfg/blockstates/spike/moon_stone_spike.json deleted file mode 100644 index 0d859f2ff..000000000 --- a/kubejs/assets/tfg/blockstates/spike/moon_stone_spike.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "part=base": { - "model": "tfg:block/spike/moon_stone_base" - }, - "part=middle": { - "model": "tfg:block/spike/moon_stone_middle" - }, - "part=tip": { - "model": "tfg:block/spike/moon_stone_tip" - } - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/spike/permafrost_spike.json b/kubejs/assets/tfg/blockstates/spike/permafrost_spike.json deleted file mode 100644 index 8187014a0..000000000 --- a/kubejs/assets/tfg/blockstates/spike/permafrost_spike.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "part=base": { - "model": "tfg:block/spike/permafrost_base" - }, - "part=middle": { - "model": "tfg:block/spike/permafrost_middle" - }, - "part=tip": { - "model": "tfg:block/spike/permafrost_tip" - } - } -} \ 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 deleted file mode 100644 index 33c19859e..000000000 --- a/kubejs/assets/tfg/blockstates/spike/red_granite_spike.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "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/blockstates/spike/venus_stone_spike.json b/kubejs/assets/tfg/blockstates/spike/venus_stone_spike.json deleted file mode 100644 index 92032d4d4..000000000 --- a/kubejs/assets/tfg/blockstates/spike/venus_stone_spike.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "part=base": { - "model": "tfg:block/spike/venus_stone_base" - }, - "part=middle": { - "model": "tfg:block/spike/venus_stone_middle" - }, - "part=tip": { - "model": "tfg:block/spike/venus_stone_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 8ff6b6da2..655f76ce4 100644 --- a/kubejs/assets/tfg/lang/en_us.json +++ b/kubejs/assets/tfg/lang/en_us.json @@ -21,6 +21,20 @@ "biome.tfg.moon/lunar_lights_sparse": "Lightbloom Scrubland", "biome.tfg.moon/lunar_plains": "Lunar Plains", "biome.tfg.moon/lunar_sands": "Lunar Sands", + "biome.tfg.mars/martian_deep_desert": "Deep Martian Dunes", + "biome.tfg.mars/martian_dunes": "Martian Desert", + "biome.tfg.mars/martian_dune_edge": "Martian Desert Edge", + "biome.tfg.mars/martian_river": "Martian Shores", + "biome.tfg.mars/martian_mountains": "Extinct Martian Volcano", + "biome.tfg.mars/amber_edge": "Amber Edge", + "biome.tfg.mars/amber_plains": "Amber Plains", + "biome.tfg.mars/amber_hills": "Amber Hills", + "biome.tfg.mars/rusticus_edge": "Rusticus Edge", + "biome.tfg.mars/rusticus_plains": "Rusticus Meadow", + "biome.tfg.mars/rusticus_hills": "Rusticus Heath", + "biome.tfg.mars/sangnum_edge": "Sangnum Edge", + "biome.tfg.mars/sangnum_plains": "Sangnum Prairie", + "biome.tfg.mars/sangnum_hills": "Sangnum Moorland", "block.tfg.piglin_disguise": "Piglin Disguise", "block.tfg.piglin_disguise_block": "Piglin Disguise", "block.tfg.dry_ice": "Dry Ice", @@ -232,19 +246,33 @@ "block.tfg.iv_gas_pressurizer": "§9Elite Gas Pressurizer§r", "block.tfg.luv_gas_pressurizer": "§dElite Gas Pressurizer II§r", "block.tfg.zpm_gas_pressurizer": "§cElite Gas Pressurizer III§r", - "block.tfg.uv_gas_pressurizer": "§3Ultimate Gas Pressurizer III§r", + "block.tfg.uv_gas_pressurizer": "§3Ultimate Gas Pressurizer§r", "block.tfg.fluid.semiheavy_ammoniacal_water": "Semiheavy Ammoniacal Water", "block.tfg.grass.mars_dirt": "Martian Dirt", + "block.tfg.grass.mars_clay_dirt": "Martian Clay Dirt", "block.tfg.grass.mars_farmland": "Martian Farmland", "block.tfg.grass.amber_mycelium": "Amber Mycelium", + "block.tfg.grass.amber_clay_mycelium": "Amber Clay Mycelium", + "block.tfg.grass.amber_kaolin_mycelium": "Amber Kaolin Mycelium", "block.tfg.grass.rusticus_mycelium": "Rusticus Mycelium", + "block.tfg.grass.rusticus_clay_mycelium": "Rusticus Clay Mycelium", + "block.tfg.grass.rusticus_kaolin_mycelium": "Rusticus Kaolin Mycelium", "block.tfg.grass.sangnum_mycelium": "Sangnum Mycelium", + "block.tfg.grass.sangnum_clay_mycelium": "Sangnum Clay Mycelium", + "block.tfg.grass.sangnum_kaolin_mycelium": "Sangnum Kaolin Mycelium", + "block.tfg.spice": "Ostrum Deposit", "block.tfg.saplings.crimson": "Crimson Fungus", "block.tfg.saplings.warped": "Warped Fungus", "block.tfg.saplings.alphacene": "Alphacene Mushroom", "block.tfg.saplings.aeronos": "Aeronos Mushroom", "block.tfg.saplings.strophar": "Strophar Mushroom", "block.tfg.saplings.glacian": "Glacian Mushroom", + "block.tfg.groundcover.glider_feather": "Glider Feather", + "block.tfg.groundcover.wraptor_feather": "Wraptor Feather", + "block.tfg.groundcover.aeronos_stick": "Aeronos Twig", + "block.tfg.groundcover.strophar_stick": "Strophar Twig", + "block.tfg.groundcover.glacian_stick": "Glacian Twig", + "block.tfg.groundcover.alphacene_stick": "Alphacene Twig", "block.tfg.electromagnetic_accelerator": "Electromagnetic Accelerator", "block.tfg.superconductor_coil_large": "Large Superconductor Coil", "block.tfg.superconductor_coil_small": "Small Superconductor Coil", @@ -279,6 +307,9 @@ "block.tfg.rapeseed": "Canola", "block.tfg.rapeseed_wild": "Wild Canola", "block.tfg.rapeseed_dead": "Dead Canola", + "block.tfg.flax": "Flax", + "block.tfg.flax_wild": "Wild Flax", + "block.tfg.flax_dead": "Dead Flax", "block.tfg.casings.machine_casing_iron_desh": "Desh Machine Casing", "block.tfg.casings.machine_casing_stainless_evaporation": "Stainless Evaporation Machine Casing", "block.tfg.casings.machine_casing_vacuum_engine_intake": "Vacuum Engine Intake Machine Casing", @@ -287,6 +318,11 @@ "block.tfg.casings.machine_casing_green_solar_panel": "Advanced Solar Panel Casing", "block.tfg.casings.machine_casing_red_solar_panel": "Elite Solar Panel Casing", "block.tfg.machine_casing_aluminium_plated_steel": "Aluminium Plated Steel Machine Casing", + "block.tfg.casings.machine_casing_ultraviolet": "§dUltraviolet §fMachine Casing", + "block.tfg.casings.machine_casing_bioculture": "Bioculture Machine Casing", + "block.tfg.casings.machine_casing_bioculture_glass": "Bioculture Glass", + "block.tfg.casings.bioculture_rotor_primary": "Primary Bioculture Rotor", + "block.tfg.casings.bioculture_rotor_secondary": "Secondary Bioculture Rotor", "block.tfg.sand.fluorapatite.blue": "Blue Fluorapatite Sand", "block.tfg.sandstone.raw.fluorapatite.blue": "Raw Blue Fluorapatite Sandstone", "block.tfg.sandstone.wall.raw.fluorapatite.blue": "Raw Blue Fluorapatite Sandstone Wall", @@ -361,7 +397,6 @@ "fluid.tfg.ender_slurry": "Ender Slurry", "fluid.tfg.enriched_ender_slurry": "Enriched Ender Slurry", "fluid.tfg.semiheavy_ammoniacal_water": "Semiheavy Ammoniacal Water", - "fluid.tfg.heavy_water": "Heavy Water", "fluid.tfg.sulfur_fumes": "Sulfur Fumes", "fluid.tfg.super_heated_slurry": "Super Heated Slurry", "item.tfg.antipoison_pill": "Antipoison Pill", @@ -558,8 +593,16 @@ "item.tfg.wood.lumber.aeronos": "Aeronos Lumber", "item.tfg.wood.lumber.strophar": "Strophar Lumber", "item.tfg.wood.lumber.glacian": "Glacian Lumber", + "item.tfg.twigs.aeronos": "Aeronos Twig", + "item.tfg.twigs.strophar": "Strophar Twig", + "item.tfg.twigs.glacian": "Glacian Twig", + "item.tfg.twigs.alphacene": "Alphacene Twig", "item.tfg.glacian_wool": "Glacian Ram Wool", "item.tfg.sniffer_wool": "Mineral Rich Tufts", + "item.tfg.sniffer_egg": "Sniffer Egg", + "item.tfg.wraptor_wool": "Mineral Rich Down Feathers", + "item.tfg.wraptor_egg": "Wraptor Egg", + "item.tfg.wraptor_sugar": "Wraptor Sugar", "item.tfg.aes_polyurethane": "Bio-AES Reinforced R-Polyurethane Foam", "item.tfg.mli_shielding": "Multi-Layer Insulated Shielding", "item.tfg.rocket_cone_t3": "Advanced Rocket Nose Cone", @@ -600,6 +643,20 @@ "item.tfg.electric_extendo_grip": "Electric Extendo Grip", "item.tfg.treated_chipboard_composite": "Treated Chipboard Composite", "item.tfg.high_density_treated_fiberboard": "Medium Density Treated Fiberboard", + "item.tfg.flax_seeds": "Flax Seeds", + "item.tfg.flax_product": "Flax Stems", + "item.tfg.flax_line": "Flax Line Fibers", + "item.tfg.flax_tow": "Flax Tow Fibers", + "item.tfg.flax_waste": "Scraped Flax", + "item.tfg.linen_thread": "Linen Thread", + "item.tfg.linen_cloth": "Linen Cloth", + "item.tfg.uv_led": "§dUltraviolet §fLED", + "item.tfg.smd_uv_led": "§fSMD §dUltraviolet §fLED", + "item.tfg.empty_dna_syringe": "Empty Syringe", + "item.tfg.filled_dna_syringe": "Filled Syringe", + "item.tfg.dirty_dna_syringe": "Dirty Syringe", + "item.tfg.clean_dna_syringe": "Clean Syringe", + "item.tfg.stainless_steel_needle": "Stainless Steel Needle", "material.tfg.latex": "Latex", "material.tfg.vulcanized_latex": "Vulcanized Latex", "material.tfg.fluix": "Fluix", @@ -659,6 +716,8 @@ "material.tfg.tmos": "Tetramethoxysilane", "material.tfg.silica_gel": "Silica Gel", "material.tfg.soaked_silica_gel": "Acetone Soaked Silica Gel", + "material.tfg.heavy_water": "Heavy Water", + "material.tfg.semiheavy_water": "Semiheavy Water", "material.tfg.nuclear_residue": "Nuclear Residue", "material.tfg.oxidized_nuclear_residue": "Oxidized Nuclear Residue", "material.tfg.refined_nuclear_residue": "Refined Nuclear Residue", @@ -667,6 +726,7 @@ "material.tfg.bright_regolith": "Bright Regolith", "material.tfg.cassiterite_regolith": "Cassiterite Regolith", "material.tfg.regolith_mush": "Regolith Mush", + "ore_vein.tfg.deep_sheldonite": "Cooperite & Bornite", "ore_vein.tfg.deep_garnet_amethyst": "Amethyst & Garnet", "ore_vein.tfg.deep_garnet_opal": "Opal & Garnet", "ore_vein.tfg.deep_gold": "Gold (Deep)", @@ -677,7 +737,6 @@ "ore_vein.tfg.deep_pitchblende": "Uraninite & Pitchblende", "ore_vein.tfg.deep_sapphire": "Sapphire & Almandine", "ore_vein.tfg.deep_scheelite": "Scheelite & Tungstate", - "ore_vein.tfg.deep_sheldonite": "Cooperite & Bornite", "ore_vein.tfg.deep_topaz": "Topaz & Chalcocite", "ore_vein.tfg.normal_apatite": "Apatite & Pyrochlore", "ore_vein.tfg.normal_basaltic_sands": "Mineral Sands", @@ -710,16 +769,39 @@ "ore_vein.tfg.normal_spodumene": "Spodumene & Lepidolite", "ore_vein.tfg.normal_sulfur": "Sulfur & Pyrite", "ore_vein.tfg.normal_tetrahedrite": "Tetrahedrite (Normal)", - "ore_vein.tfg.surface_bismuthinite": "Bismuth (Surface)", - "ore_vein.tfg.surface_cassiterite": "Cassiterite (Surface)", + "ore_vein.tfg.surface_bismuthinite": "Bismuth", + "ore_vein.tfg.surface_cassiterite": "Cassiterite", "ore_vein.tfg.surface_copper": "Chalcopyrite & Realgar", "ore_vein.tfg.surface_sphalerite": "Sphalerite & Sulfur", "ore_vein.tfg.surface_tetrahedrite": "Tetrahedrite (Surface)", - "ore_vein.tfg.mars_hematite": "(Placeholder Vein)", + "ore_vein.tfg.deep_mars_chromite": "Redstone & Chromite", + "ore_vein.tfg.deep_mars_pitchblende": "Pitchblende, Thorium, & Uraninite", + "ore_vein.tfg.deep_mars_sheldonite": "Bornite & Cooperite", + "ore_vein.tfg.mars_almandine": "Almandine & Sapphire", + "ore_vein.tfg.mars_apatite": "Apatite & Pyrochlore", + "ore_vein.tfg.mars_beryllium": "Emerald & Beryllium", + "ore_vein.tfg.mars_coal": "Coal & Hematite", + "ore_vein.tfg.mars_copper": "Copper & Chalcopyrite", + "ore_vein.tfg.mars_galena": "Silver, Galena, & Lead", + "ore_vein.tfg.mars_sapphire": "Gold, Electrotine, & Bauxite", + "ore_vein.tfg.mars_hematite": "Hematite & Limonite", + "ore_vein.tfg.mars_lubricant": "Soapstone, Talc, & Glauconite", + "ore_vein.tfg.mars_neodynium": "Bastnasite & Monazite", + "ore_vein.tfg.mars_nickel": "Garnierite & Cobaltite", + "ore_vein.tfg.mars_pitchblende": "Pitchblende, Thorium, & Hematite", + "ore_vein.tfg.mars_quartzite": "Quartzite, Asbestos, & Barite", + "ore_vein.tfg.mars_salt": "Salts & Spodumene", + "ore_vein.tfg.mars_stibnite": "Tetrahedrite (Normal)", + "ore_vein.tfg.mars_sulfur": "Sphalerite & Pyrite", + "ore_vein.tfg.mars_tantalite": "Manganese & Tantalum", + "ore_vein.tfg.mars_tungsten": "Scheelite & Tungstate", + "ore_vein.tfg.surface_hematite": "Hematite & Limonite", + "ore_vein.tfg.surface_nickel_galena": "Sphalerite & Galena", "ore_vein.tfg.moon_apatite": "Apatite & Pyrochlore", "ore_vein.tfg.moon_bauxite": "Bauxite & Ilmenite", "ore_vein.tfg.moon_beryllium": "Emerald & Beryllium", "ore_vein.tfg.moon_cassiterite": "Cassiterite & Chalcopyrite", + "ore_vein.tfg.moon_sheldonite": "Cooperite & Bornite", "ore_vein.tfg.moon_desh": "Desh & Ilmenite", "ore_vein.tfg.moon_garnet": "Amethyst, Opal, & Garnet", "ore_vein.tfg.moon_garnierite": "Garnierite & Cobaltite", @@ -738,7 +820,6 @@ "ore_vein.tfg.moon_saltpeter": "Saltpeter & Electrotine", "ore_vein.tfg.moon_sapphire": "Sapphire & Almandine", "ore_vein.tfg.moon_scheelite": "Scheelite & Tungstate", - "ore_vein.tfg.moon_sheldonite": "Cooperite & Bornite", "ore_vein.tfg.moon_silver": "Silver, Galena, & Lead", "ore_vein.tfg.moon_sphalerite": "Sphalerite & Pyrite", "ore_vein.tfg.moon_tetrahedrite": "Tetrahedrite & Chalcocite", @@ -748,6 +829,7 @@ "ore_vein.tfg.nether_basaltic_sands": "Mineral Sands", "ore_vein.tfg.nether_beryllium": "Emerald & Beryllium", "ore_vein.tfg.nether_cassiterite": "Cassiterite", + "ore_vein.tfg.nether_sheldonite": "Cooperite & Bornite", "ore_vein.tfg.nether_copper": "Copper & Chalcopyrite", "ore_vein.tfg.nether_garnet": "Amethyst, Opal, & Garnet", "ore_vein.tfg.nether_garnet_tin": "Garnet & Cassiterite Sands", @@ -772,7 +854,6 @@ "ore_vein.tfg.nether_saltpeter": "Saltpeter & Electrotine", "ore_vein.tfg.nether_sapphire": "Sapphire & Almandine", "ore_vein.tfg.nether_scheelite": "Scheelite & Tungstate", - "ore_vein.tfg.nether_sheldonite": "Cooperite & Bornite", "ore_vein.tfg.nether_silver": "Silver, Galena, & Lead", "ore_vein.tfg.nether_sphalerite": "Sphalerite & Pyrite", "ore_vein.tfg.nether_sulfur": "Sulfur & Pyrite", @@ -798,6 +879,11 @@ "entity.tfg.sniffer.male": "Sniffer", "entity.tfg.sniffer.female": "Sniffer", "tfg.tooltip.attribution.sniffer": "§9§oCredit: Minecraft", + "entity.tfg.wraptor.male": "Wraptor", + "entity.tfg.wraptor.female": "Wraptor", + "tfg.tooltip.attribution.wraptor": "§9§oCredit: Species", + "effect.tfg.cooling": "§bCooling", + "effect.tfg.warming": "§6Warming", "item.treetap.tap": "Deprecated Item, Craft to Upgrade", "item.gtceu.zinc_ingot": "Deprecated Item, Craft to Upgrade", "item.gtceu.brass_ingot": "Deprecated Item, Craft to Upgrade", @@ -931,11 +1017,11 @@ "emi.category.tfg.ore_vein_info": "Ore Veins", "tfg.toast.ore_prospector_none": "No ores found in range.", "tfg.toast.ore_prospector_message": "Ores found within %s §6blocks in this direction: %s", - "tooltip.tfg.ore_prospector_stats": "Scan Range: %s, Cross Section: %s x %s.", - "tooltip.tfg.ore_prospector_count": "This prospector will display ore counts.", - "tooltip.tfg.ore_prospector_xray": "This prospector will display a %s x-ray view of ore blocks.", - "tooltip.tfg.ore_prospector_mode_vein": "per-vein", - "tooltip.tfg.ore_prospector_mode_block": "per-block", + "tfg.tooltip.ore_prospector_stats": "Scan Range: %s, Cross Section: %s x %s.", + "tfg.tooltip.ore_prospector_count": "This prospector will display ore counts.", + "tfg.tooltip.ore_prospector_xray": "This prospector will display a %s x-ray view of ore blocks.", + "tfg.tooltip.ore_prospector_mode_vein": "per-vein", + "tfg.tooltip.ore_prospector_mode_block": "per-block", "tfg.hangglider.disabled_dimension": "You can't use a hang glider here!", "tfg.tooltip.nametag": "§7Used on a Scribing Table along with an item to name it, or with black dye to name the tag.", "tfg.tooltip.yeast_starter": "§7Created with dried fruit", @@ -955,6 +1041,7 @@ "tfg.tooltip.armor.nanomuscle_warmth": "§7Warmth: 0", "tfg.tooltip.armor.nanomuscle_insulation": "§7Insulation: +10", "tfg.tooltip.armor.nanomuscle_set": "§7Wear the full set to be §eFully Insulated§7 from ambient temperatures.", + "tfg.tooltip.armor.nanomuscle_legs_buff": "§7Provides §9Speed I§7 when worn", "tfg.tooltip.armor.quarktech_warmth": "§7Warmth: 0", "tfg.tooltip.armor.quarktech_insulation": "§7Insulation: +10", "tfg.tooltip.armor.quarktech_set": "§7Wear the full set to be §eFully Insulated§7 from ambient temperatures.", @@ -970,8 +1057,22 @@ "tfg.tooltip.solar_panel.large_tier2": "Massive structure producing from §64096 to 16384 EU/t§r on the §6moon§r during the §6day§r", "tfg.tooltip.solar_panel.large_tier3": "Massive structure producing from §616384 to 65536 EU/t§r on the §6moon§r during the §6day§r", "tfg.tooltip.petrified_egg": "§7Requires Magma to Incubate", + "tfg.tooltip.large_egg": "§7Can only be incubated in a §oLarge Nest", + "tfg.tooltip.sniffer_wool": "§7Harvested from the back of a Sniffer", + "tfg.tooltip.wraptor_wool": "§7Harvested from the feathers of a Wraptor", + "tfg.tooltip.wraptor_sugar": "§7Don't think about it too much", + "tfg.tooltip.cooling_foods": "§bCools you by: 2°C", + "tfg.tooltip.cooling_foods_strong": "§bCools you by: 10°C", + "tfg.tooltip.warming_foods": "§6Warms you by: 4°C", "tfg.tooltip.obsolete.depreciated": "§cDeprecated, cannot be crafted any more", + "tfg.tooltip.dna_syringe.empty": "An empty syringe.", + "tfg.tooltip.dna_syringe.dirty1": "A used syringe.", + "tfg.tooltip.dna_syringe.dirty2": "Be careful not to poke anyone with this...", + "tfg.tooltip.dna_syringe.full": "DNA sample: ", + "tfg.tooltip.dna_syringe.explain": "Right-click on a mob to obtain a DNA sample. Place in a crafting grid to clear contents.", + "tfg.tooltip.shift_hint": "[Hold-Shift]", "tfc.jei.flint_knapping": "Flint Knapping", + "tfc.jei.straw_knapping": "Straw Knapping", "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.black": "Dyeing", "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.gray": "Dyeing", "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.light_gray": "Dyeing", @@ -1120,9 +1221,82 @@ "quests.ae2.ae_guide.title": "Welcome to AE2", "quests.ae2.ae_guide.subtitle": "Another free book for your collection!", "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 Applied Energistics 2, we strongly recommend using the &bG&r keybind (similar to Create's Ponder system) or open the &bME Guide&r we provide as a reward from this quest. It’s the best in-game tutorial for AE2.\nAlternatively, watch some online videos about AE2 on &61.20.1&r for more detailed explanations — AE2 is a very popular mod, so there's a ton of tutorials out there!\n\n&dPro tip&r: Many &bAE2&r recipes have alternative Moon recipes that are much cheaper. Once again, investing in your Moon base will greatly reward you throughout the entire game.", - "quests.ae2.programmed_circuit_card.title": "Programmed Circuit Card", - "quests.ae2.programmed_circuit_card.subtitle": "An essential upgrade", + "quests.ae2.hv.title": "HV Tier AE2", + "quests.ae2.hv.desc": "This entire branch is fully unlockable in &6HV&r!", + "quests.ae2.ae_controller.subtitle": "The beating heart of your ME network", + "quests.ae2.ae_controller.desc": "To get started, you’ll need to power your &bME Network&r. These are the two &bAE2&r blocks that can directly accept &bEU&r energy.\n\nWe strongly recommend crafting a &bME Controller&r, as &bchannels&r are enabled in TerraFirmaGreg, and the &bME Controller&r is the best way to manage multiple channels efficiently.\n\nThis is also a great time to use the in-game guide (press &aU&r on a &bME Controller&r) or watch some videos about &bAE2&r on version 1.20.1 to learn more!", + "quests.ae2.drive.subtitle": "The brains of the network", + "quests.ae2.drive.desc": "You will need to store your disks, and thanks to the &bMEGA&r addon, you now have an extra option.\n\nYou should start with a &bME Drive&r. It can store up to &e10&r disks and consumes &e4 EU/t&r. This will be your main storage solution.\n\nThe other option is the &bME Cell Dock&r. It only stores &e1&r disk but consumes just &e1 EU/t&r, and it can be placed directly on a cable like a cover. This makes it quite useful for &aSubnets&r.", + "quests.ae2.cell_housing.desc": "The &bME Cell Housing&r exists in two versions: one for &aItems&r and one for &9Fluids&r.\n\nYou can take their Storage Component out using a &ePacker&r or simply by Sneak + Right-click while holding the storage cell in your hand.", + "quests.ae2.cables.subtitle": "The arteries of the network", + "quests.ae2.cables.desc": "Your basic cables to connect your &bAE2&r infrastructure.\n\nRemember that regular cables carry only &e8 Channels&r, while &6Dense Cables&r can carry up to &a32 Channels&r.\n\nGood news: in &2TFG&r, you can directly craft the &9Smart Cables&r! They are very helpful as they show a &evisual indicator&r for the number of used channels.", + "quests.ae2.terminals.subtitle": "The... fingers? of the network?", + "quests.ae2.terminals.desc": "These terminals are mandatory to access your ME Network and to set up your auto-crafting system.", + "quests.ae2.molecular_assembler.desc": "The &9Molecular Assembler&r is basically your auto-crafting table.\n\nYou can use it for passive crafting, or combine it with a &9Pattern Provider&r.\n\nAs always, check the in-game guide using &eG&r to learn more about it.", + "quests.ae2.crafting_unit.subtitle": "The second? brains of the network", + "quests.ae2.crafting_unit.desc": "The &dCrafting Unit&r works the same way as your &bME Cell Housing&r.\n\nUse a &6Packer&r to make it functional — by itself, it serves no purpose, though you can use it to complete multi-blocks.\n\nIt’s your mandatory structure to run your &bAE2&r auto-crafting.\n\nAs usual, use the in-game guide from &bAE2&r to learn more about the &dCrafting CPU&r.", + "quests.ae2.crafting_storage.desc": "These are mandatory for any sort of auto crafting — the bigger the storage, the bigger the recipe chain that can be done with one request. You can also place multiple of them next to each other to add their storage size.\n\nUse the in-game guide for further details — it will explain everything far better than we ever could in a quest.\n\nTake your time to read it, it’s a great resource!", + "quests.ae2.crafting_storage.task": "Any crafting storage", + "quests.ae2.pattern_provider.subtitle": "These tell your machines how to craft things", + "quests.ae2.pattern_provider.desc": "The &9Pattern Provider&r is a modern &bAE2&r block. If you're only familiar with AE2 in previous versions of Minecraft, this is the block that you put your patterns into now instead of an Interface.\n\nIt can push items into the connected inventory on a crafting request, and pushing items back into it will send them back to your ME storage.\n\nIf you connect these to your GregTech machines, make sure you select the \"Allow Input From Output Face\" option on them so you can both input and output from the same side!\n\nAs always, check the in-game guide using &eG&r to learn more about it.", + "quests.ae2.pattern_provider.task": "Either Pattern Provider", + "quests.ae2.pattern.subtitle": "Crafting instructions", + "quests.ae2.pattern.desc": "Each of these tells your ME system how to craft a specific item. You'll need one for every single recipe, so it's worth aiming for the most efficient way to craft a ton of these.\n\nTo clear a Pattern, simply Sneak + Right-click them.\n\nUse the in-game guide for full details on how to use them, just remember to set the pattern type to \"Processing\" for any recipes that'll go in GregTech machines.", + "quests.ae2.interface.subtitle": "I'm giving up on the body part analogy", + "quests.ae2.interface.desc": "The &dME Interface&r is one of your bread and butter tools to get items or fluids out of, or inside, your network.\n\nIf you've only used AE2 in older Minecraft versions, these now only make network contents passively available for other things to pull out of, and don't actively push anything or hold patterns. You'll want the Pattern Provider for that.\n\nThe ME Interface can do way too many things to list here, so check the in-game guide using &eG&r to learn more about it.", + "quests.ae2.interface_automation.title": "Interface Automation", + "quests.ae2.interface_automation.desc": "The best way to passively route items and fluids around your base is through the &bME Interface&r. Since Interfaces don't push out their contents, you'll need to slap a cover on your machine or pipe.\n\nRemember to enable the &eAllow Input&r option on the Output face in your GregTech machine's GUI, in order to push and pull from the same side.\n\nUsing filters on your covers can also be a handy way for multiple machines to pull out of the same Interface.\n\nTo avoid overfilling a machine's item input slots, you'll need to use a Robot Arm cover on &eKeep Exact&r mode with a filter.\n\nThe fluid input doesn’t have this issue, as it will fill only one slot automatically.", + "quests.ae2.crafting_accelerator.desc": "Simply use the in-game guide — it will explain everything far better than we ever could in a quest.\n\nTake your time to read it, it’s a great resource!", + "quests.ae2.export_bus.desc": "The &dME Export Bus&r is a strong tool to get items or fluids out of your &dME Network&r.\nOnce you're able to craft them, you should especially look at the &eExtendedAE&r ones, as they can be of great help for some automation.\n\n&cImportant note&r: These have much more of a &4TPS impact&r than something like ME Interfaces, so it's best to use them sparingly.", + "quests.ae2.export_bus.task": "Any Export Bus", + "quests.ae2.import_bus.desc": "The &dME Import Bus&r is one way to get items and fluids into your &dME Network&r. You could also just push items and fluids into an Interface or Pattern Provider for the same result, though, so Import Buses are more niche.\n\n&cImportant note&r: These have much more of a &4TPS impact&r than something like ME Interfaces, so it's best to use them sparingly.", + "quests.ae2.storage_bus.desc": "The &bME Storage Bus&r is how you tell your ME network about items and fluids stored somewhere outside of ME Drives. They can be very powerful in combination with Super Tanks and Super Chests — just be sure to give the Storage Bus a higher &ePriority&r than your Drive, and partition it to the item or fluid you want to store, so your network tries to put things there first.\n\nStorage Buses are also essential for setting up Subnets — check out the in-game guide for more details on how those work.\n\nAlso, &aExtended AE&r comes with a lot of Storage Bus variants that may come in handy later. For example, you could tell your network to \"store\" all of your &6hot ingots&r in your Vacuum Freezer.", + "quests.ae2.storage_bus.task": "Any Storage Bus variant", + "quests.ae2.cell_component_1k.desc": "The &bStorage Component&r will be a core part of your progression through &aAE2&r, and they can be quite expensive, even though you will need them to make your &bStorage Cells&r.\n\nThe &e1k ME Storage Component&r is simple enough to not have a specialized moon recipe, but all of the others do, and since the Storage Components get exponentially more expensive... have we convinced you to make a Moon base yet?", + "quests.ae2.cell_component_4k.desc": "Take a look at how the &e4k Storage Component&r has a tremendously cheaper recipe on the &dMoon&r. This will be a consistent trend — the Moon recipes will always use one circuit tier lower than the non-Moon ones.", + "quests.ae2.cell_component_16k.desc": "The &e16k Storage Component&r is starting to get exponentially more expensive, so now you can really start seeing the savings from having a Moon base.\n\nYou do have a Moon base, right?", + "quests.ae2.p2p.title": "P2P Tunneling", + "quests.ae2.p2p.desc": "Channels are enabled here by default, so you may want to learn about &dP2P&r. They're essentially a way to condense multiple channels down into a single channel, letting you carry hundreds of them across your base through a single cable.\n\nAs usual, we advise you to use the in-game guide for more detailed information, and there's also plenty of video tutorials out there that you may find useful.\n\nWe also recommend making the &bAdvanced Memory Card&r from &dBetter P2P&r as soon as possible. It will be a big help when you've got many different P2P tunnels to deal with. You can even place a load of &dME P2P Inputs&r on your ME Controller ahead of time, and connect them to an output whenever you need.", + "quests.ae2.p2p.task": "Any P2P Tunnel", + "quests.ae2.cell_workbench.desc": "The &bCell Workbench&r is used to customize your storage cells.\n\nYou can give them &aWhitelist&r/&cBlacklist&r filters or partitions, or add upgrades like the &4Overflow Destruction Card&r — but be cautious with this one!\n\nThe &bIO Port&r is used to \"defragment\" your drives, if you've got the same items scattered across several of them.", + "quests.ae2.requester.desc.1": "The &aME Requester&r may be one of your &6strongest tools&r if you want to build your automation around &eauto-crafting&r and not passive production.\n\nIt can send Crafting Request batches of an item when your network has fewer than a specified amount.\n\nIf you are using a lot of &dCrafting Upgrades&r, you'd be better off using this machine as it will have much less of an impact on your &cTPS&r.", + "quests.ae2.requester.desc.2": "Also note that you can set your Crafting CPUs to be dedicated to Player-started crafting, automatic crafting requests, or neither, which can be useful to stop your Requesters from hogging all your CPUs.\n\nIf you like, you can also make a specialized &bTerminal&r to have access to all your Requesters from one place.", + "quests.ae2.emitters.desc": "&bEmitters&r and the &bToggle Bus&r are your way to manage &cRedstone&r signals in &bAE2&r.\n\nThe Level Emitter is especially useful for setting up passive production when combined with the GregTech Machine Controller Cover!\n\nCheck the in-game guide for more detailed information.", + "quests.ae2.batteries.desc": "These are the batteries for your ME Network. You may not need them at the beginning, but just keep them in mind — your energy cost could rise quickly, and a blackout in your ME Network can be a really dangerous situation.", + "quests.ae2.cutting_knife.title": "Cutting Knives", + "quests.ae2.cutting_knife.desc": "These are tools for easily renaming all of your ME components. Why would you want to do this? If you rename your Pattern Providers, their names will show up in the Pattern Terminal, which can be very handy for keeping track of which Pattern Provider is connected to which machine.\n\nFor example &oSmall Gear Extruder&r as a name for the Pattern Provider would let you easily know that this Extruder contains a Small Gear mold, so you should only put Small Gear patterns in it.", + "quests.ae2.cutting_knife.task": "Either cutting knife", "quests.ae2.programmed_circuit_card.desc": "Insert one of these into your Pattern Providers, and if your recipe has a programmed circuit, the attached GregTech machine will automatically change its circuit to the one in the recipe. How useful is that?!", + "quests.ae2.iv.title": "IV Tier AE2", + "quests.ae2.iv.desc": "This entire branch becomes fully unlockable once you reach &1IV&r.", + "quests.ae2.accumulation_press.desc": "To get this &eNew Inscriber Press&r, you will need to invest a bit.\n\nFirst, you must upgrade your Implosion Compressor with &1two IV Energy Hatches&r.\n\nThen, get yourself a new IV Laser Engraver if you don't already have one.\n\nAnd finally, prepare a lot of Industrial TNT — it’s the &conly one that works&r for this process.\n\nPlan carefully, as this step is quite demanding!", + "quests.ae2.accumulation_processor.desc": "The &eAccumulation Processor&r will require a large amount of Silicon for each craft.\n\nWe hope you already have a dedicated EBF producing Silicon, or at least a strong infrastructure to manufacture it quickly.\n\nPrepare accordingly, as you’ll need plenty of it!", + "quests.ae2.mega_crafting.desc": "These are a neat upgrade for your &bCrafting CPU&r.\n\nThey will help to speed up your auto-crafting and allow you to handle larger jobs with ease.", + "quests.ae2.mega_battery.desc": "A &ebigger battery&r for a bigger network. Nothing else to it!", + "quests.ae2.extended_pattern_access.desc": "The &eExtended Pattern Terminal&r is a wonderful upgrade to manage all your patterns in an easier way.\n\nYou get &6more search options&r for your patterns, and with how many you should be getting now, it will be a huge QoL improvement.\n\nMake the \"upgrade\" version to simply sneak-right-click your existing pattern providers to upgrade them without having to take all the patterns out.", + "quests.ae2.extended_pattern_access.task": "Either the part or the upgrade", + "quests.ae2.extended_interface.desc": "Here they are, your bigger &bInterface&r with an upgrade so you don't even need to disconnect them to upgrade.\n\nYou will be quite happy with them!", + "quests.ae2.extended_interface.task": "Either the part or the upgrade", + "quests.ae2.extended_patprov.desc": "Here they are, your bigger &bPattern Providers&r with an upgrade so you don't even need to disconnect them to upgrade.\n\nYou will be quite happy with them!", + "quests.ae2.extended_patprov.task": "Either the part or the upgrade", + "quests.ae2.extended_drive.desc": "The &dME Extended Drive&r will &6double&r the amount of &eStorage Cells&r you can have within it.\n\nYou can also craft the &eupgrade&r to simply &aRight Click&r your existing ME Drives without having to take your discs out, and it won't cost you more.", + "quests.ae2.extended_drive.task": "Either the part or the upgrade", + "quests.ae2.extended_import_export.desc": "These are eight times faster than their regular counterparts. Enjoy!", + "quests.ae2.extended_import_export.task": "Either the part or the upgrade", + "quests.ae2.extended_io_port.desc": "This upgrade will let you &atransfer faster&r while also offering &6more upgrade slots&r if needed.", + "quests.ae2.extended_molecular_assembler.desc": "The upgrade of the &bMolecular Assembler&r.\n\nIt runs &68 crafting jobs&r at the same time and goes &62 times faster&r.\n\nEven though you can only use it with a normal &bPattern Provider&r, it will be a &agreat upgrade&r before you get the &dMatrix Multiblock&r a bit later on.", + "quests.ae2.wireless.desc": "The &aME Wireless Connector&r is your go-to if you don't want to put down massive lines of &bME Cables&r. They effectively work like short-range Quantum Tunnels, but have a limited range and don't work across dimensions. That would be too easy, wouldn't it?\n\nDon't forget to check the in-game guide with &eG&r to learn about how they work and their limitations.", + "quests.ae2.mega_cell_housing.desc": "These &bCell Housings&r work the same way as the basic ones, but you will need these to make the bigger disks from &dMEGA&r.", + "quests.ae2.cell_component_64k.desc": "Now that you have &1IV&r Circuits, you can make this enormous &5Storage Component&r. Aren't you glad you made a Moon base?", + "quests.ae2.cell_component_256k.desc": "The &c256k ME Storage Component&r is the last one you can make with a regular Assembler, and it's so big that you may never need any of the bigger sizes.\n\nUnless you're up for the challenge, of course.", + "quests.ae2.luv.title": "LuV Tier AE2", + "quests.ae2.luv.desc": "This branch becomes unlockable once you reach &dLuV&r.", + "quests.ae2.cell_component_1m.desc": "The &3MEGA Storage Components&r will need an &bAssembly Line&r. Note that the non-Moon recipe must be crafted within a Cleanroom, or you can use a Cleaning Maintenance Hatch if you have access to one.\n\nNo need for that on the Moon though.", + "quests.ae2.cell_component_4m.desc": "Simply bigger and more expensive.", + "quests.ae2.cell_component_16m.desc": "This one can only be made on the &cMoon&r and nowhere else. It will also require a Cleanroom environment, so if you don’t want to bother with a Cleanroom on the &cMoon&r, you should make the &7Cleaning Maintenance Hatch&r.\n\nIt will also need some research. Refer to the &cZPM&r Chapter if you don’t know what that means.", + "quests.ae2.cell_component_64m.desc": "The &c64M MEGA Storage Component&r is the biggest one you can make in &8TerraFirmaGreg&r. Honestly, we believe you'll never need it, but it’s there for completionists.", + "quests.ae2.oversize_interface.desc": "The &dME Oversize Interface&r is a &dME Extended Interface&r but each slot can hold 16x more items or fluids. If you have processes that need huge quantities, this could be your go-to.", + "quests.ae2.assembler_matrix.desc": "The &6Assembler Matrix&r is basically a customizable multiblock Molecular Assembler. The requirements for this quest should let you build one that we deem quite strong enough. You could add more layers of &bPattern Core&r or &aCraft Core&r if you want to.\n\nAs usual, check the in-game guide for detailed informations.", "quests.tasktype.checkmark": "Click here to complete this quest/task", "quests.tasktype.item.any": "Any Item of type:", "quests.tasktype.lookat": "Look at a:", @@ -1205,7 +1379,7 @@ "quests.development.explanation.task": "Okay I read the whole three pages", "quests.development.ulv.title": "&8ULV&r Circuits", "quests.development.ulv.subtitle": "", - "quests.development.ulv.desc": "On this line you can see the Steam, or &8&8ULV&r, equivalents.", + "quests.development.ulv.desc": "On this line you can see the Steam, or &8ULV&r, equivalents.", "quests.development.lv.title": "&7LV&r Circuits", "quests.development.lv.subtitle": "", "quests.development.lv.desc": "Circuits along this line are &7LV&r, and are interchangeable in recipes.\n\n&cElectronic Circuits&r are the &oworst&r in terms of cost and effort required to produce, but you have to start somewhere.\n\n&eBasic Integrated Processors&r act as a middle layer between &cElectronic Circuits&r and &2Microchip Processors.&r\n\nFinally, &2Microchip Processors&r will be the best option for the rest of the playthrough.", @@ -1341,14 +1515,14 @@ "quests.gregtech_energy.lce_fuel.task": "I got enough", "quests.gregtech_energy.large_solar.subtitle": "Huge Easy Power", "quests.gregtech_energy.large_solar.desc.1": "The Large Solar Array MK I will be your go-to solution if you want to set up a larger base on the Moon.\n\nIt’s especially useful for &bAE2&r processing lines, and it can also power your Bedrock Miners.\n\nDon’t forget that you can use the GregTech Terminal item to build the multiblock instantly by sneak-right-clicking on the controller.\n\nCheck the available recipes by simply pressing &eU&r on the controller to see your options.", - "quests.gregtech_energy.large_solar.desc.2": "&6The Large Solar Array MK I&r comes with &92 different recipes&r:\n\n&9• Passive Mode&r —\nThis mode consumes no items at all, making it fully passive. However, it will only generate &62A HV&r during the day — enough for basic systems, but far from optimal.\n\n&9• Active Mode with Maintenance&r —\nIf you want to &amaximize the energy output&r, you’ll need to manage maintenance. Each time a cycle starts, there is a &c5% chance&r that a &dPhotovoltaic Cell&r is consumed.\n\n&eOur recommendation:&r\nSet up a passive logistics line to supply your solar panel with Photovoltaic Cells.\n\nYou can either transport them from &aEarth&r or craft them directly on the &7Moon&r — the choice is yours!", + "quests.gregtech_energy.large_solar.desc.2": "&6The Large Solar Array MK I&r comes with &92 different recipes&r:\n\n&9• Passive Mode&r —\nThis mode slowly consumes &dPhotovoltaic Cells&r, meaning it's fine when you're actively setting up your base if you throw a stack in there, but won't last forever. It will only generate &62A HV&r during the day — enough for basic systems, but far from optimal.\n\n&9• Active Mode&r —\nIf you want to &amaximize the energy output&r, you’ll need to manage coolant. This will require your Moon Base to be more built up, but the reward is you get &52A EV&r instead!\n\nThere's also MK II and MK III versions for higher tiers, requiring more advanced coolants.", "quests.gregtech_energy.large_solar_t2.subtitle": "Even stronger", "quests.gregtech_energy.large_solar_t2.desc.1": "If you're building an &dAE2 base on the Moon&r, chances are you'll need a lot more energy. That's where the &6Large Solar Array MK II&r comes in!\n\nJust like the MK I, it offers 2 different recipes — but this time, neither is fully passive.", "quests.gregtech_energy.large_solar_t2.desc.2": "Both &bSolar Coolant&r and &bCryogenized Fluix&r are fully renewable on the Moon. In fact, the Solar Coolant loop recycles its &eFluorine&r and &eChlorine&r inputs — meaning you only need a steady supply of:\n\n• Helium-3 — can be extracted with a &aFluid Drill Rig&r\n• Water — collect it passively with an &aAqueous Accumulator&r\n\n&cPower emergency fallback:&r\nIf your fluid supply is interrupted, the LSA MK II can still operate using Photovoltaic Cells.\nThis fallback method keeps your base online while you troubleshoot the issue.\n\nA must-have for any serious off-world AE2 infrastructure.", "quests.gregtech_energy.large_solar_t3.subtitle": "Maximal Power", "quests.gregtech_energy.large_solar_t3.desc": "The final tier is the &6Large Solar Array MK III&r. It works the same way as the MK II, but its new Solar Coolant requires the addition of &aArgon&r and &bSilica Aerogel&r.\n\nYou should already be familiar with &bSilica Aerogel&r — you used it in your &dRocket Tier 3&r.\nHowever, it's much harder to produce on the Moon, and you may need a constant supply shipped from &aEarth&r.\n\nWe’ll let you decide how to handle this logistical challenge — whether it’s through automation, or interplanetary transport, the choice is yours.\n\n&eHigh-tech energy&r demands &chigh-level infrastructure&r. Plan wisely!", "quests.gregtech_energy.solar_panel.subtitle": "Light in the Dark", - "quests.gregtech_energy.solar_panel.desc": "The Solar Panel will be your first source of power on the Moon.\n\nThey produce 64 EU/t during daytime, but keep in mind they actually generate RF, so you’ll need a Converter to transform it into EU.\n\nYou can use one &bMV Converter&r for up to 2 Solar Panels or a &6HV Converter&r for up to 4 Solar Panels.", + "quests.gregtech_energy.solar_panel.desc": "The Solar Panel will be your first source of power on the Moon.\n\nThey produce 32 EU/t during daytime, but keep in mind they actually generate RF, so you’ll need a Converter to transform it into EU.\n\nYou can use one &bMV Converter&r for up to 2 Solar Panels or a &6HV Converter&r for up to 4 Solar Panels.", "quests.gregtech_energy.storage.title": "Storing Energy", "quests.gregtech_energy.storage.subtitle": "Gotta put all that juice somewhere", "quests.gregtech_energy.storage.desc": "Storing your energy is one of the most fundamental pillars of the power system in GregTech.\n\nWhy is that? Simply because even the strongest generators won't be enough to keep up when you start a big craft — especially in late game.\n\nTo deal with this, GregTech provides multiple solutions to store astronomical amounts of EU. These storages act as a buffer between your energy production and the machines that drain it during complex operations.\n\nWhether you’re preparing for a Fusion Reactor, an LCR, or any HV-IV scale crafting chain, you’ll need that extra backup of energy to keep everything stable.\n\nDon’t underestimate the power of a good battery — it may just be the thing that saves your base from a blackout during critical moments.", @@ -1620,9 +1794,9 @@ "quests.low_voltage.lv_steam_turbine.desc.2": "If you're using a single &3Steam Turbine&r, you only need &a1x Tin Cables&r. On the other hand, if you upgrade to &32 Steam Turbines&r, you should use &a2x Tin Cables&r - else they may end up &cburning&r.\n\nThis is because of the &9Amperage&r mechanic... but that will be explained later so you can enjoy playing. Don't worry!", "quests.low_voltage.lbb.title": "Large Bronze Boiler", "quests.low_voltage.lbb.subtitle": "Boom, boom, boom, boom", - "quests.low_voltage.lbb.desc.1": "The &3Large Boiler&r is an &6optional&r big-boy variant of the Small Boilers. It runs off solid or liquid fuel.\n\nIf you want Steam-based power production, this is an alternative to the Create Steam Engine. Later power options are listed in the &bMV&r chapter.\n\nAt the moment, due to a bug in GTCEu, this machine is prevented from ever exploding, but you should set it up so it never runs out of water like your Small Boilers, so it doesn't explode when the bug is fixed.", + "quests.low_voltage.lbb.desc.1": "The &3Large Boiler&r is an &6optional&r big-boy variant of the Small Boilers. It runs off solid or liquid fuel.\n\nIf you want Steam-based power production, this is an alternative to the Create Steam Engine. Later power options are listed in the &bMV&r chapter.\n\nMake sure you set it up so it never runs out of water like your Small Boilers, otherwise it'll &cexplode&r!.", "quests.low_voltage.lbb.desc.2": "Once fully heated up, the &3LBB&r produces 800 Steam per tick, which is &d400EU/t&r after conversion, or 12.5 Basic Steam Turbines. Such (relatively!) immense power comes at the cost of &la lot&r of burnable fuel. &5With this in consideration&r, the GUI lets you &9throttle&r the Boiler down to 25 percent power for 200 Steam per tick. That's &d100EU/t&r, or slightly above 3 Basic Steam Turbines.\n\nWe recommend holding off making this until you're ready to power your EBF.", - "quests.low_voltage.lbb.desc.3": "In TerraFirmaGreg, you have a few options for fuel. You can use a Hose Pulley to pull Lava out of a deep underground lake, or set up a tree farm to give Charcoal and Creosote. Lastly, there are huge surface-level Coal veins that you can extract with some automated mining machines and turn into Coke and significantly more Creosote than charcoal.", + "quests.low_voltage.lbb.desc.3": "In TerraFirmaGreg, you have a few options for fuel. You can use a Hose Pulley to pull Lava out of a deep underground lake, or set up a tree farm into a coke oven for Charcoal and Creosote. Lastly, there are huge surface-level Coal veins that you can extract with some automated mining machines and turn into Coke and significantly more Creosote than charcoal.\n\nIf you go the tree farm route, you'll need three coke ovens to power a full-throttle LBB.", "quests.low_voltage.lv_polariser.title": "Basic Polariser", "quests.low_voltage.lv_polariser.subtitle": "The Polarizer polarizes!", "quests.low_voltage.lv_polariser.desc": "One of the cheapest - if not the cheapest - &7LV&r machine. Use this to make &6Redstone-free Magnetic Rods&r for your Motors. Whenever you start to batch your Motors, this machine will save you stacks and stacks of Redstone.", @@ -2365,7 +2539,7 @@ "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!", "quests.space_survival.solar_panels.title": "Solar Panels", "quests.space_survival.solar_panels.subtitle": "Praise the Sun!", - "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.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 &932 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 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!", @@ -2429,6 +2603,10 @@ "quests.space_survival.output_bus_railgun.desc.2": "This feature serves two main purposes:&r\n\n&9• Direct item flow&r —\nYou can control which Output Bus receives items.\nTo do this, simply assign a circuit number to the Output Bus,\nthen select that number in your Sender’s rule via the &6Logistics Monitor&r.\n\n&9• Conditional rules&r —\nYou can also set rules to &cstop sending items&r if the circuit rule isn’t respected.\nThis is done not from the Sender tab, but by opening the &3Receiver&r tab in the Monitor.\nFor each circuit number, you can assign a rule that applies only to Output Buses using that number.", "quests.space_survival.output_bus_railgun.desc.3": "To learn more about the available rule types, make sure to check the &7three quests above this one&r.\n\nThey go over each rule in detail and explain how to use them effectively.", "quests.space_survival.output_bus_railgun.task": "Any Railgun Output Bus", + "quests.space_survival.soulbound.title": "Extraterrestrial Death", + "quests.space_survival.soulbound.subtitle": "You're a long way from spawn", + "quests.space_survival.soulbound.desc.1": "In TerraFirmaGreg, you can set your spawn on any dimension (even The Beneath!), but unless you've got a bunch of extra space suits lying around, respawning on the Moon might complicate things.\n\nFirst of all, you'll definitely want your bed to be inside an oxygenated area, so you don't immediately die as soon as you respawn (though in case of a blackout, you should have enough time to break your bed and reset your spawn).", + "quests.space_survival.soulbound.desc.2": "Secondly, you can upgrade each piece of your Space Suit with a &bSoul Pearl&r. This will make them stay equipped when you die!\n\nYou can get these from any of the tougher, hostile Endermen on the Moon.\n\nWe promise it's sci-fi and not magic.", "quests.steam_age": "Early Automation", "quests.steam_age.subtitle": "From Primitive Machines to Steam Power", "quests.steam_age.basic_greate.title": "Basics of Greate", @@ -2571,13 +2749,13 @@ "quests.steam_age.centrifuge.desc": "Ore processing will always be an important part of this modpack, and this machine is another (optional) part of that. By following a different route of ore processing steps (check the Ore Processing Diagram tab in JEI), you can use this centrifuge to get some bonus byproducts out of your ores! The next upgrade to your ores won't be until the LV Thermal Centrifuge, so whether or not this is a worthwhile investment is up to you.", "quests.steam_age.steam_engine.title": "Steam Engine", "quests.steam_age.steam_engine.subtitle": "Time for some real steam power", - "quests.steam_age.steam_engine.desc": "Water wheels and windmills not cutting it any more? It wouldn't be a steam age without a proper steam engine! Each steam engine can output a whole 256 SU, giving you much more power to play with.\n\nBlaze Burners can be crafted without leaving your house, and you can use a Mechanical Arm to automatically feed them solid fuel, or liquid fuel in a bucket (such as creosote). Coal Gems, Anthracite, and Coke can also be used to superheat them.", + "quests.steam_age.steam_engine.desc": "Water wheels and windmills not cutting it any more? It wouldn't be a steam age without a proper steam engine! Each steam engine can output a whole 256 SU, giving you much more power to play with.\n\nBlaze Burners can be crafted without leaving your house, and you can use a Mechanical Arm to automatically feed them solid fuel, or directly pipe liquid fuel (such as creosote). Coal Gems, Anthracite, and Coke can also be used to superheat them.", "quests.steam_age.fuel_sources.title": "More Fuel Sources", "quests.steam_age.fuel_sources.subtitle": "Putting the power in steam power", "quests.steam_age.fuel_sources.desc": "The steam engine can accept more liquid fuels than the High Pressure Liquid Boiler. While Creosote or Lava are the easiest to set up at this point, you might also be interested in various plant-based oils like &eSeed Oil&r from Sunflowers or Canola.\n\nCreosote and Lava also don't scale very well once you get into further tiers, while Biofuel can be upgraded into Diesel and then Cetane-Boosted Diesel, so start setting up a big field for plant oils now if that sounds appealing to you!", - "quests.steam_age.straw.title": "Automatic Liquid Fuelling", - "quests.steam_age.straw.subtitle": "Combustible sippy cups", - "quests.steam_age.straw.desc": "If you right-click a Blaze Burner with a &aStraw&r, you can easily pump your fuel directly into it with any pipe! Hook it up to your Coke Oven's creosote output to keep your Steam Engines going.\n\nYou can check JEI for a full list of what fuels you can use and their efficiency.", + "quests.steam_age.straw.title": "Liquid Fuel Values", + "quests.steam_age.straw.subtitle": "Because the mod is missing a JEI tab", + "quests.steam_age.straw.desc": "Piping liquid fuels will give you roughly the same amount of power as if you used a GregTech steam turbine or combustion generator, but here's the exact numbers since it's not visible in JEI:\n\n- Steam: 128mB per tick\n- Creosote: 25mB per 88 ticks\n- Lava: 1mB per 20 ticks\n\n- Biomass: 5mB per 70 ticks\n- Seed, Soybean, Olive, and Fish Oil: 25mB per 88 ticks\n\n- Heavy Fuel: 2mB per 210 ticks\n- Sulfuric Heavy Fuel: 5mB per 80 ticks\n- Oil: 32mB per 90 ticks\n- Heavy Oil: 5mB per 88 ticks", "quests.steam_age.deployers.title": "Deployers", "quests.steam_age.deployers.subtitle": "Primitive Assembly Line", "quests.steam_age.deployers.desc": "While you could use a single deployer for the rest your time in this chapter, we &3really&r don't recommend it. Setting up a line of deployers along a belt will save heaps of time and sanity, and it's not like you'll be wasting materials either, because you can always reuse them to upgrade your tree farm later.\n\nThese will also make electron tubes significantly cheaper!", @@ -2598,7 +2776,7 @@ "quests.steam_age.circuit_boards.desc": "Combine those Resin Circuit Boards with some Copper Wires and you've got the base for your first &aCircuit&r!", "quests.steam_age.vacuum_chamber.title": "Vacuum Chamber", "quests.steam_age.vacuum_chamber.subtitle": "Putting the Vacuum in Vacuum Tubes", - "quests.steam_age.vacuum_chamber.desc": "This machine is the final step in making your first Vacuum Tubes. Place it above a Basin and give it some power, and make sure the machine is set to Vacuumizing mode.\n\nAs a bonus, this machine can also weld ingots and plates for you, and liquefy glue and rubber, while being heated by either a Charcoal Forge or a Blaze Burner.", + "quests.steam_age.vacuum_chamber.desc": "This machine is the final step in making your first Vacuum Tubes. Place it above a Basin and give it some power, and make sure the machine is set to Vacuumizing mode.\n\nThis machine can also help liquefy glue and rubber while being heated by either a Charcoal Forge or a Blaze Burner.", "quests.steam_age.vacuum_tubes.title": "Electronics #3: Vacuum Tubes", "quests.steam_age.vacuum_tubes.subtitle": "The harder component for circuits", "quests.steam_age.vacuum_tubes.desc": "Crafting Vacuum Tubes might make you question your existence. They're very expensive right now, but they'll get cheaper in a moment - that's the general GregTech philosophy!\n\nVacuum Tubes are also technically your first Ultra Low Voltage (&8ULV&r) Circuit! Congratulations! From here you can either jump right into crafting LV Circuits, or spend some more time in Steam Age, making some other machines out of the Vacuum Tubes you just crafted.", @@ -2880,6 +3058,21 @@ "quests.tfg_tips.maxed_out_toolbelt.subtitle": "That belt must be very heavy at this point...", "quests.tfg_tips.maxed_out_toolbelt.desc": "A &dToolbelt&r can hold 7 extra Pouches, that's 9 tools in one belt!", "quests.tfg_tips.maxed_out_toolbelt.task": "Obtain a maxed out toolbelt.", + "quests.tfg_tips.straw_basket.title": "Straw Basket", + "quests.tfg_tips.straw_basket.subtitle": "As simple as it gets", + "quests.tfg_tips.straw_basket.desc": "The &6Straw Basket&r is a simple basket that can be incredibly useful for managing your inventory before better options are available.\n\nSimply knap some straw to get your very own &6Straw Basket&r!", + "quests.tfg_tips.toolbox.title": "Toolboxes", + "quests.tfg_tips.toolbox.subtitle": "A builders dream", + "quests.tfg_tips.toolbox.desc": "The &dToolbox&r has 8 inventory slots which can each hold 4 stacks of items. Additionally, you can use a &ckeybind&r to access your placed &dToolbox&r from a few blocks away. You can even &bdye&r your &dToolbox&r to personalize it!", + "quests.tfg_tips.first_sacks.title": "Storage Sacks", + "quests.tfg_tips.first_sacks.subtitle": "A step up from vessels", + "quests.tfg_tips.first_sacks.desc": "The &6Leather Sack&r and &3Burlap Sack&r are two options for portable storage with their own pros and cons. It is a good idea to view the container info for each one to know how many &ditem slots&r, the &dstack size&r, and the max &ditem size&r for each sack.\n\n&l&3Tip:&r The &4&oField Guide&r has more specific info on some of the special features of the sacks.", + "quests.tfg_tips.special_sacks.title": "Specialized Sacks", + "quests.tfg_tips.special_sacks.subtitle": "Wait, it can hold how much?", + "quests.tfg_tips.special_sacks.desc": "The &2Seed Pouch&r and &9Ore Sack&r are two sacks that can only hold specific types of items, but make up for it with much larger &dstack sizes&r.\n\nThe &2Seed Pouch&r can hold up to &c128&r of &327&r different types of seeds.\n\nThe &9Ore Sack&r can hold up to &c512&r of &39&r different mined resources. That means it can hold items like ores, rocks, powders, and clays!", + "quests.tfg_tips.frame_pack.title": "Frame Pack", + "quests.tfg_tips.frame_pack.subtitle": "Options can be good!", + "quests.tfg_tips.frame_pack.desc": "The &5Frame Pack&r gives you &318&r slots that can each hold up to &c64&r items. The benefit of the &5Frame Pack&r is that it ignores the default stack size of the items you put into it. That means you can hold up to &c1152&r items in total!", "quests.tfg_tips.vessels.title": "Large and Small Vessels", "quests.tfg_tips.vessels.subtitle": "Clay can be quite useful", "quests.tfg_tips.vessels.desc": "&dSmall Vessels&r have 4 inventory slots while &6Large Vessels&r have 9! The &dSmall Vessel&r is not just for item storage, but is also necessary for smelting and alloying basic metals.\nThe &6Large Vessel&r is heavier to carry, but is great for preserving food.\n\n&l&3Tip:&r&o Large Vessels double as early backpacks!", @@ -2891,10 +3084,10 @@ "quests.tfg_tips.256m_portable_cells.desc": "With &dMEGA Cells&r, you can create cells with &lLudicrous&r data storage!\n\n&l&3Fun Fact:&r&o A single 256M Portable Item Cell can store up to one billion of a single item type! That's enough to fill over 58 thousand chests!", "quests.tfg_tips.backpack_materials.title": "Materials for a Backpack", "quests.tfg_tips.backpack_materials.subtitle": "Sleeping bag not included", - "quests.tfg_tips.backpack_materials.desc": "A &3Sophisticated Backpack&r is the primary way to expand your portable inventory size. The first tier will double your normal inventory, and further tiers increase it even more! It also comes with a wide variety of &afunctional upgrades&r, and different parts of it can be dyed different colors!", + "quests.tfg_tips.backpack_materials.desc": "There are two options for backpacks: the &5Frame Pack&r or the &3Sophisticated Backpack&r\n\nA &5Frame Pack&r is a dense backpack allowing you to store up to &c64&r items in each slot no &omatter their standard stack size&r.\n\nA &3Sophisticated Backpack&r is the primary way to expand your portable inventory size going forward. The first tier will more than double your normal inventory, and further tiers increase it even more! It also comes with a wide variety of &afunctional upgrades&r, and different parts of it can be dyed different colors!", "quests.tfg_tips.first_backpack.title": "Your First Backpack", "quests.tfg_tips.first_backpack.subtitle": "No, the map won't magically appear.", - "quests.tfg_tips.first_backpack.desc": "This is your first &3Sophisticated Backpack.&r It has a total of &c27&r inventory slots and can hold &aone upgrade.&r Check the two branches after this to learn about inventory and backpack upgrades.", + "quests.tfg_tips.first_backpack.desc": "This is your first &3Sophisticated Backpack.&r It has a total of &c36&r inventory slots and can hold &aone upgrade.&r Check the two branches after this to learn about inventory and backpack upgrades.", "quests.tfg_tips.red_steel_backpack.title": "Red Steel Backpack", "quests.tfg_tips.red_steel_backpack.subtitle": "Cooler than a Blue Steel Backpack", "quests.tfg_tips.red_steel_backpack.desc": "A &4Red Steel Backpack&r is your first proper backpack inventory upgrade. It has a total slot count of &c54&r and can hold &atwo upgrades.&r", @@ -2938,6 +3131,10 @@ "quests.tfg_tips.cane.subtitle": "You can even whack people with them!", "quests.tfg_tips.cane.desc": "A &dWalking Cane&r allows you to completely ignore any block that slows your movement, such as &asnow&r, as long as you're carrying it in your &cmain&r or &coff-hand.&r\nAs a bonus, it &bincrease step-height.&r In other words, allows you to walk up one block without jumping. The &dIron Cane&r even allows to walk over fences!", "quests.tfg_tips.cane.task": "Any Cane", + "quests.tfg_tips.hiking.title": "Hiking Boots", + "quests.tfg_tips.hiking.subtitle": "&oThese boots are made for walking", + "quests.tfg_tips.hiking.desc": "&dHiking Boots&r allow you to more easily explore your world! All &dHiking Boots&r allow you to pass through tall grass without resistance. Additionally, each tier of &dHiking Boots&r have progressively more &9armor&r, &9walk speed&r, and &9fall resistance&r along with other boosts.", + "quests.tfg_tips.hiking.task": "Any Hiking Boots", "quests.tfg_tips.glassblowing.title": "Glassblowing", "quests.tfg_tips.glassblowing.subtitle": "Realistic Glassworking!", "quests.tfg_tips.glassblowing.desc": "To make any sort of &dGlass Pane&r or &dBlock&r, you'll need a &3glassblowing&r setup.\n\n&3Glassblowing&r will require some sort of &aBlowpipe&r, and a platform made out of glassblowing blocks to pour the molten glass. Check out the &2Field Guide&r for more information on the shape of the platform and what blocks are valid. You'll have access to glassblowing as soon as you can shape &aBrass!&r", @@ -3315,6 +3512,10 @@ "quests.tfg_tips.plow.title": "Plow", "quests.tfg_tips.plow.subtitle": "Large Scale Farming", "quests.tfg_tips.plow.desc": "If there ever comes the need to till large sections of land for some megafarms, the &dPlow&r can come in clutch.", + "quests.tfg_tips.horseshoes.title": "Horseshoes", + "quests.tfg_tips.horseshoes.subtitle": "Fashionable Equine Footwear", + "quests.tfg_tips.horseshoes.desc": "&aHorseshoes&r are an accessory for your equine companions that boost their &9speed&r, &dfall resistance&r, and &cstep height&r at higher tiers.", + "quests.tfg_tips.horseshoes.task": "Any Horseshoes", "quests.tfg_tips.firmalife.title": "Firmalife", "quests.tfg_tips.firmalife.subtitle": "Thrive in TerraFirmaCraft", "quests.tfg_tips.firmalife.desc": "&2Firmalife&r is a mod all about extending the agricultural and gastronomic experience in TerraFirmaCraft, with touches of miscellaneous features. Includes things such as decorations, more preservation methods, new foods, bees and a plethora of useful gadgets!", diff --git a/kubejs/assets/tfg/lang/pt_br.json b/kubejs/assets/tfg/lang/pt_br.json index 786ba4dc3..fbeb6a0e2 100644 --- a/kubejs/assets/tfg/lang/pt_br.json +++ b/kubejs/assets/tfg/lang/pt_br.json @@ -21,8 +21,23 @@ "biome.tfg.moon/lunar_lights_sparse": "Arbustos de Lightbloom", "biome.tfg.moon/lunar_plains": "Planícies Lunares", "biome.tfg.moon/lunar_sands": "Areias Lunares", + "biome.tfg.mars/martian_deep_desert": "Dunas Marcianas Profundas", + "biome.tfg.mars/martian_dunes": "Deserto Marciano", + "biome.tfg.mars/martian_dune_edge": "Borda do Deserto Marciano", + "biome.tfg.mars/martian_river": "Costas Marcianas", + "biome.tfg.mars/martian_mountains": "Vulcão Marciano Extinto", + "biome.tfg.mars/amber_edge": "Borda Âmbar", + "biome.tfg.mars/amber_plains": "Planícies Âmbar", + "biome.tfg.mars/amber_hills": "Colinas Âmbar", + "biome.tfg.mars/rusticus_edge": "Borda Rústica", + "biome.tfg.mars/rusticus_plains": "Pradaria Rústica", + "biome.tfg.mars/rusticus_hills": "Charneca Rústica", + "biome.tfg.mars/sangnum_edge": "Borda Sangnum", + "biome.tfg.mars/sangnum_plains": "Pradaria Sangnum", + "biome.tfg.mars/sangnum_hills": "Urzal Sangnum", "block.tfg.piglin_disguise": "Disfarce de Piglin", "block.tfg.piglin_disguise_block": "Disfarce de Piglin", + "block.tfg.dry_ice": "Gelo Seco", "block.tfg.decorative_vase.black": "Vaso Decorativo Preto", "block.tfg.decorative_vase.gray": "Vaso Decorativo Cinza", "block.tfg.decorative_vase.light_gray": "Vaso Decorativo Cinza Claro", @@ -130,6 +145,12 @@ "block.tfg.migmatite_support": "Suporte de Migmatito", "block.tfg.travertine_support_horizontal": "Suporte Horizontal de Travertino", "block.tfg.travertine_support": "Suporte de Travertino", + "block.tfg.glacian_support": "Suporte Glacial", + "block.tfg.glacian_support_horizontal": "Suporte Horizontal Glacial", + "block.tfg.strophar_support": "Suporte Strophar", + "block.tfg.strophar_support_horizontal": "Suporte Horizontal Strophar", + "block.tfg.aeronos_support": "Suporte Aeronos", + "block.tfg.aeronos_support_horizontal": "Suporte Horizontal Aeronos", "block.tfg.rock.hardened_deepslate": "Migmatito Endurecido", "block.tfg.rock.hardened_blackstone": "Piroxenito Endurecido", "block.tfg.rock.hardened_dripstone": "Travertino Endurecido", @@ -138,6 +159,9 @@ "block.tfg.spike.dripstone_spike": "Espinho de Travertino", "block.tfg.loose.deepslate": "Rocha Solta de Migmatito", "block.tfg.loose.dripstone": "Rocha Solta de Travertino", + "block.tfg.mushroom_roots": "Raízes de Cogumelo", + "block.tfg.mushroom_sprouts": "Brotos de Cogumelo", + "block.tfg.charred_log": "Tronco Carbonizado", "block.tfg.rock.hardened_moon_stone": "Anortosito Endurecido", "block.tfg.spike.moon_stone_spike": "Espinho de Anortosito", "block.tfg.loose.moon_stone": "Rocha Solta de Anortosito", @@ -159,6 +183,24 @@ "block.tfg.rock.hardened_permafrost": "Permafrost Endurecido", "block.tfg.spike.permafrost_spike": "Espinho de Permafrost", "block.tfg.loose.permafrost": "Pedaço de Permafrost", + "block.tfg.rock.raw.stromatolite": "Estromatólito Bruto", + "block.tfg.rock.spike.stromatolite": "Espinho de Estromatólito", + "block.tfg.rock.raw.geyserite": "Geiserita Bruta", + "block.tfg.rock.spike.geyserite": "Espinho de Geiserita", + "block.tfg.rock.hardened_red_granite": "Granito Vermelho Endurecido", + "block.tfg.loose.red_granite": "Rocha Solta de Granito Vermelho", + "block.tfg.spike.red_granite_spike": "Espinho de Granito Vermelho", + "block.tfg.ash_pile": "Pilha de Cinzas", + "block.tfg.pile.white_sand": "Areia Branca", + "block.tfg.pile.black_sand": "Areia Negra", + "block.tfg.pile.brown_sand": "Areia Marrom", + "block.tfg.pile.red_sand": "Areia Vermelha", + "block.tfg.pile.yellow_sand": "Areia Amarela", + "block.tfg.pile.green_sand": "Areia Verde", + "block.tfg.pile.pink_sand": "Areia Rosa", + "block.tfg.pile.moon_sand": "Areia Lunar", + "block.tfg.pile.mars_sand": "Areia Argilita", + "block.tfg.pile.venus_sand": "Areia Traquito", "block.tfg.lunar_roots": "Lightblooms Lunares", "block.tfg.lunar_sprouts": "Grama-luz Lunar", "block.tfg.lunar_chorus_plant": "Planta do Coro", @@ -171,19 +213,193 @@ "block.tfg.mv_aqueous_accumulator": "§bAcumulador Aquoso Avançado§r", "block.tfg.hv_aqueous_accumulator": "§6Acumulador Aquoso Avançado II§r", "block.tfg.ev_aqueous_accumulator": "§5Acumulador Aquoso Avançado III§r", + "block.tfg.iv_aqueous_accumulator": "§9Acumulador Aquoso Elite§r", + "block.tfg.luv_aqueous_accumulator": "§dAcumulador Aquoso Elite II§r", + "block.tfg.zpm_aqueous_accumulator": "§cAcumulador Aquoso Elite III§r", + "block.tfg.uv_aqueous_accumulator": "§3Acumulador Aquoso Supremo§r", "block.tfg.electric_greenhouse": "Estufa Elétrica", "block.tfg.lv_food_processor": "Processador de Alimentos Básico", "block.tfg.mv_food_processor": "§bProcessador de Alimentos Avançado§r", "block.tfg.hv_food_processor": "§6Processador de Alimentos Avançado II§r", "block.tfg.ev_food_processor": "§5Processador de Alimentos Avançado III§r", + "block.tfg.iv_food_processor": "§9Processador de Alimentos Elite§r", + "block.tfg.luv_food_processor": "§dProcessador de Alimentos Elite II§r", + "block.tfg.zpm_food_processor": "§cProcessador de Alimentos Elite III§r", + "block.tfg.uv_food_processor": "§3Processador de Alimentos Supremo§r", "block.tfg.lv_food_oven": "Forno Elétrico Básico", "block.tfg.mv_food_oven": "§bForno Elétrico Avançado§r", "block.tfg.hv_food_oven": "§6Forno Elétrico Avançado II§r", "block.tfg.ev_food_oven": "§5Forno Elétrico Avançado III§r", + "block.tfg.iv_food_oven": "§9Forno Elétrico Elite§r", + "block.tfg.luv_food_oven": "§dForno Elétrico Elite II§r", + "block.tfg.zpm_food_oven": "§cForno Elétrico Elite III§r", + "block.tfg.uv_food_oven": "§3Forno Elétrico Supremo§r", "block.tfg.lv_food_refrigerator": "Geladeira Básica", "block.tfg.mv_food_refrigerator": "§bGeladeira Avançada", "block.tfg.hv_food_refrigerator": "§6Geladeira Avançada II§r", "block.tfg.ev_food_refrigerator": "§5Geladeira Avançada III§r", + "block.tfg.iv_food_refrigerator": "§9Geladeira Elite§r", + "block.tfg.lv_gas_pressurizer": "Pressurizador de Gás Básico", + "block.tfg.mv_gas_pressurizer": "§bPressurizador de Gás Avançado§r", + "block.tfg.hv_gas_pressurizer": "§6Pressurizador de Gás Avançado II§r", + "block.tfg.ev_gas_pressurizer": "§5Pressurizador de Gás Avançado III§r", + "block.tfg.iv_gas_pressurizer": "§9Pressurizador de Gás Elite§r", + "block.tfg.luv_gas_pressurizer": "§dPressurizador de Gás Elite II§r", + "block.tfg.zpm_gas_pressurizer": "§cPressurizador de Gás Elite III§r", + "block.tfg.uv_gas_pressurizer": "§3Pressurizador de Gás Supremo§r", + "block.tfg.fluid.semiheavy_ammoniacal_water": "Água Amoniacal Semipesada", + "block.tfg.grass.mars_dirt": "Terra Marciana", + "block.tfg.grass.mars_clay_dirt": "Terra de Argila Marciana", + "block.tfg.grass.mars_farmland": "Terra Arada Marciana", + "block.tfg.grass.amber_mycelium": "Micélio Âmbar", + "block.tfg.grass.amber_clay_mycelium": "Micélio de Argila Âmbar", + "block.tfg.grass.amber_kaolin_mycelium": "Micélio de Caulim Âmbar", + "block.tfg.grass.rusticus_mycelium": "Micélio Rústico", + "block.tfg.grass.rusticus_clay_mycelium": "Micélio de Argila Rústico", + "block.tfg.grass.rusticus_kaolin_mycelium": "Micélio de Caulim Rústico", + "block.tfg.grass.sangnum_mycelium": "Micélio Sangnum", + "block.tfg.grass.sangnum_clay_mycelium": "Micélio de Argila Sangnum", + "block.tfg.grass.sangnum_kaolin_mycelium": "Micélio de Caulim Sangnum", + "block.tfg.spice": "Depósito de Ostrum", + "block.tfg.saplings.crimson": "Fungos Carmesim", + "block.tfg.saplings.warped": "Fungos Distorcidos", + "block.tfg.saplings.alphacene": "Cogumelo Alphacene", + "block.tfg.saplings.aeronos": "Cogumelo Aeronos", + "block.tfg.saplings.strophar": "Cogumelo Strophar", + "block.tfg.saplings.glacian": "Cogumelo Glacial", + "block.tfg.groundcover.glider_feather": "Pena de Planador", + "block.tfg.groundcover.wraptor_feather": "Pena de Wraptor", + "block.tfg.groundcover.aeronos_stick": "Galho Aeronos", + "block.tfg.groundcover.strophar_stick": "Galho Strophar", + "block.tfg.groundcover.glacian_stick": "Galho Glacial", + "block.tfg.groundcover.alphacene_stick": "Galho Alphacene", + "block.tfg.electromagnetic_accelerator": "Acelerador Eletromagnético", + "block.tfg.superconductor_coil_large": "Bobina Supercondutora Grande", + "block.tfg.superconductor_coil_small": "Bobina Supercondutora Pequena", + "block.tfg.interplanetary_item_launcher": "Arma de Raios Interplanetária", + "block.tfg.interplanetary_item_receiver": "Receptor Interplantetário", + "block.tfg.interplanetary_logistics_monitor": "Monitor Logístico Interplanetário", + "block.tfg.railgun_ammo_loader": "Carregador para Arma de Raios", + "block.tfg.ulv_railgun_item_loader_in": "§8Entrada da Arma de Raios Interplanetária ULV§r", + "block.tfg.lv_railgun_item_loader_in": "§7Entrada da Arma de Raios Interplanetária LV§r", + "block.tfg.mv_railgun_item_loader_in": "§bEntrada da Arma de Raios Interplanetária MV§r", + "block.tfg.hv_railgun_item_loader_in": "§6Entrada da Arma de Raios Interplanetária HV§r", + "block.tfg.ev_railgun_item_loader_in": "§5Entrada da Arma de Raios Interplanetária EV§r", + "block.tfg.iv_railgun_item_loader_in": "§9Entrada da Arma de Raios Interplanetária IV§r", + "block.tfg.luv_railgun_item_loader_in": "§dEntrada da Arma de Raios Interplanetária LuV§r", + "block.tfg.zpm_railgun_item_loader_in": "§cEntrada da Arma de Raios Interplanetária ZPM§r", + "block.tfg.uv_railgun_item_loader_in": "§3Entrada da Arma de Raios Interplanetária UV§r", + "block.tfg.uhv_railgun_item_loader_in": "§4Entrada da Arma de Raios Interplanetária UHV§r", + "block.tfg.ulv_railgun_item_loader_out": "§8Saída da Arma de Raios Interplanetária ULV§r", + "block.tfg.lv_railgun_item_loader_out": "§7Saída da Arma de Raios Interplanetária LV§r", + "block.tfg.mv_railgun_item_loader_out": "§bSaída da Arma de Raios Interplanetária MV§r", + "block.tfg.hv_railgun_item_loader_out": "§6Saída da Arma de Raios Interplanetária HV§r", + "block.tfg.ev_railgun_item_loader_out": "§5Saída da Arma de Raios Interplanetária EV§r", + "block.tfg.iv_railgun_item_loader_out": "§9Saída da Arma de Raios Interplanetária IV§r", + "block.tfg.luv_railgun_item_loader_out": "§dSaída da Arma de Raios Interplanetária LuV§r", + "block.tfg.zpm_railgun_item_loader_out": "§cSaída da Arma de Raios Interplanetária ZPM§r", + "block.tfg.uv_railgun_item_loader_out": "§3Saída da Arma de Raios Interplanetária UV§r", + "block.tfg.uhv_railgun_item_loader_out": "§4Saída da Arma de Raios Interplanetária UHV§r", + "block.tfg.reflector": "Bloco Refletor", + "block.tfg.sunflower": "Girassol", + "block.tfg.sunflower_wild": "Girassol Silvestre", + "block.tfg.sunflower_dead": "Girassol Morto", + "block.tfg.rapeseed": "Canola", + "block.tfg.rapeseed_wild": "Canola Silvestre", + "block.tfg.rapeseed_dead": "Canola Morta", + "block.tfg.flax": "Linho", + "block.tfg.flax_wild": "Linho Silvestre", + "block.tfg.flax_dead": "Linho Morto", + "block.tfg.casings.machine_casing_iron_desh": "Invólucro de Máquina de Desh", + "block.tfg.casings.machine_casing_stainless_evaporation": "Invólucro de Máquina Evaporadora de Aço Inox", + "block.tfg.casings.machine_casing_vacuum_engine_intake": "Carcaça de Admissão a Vácuo", + "block.tfg.casings.machine_casing_mars": "Carcaça Antipoeira Robusta", + "block.tfg.casings.machine_casing_blue_solar_panel": "Invólucro Solar Básico", + "block.tfg.casings.machine_casing_green_solar_panel": "Invólucro Solar Avançado", + "block.tfg.casings.machine_casing_red_solar_panel": "Invólucro Solar Elite", + "block.tfg.machine_casing_aluminium_plated_steel": "Invólucro de Aço Aluminizado", + "block.tfg.casings.machine_casing_ultraviolet": "§dInvólucro de §fMáquina Ultravioleta", + "block.tfg.casings.machine_casing_bioculture": "Invólucro de Máquina de Biocultura", + "block.tfg.casings.machine_casing_bioculture_glass": "Vidro de Biocultura", + "block.tfg.casings.bioculture_rotor_primary": "Rotor Primário de Biocultura", + "block.tfg.casings.bioculture_rotor_secondary": "Rotor Secundário de Biocultura", + "block.tfg.sand.fluorapatite.blue": "Areia Fluoroapatita Azul", + "block.tfg.sandstone.raw.fluorapatite.blue": "Arenito Fluoroapatita Azul", + "block.tfg.sandstone.wall.raw.fluorapatite.blue": "Muro de Arenito Fluoroapatita Azul", + "block.tfg.sandstone.slab.raw.fluorapatite.blue": "Laje de Arenito Fluoroapatita Azul", + "block.tfg.sandstone.stairs.raw.fluorapatite.blue": "Escada de Arenito Fluoroapatita Azul", + "block.tfg.sandstone.smooth.fluorapatite.blue": "Arenito Fluoroapatita Azul Liso", + "block.tfg.sandstone.wall.smooth.fluorapatite.blue": "Muro de Arenito Fluoroapatita Azul Liso", + "block.tfg.sandstone.slab.smooth.fluorapatite.blue": "Laje de Arenito Fluoroapatita Azul Liso", + "block.tfg.sandstone.stairs.smooth.fluorapatite.blue": "Escada de Arenito Fluoroapatita Azul Liso", + "block.tfg.sandstone.fluorapatite.blue": "Arenito Fluoroapatita Azul Talhado", + "block.tfg.sandstone.smooth.chiseled.fluorapatite.blue": "Arenito Fluoroapatita Azul Entalhado", + "block.tfg.sand.fluorapatite.green": "Areia Fluoroapatita Verde", + "block.tfg.sandstone.raw.fluorapatite.green": "Arenito Fluoroapatita Verde", + "block.tfg.sandstone.wall.raw.fluorapatite.green": "Muro de Arenito Fluoroapatita Verde", + "block.tfg.sandstone.slab.raw.fluorapatite.green": "Laje de Arenito Fluoroapatita Verde", + "block.tfg.sandstone.stairs.raw.fluorapatite.green": "Escada de Arenito Fluoroapatita Verde", + "block.tfg.sandstone.smooth.fluorapatite.green": "Arenito Fluoroapatita Verde Liso", + "block.tfg.sandstone.wall.smooth.fluorapatite.green": "Muro de Arenito Fluoroapatita Verde Liso", + "block.tfg.sandstone.slab.smooth.fluorapatite.green": "Laje de Arenito Fluoroapatita Verde Liso", + "block.tfg.sandstone.stairs.smooth.fluorapatite.green": "Escada de Arenito Fluoroapatita Verde Liso", + "block.tfg.sandstone.fluorapatite.green": "Arenito Fluoroapatita Verde Talhado", + "block.tfg.sandstone.smooth.chiseled.fluorapatite.green": "Arenito Fluoroapatita Verde Entalhado", + "block.tfg.sand.fluorapatite.brown": "Areia Fluoroapatita Marrom", + "block.tfg.sandstone.raw.fluorapatite.brown": "Arenito Fluoroapatita Marrom", + "block.tfg.sandstone.wall.raw.fluorapatite.brown": "Muro de Arenito Fluoroapatita Marrom", + "block.tfg.sandstone.slab.raw.fluorapatite.brown": "Laje de Arenito Fluoroapatita Marrom", + "block.tfg.sandstone.stairs.raw.fluorapatite.brown": "Escada de Arenito Fluoroapatita Marrom", + "block.tfg.sandstone.smooth.fluorapatite.brown": "Arenito Fluoroapatita Marrom Liso", + "block.tfg.sandstone.wall.smooth.fluorapatite.brown": "Muro de Arenito Fluoroapatita Marrom Liso", + "block.tfg.sandstone.slab.smooth.fluorapatite.brown": "Laje de Arenito Fluoroapatita Marrom Liso", + "block.tfg.sandstone.stairs.smooth.fluorapatite.brown": "Escada de Arenito Fluoroapatita Marrom Liso", + "block.tfg.sandstone.fluorapatite.brown": "Arenito Fluoroapatita Marrom Talhado", + "block.tfg.sandstone.smooth.chiseled.fluorapatite.brown": "Arenito Fluoroapatita Marrom Entalhado", + "block.tfg.sand.fluorapatite.orange": "Areia Fluoroapatita Laranja", + "block.tfg.sandstone.raw.fluorapatite.orange": "Arenito Fluoroapatita Laranja", + "block.tfg.sandstone.wall.raw.fluorapatite.orange": "Muro de Arenito Fluoroapatita Laranja", + "block.tfg.sandstone.slab.raw.fluorapatite.orange": "Laje de Arenito Fluoroapatita Laranja", + "block.tfg.sandstone.stairs.raw.fluorapatite.orange": "Escada de Arenito Fluoroapatita Laranja", + "block.tfg.sandstone.smooth.fluorapatite.orange": "Arenito Fluoroapatita Laranja Liso", + "block.tfg.sandstone.wall.smooth.fluorapatite.orange": "Muro de Arenito Fluoroapatita Laranja Liso", + "block.tfg.sandstone.slab.smooth.fluorapatite.orange": "Laje de Arenito Fluoroapatita Laranja Liso", + "block.tfg.sandstone.stairs.smooth.fluorapatite.orange": "Escada de Arenito Fluoroapatita Laranja Liso", + "block.tfg.sandstone.fluorapatite.orange": "Arenito Fluoroapatita Laranja Talhado", + "block.tfg.sandstone.smooth.chiseled.fluorapatite.orange": "Arenito Fluoroapatita Laranja Entalhado", + "block.tfg.sand.fluorapatite.white": "Areia Fluoroapatita Branca", + "block.tfg.sandstone.raw.fluorapatite.white": "Arenito Fluoroapatita Branco", + "block.tfg.sandstone.wall.raw.fluorapatite.white": "Muro de Arenito Fluoroapatita Branco", + "block.tfg.sandstone.slab.raw.fluorapatite.white": "Laje de Arenito Fluoroapatita Branco", + "block.tfg.sandstone.stairs.raw.fluorapatite.white": "Escada de Arenito Fluoroapatita Branco", + "block.tfg.sandstone.smooth.fluorapatite.white": "Arenito Fluoroapatita Branco Liso", + "block.tfg.sandstone.wall.smooth.fluorapatite.white": "Muro de Arenito Fluoroapatita Branco Liso", + "block.tfg.sandstone.slab.smooth.fluorapatite.white": "Laje de Arenito Fluoroapatita Branco Liso", + "block.tfg.sandstone.stairs.smooth.fluorapatite.white": "Escada de Arenito Fluoroapatita Branco Liso", + "block.tfg.sandstone.fluorapatite.white": "Arenito Fluoroapatita Branco Talhado", + "block.tfg.sandstone.smooth.chiseled.fluorapatite.white": "Arenito Fluoroapatita Branco Entalhado", + "block.tfg.sand.fluorapatite.yellow": "Areia Fluoroapatita Amarela", + "block.tfg.sandstone.raw.fluorapatite.yellow": "Arenito Fluoroapatita Amarelo", + "block.tfg.sandstone.wall.raw.fluorapatite.yellow": "Muro de Arenito Fluoroapatita Amarelo", + "block.tfg.sandstone.slab.raw.fluorapatite.yellow": "Laje de Arenito Fluoroapatita Amarelo", + "block.tfg.sandstone.stairs.raw.fluorapatite.yellow": "Escada de Arenito Fluoroapatita Amarelo", + "block.tfg.sandstone.smooth.fluorapatite.yellow": "Arenito Fluoroapatita Amarelo Liso", + "block.tfg.sandstone.wall.smooth.fluorapatite.yellow": "Muro de Arenito Fluoroapatita Amarelo Liso", + "block.tfg.sandstone.slab.smooth.fluorapatite.yellow": "Laje de Arenito Fluoroapatita Amarelo Liso", + "block.tfg.sandstone.stairs.smooth.fluorapatite.yellow": "Escada de Arenito Fluoroapatita Amarelo Liso", + "block.tfg.sandstone.fluorapatite.yellow": "Arenito Fluoroapatita Amarelo Talhado", + "block.tfg.sandstone.smooth.chiseled.fluorapatite.yellow": "Arenito Fluoroapatita Amarelo Entalhado", + "block.tfg.large_nest_box": "Ninho Carmesim Grande", + "tfg.block_entity.large_nest_box": "Caixa-ninho Grande", + "block.tfg.large_nest_box_warped": "Ninho Distorcido Grande", + "fluid.tfg.nether_slurry": "Lama do Nether", + "fluid.tfg.enriched_nether_slurry": "Lama do Nether Enriquecida", + "fluid.tfg.ender_slurry": "Lama do Ender", + "fluid.tfg.enriched_ender_slurry": "Lama do Ender Enriquecida", + "fluid.tfg.semiheavy_ammoniacal_water": "Água Amoniacal Semipesada", + "fluid.tfg.heavy_water": "Água Pesada", + "fluid.tfg.sulfur_fumes": "Fumos de Enxofre", + "fluid.tfg.super_heated_slurry": "Lama Superaquecida", "item.tfg.antipoison_pill": "Pílula Antiveneno", "item.tfg.haste_pill": "Pílula de Pressa", "item.tfg.night_vision_pill": "Pílula de Visão Noturna", @@ -210,11 +426,13 @@ "item.tfg.resistance_salvo": "Pomada de Resistência", "item.tfg.paraffin_wax": "Cera de Parafina", "item.tfg.flint_arrow_head": "Ponta de Flecha de Sílex", - "item.tfg.fletching": "Plumagem de Flecha", + "item.tfg.fletching": "Emplumamento", "item.tfg.phantom_silk": "Seda Fastasma", "item.tfg.phantom_thread": "Linha Fantasma", "item.tfg.polycaprolactam_fabric": "Tecido de Policaprolactama", "item.tfg.polycaprolactam_string": "Linha de Policaprolactama", + "item.tfg.space_suit_fabric": "Tecido de Traje Espacial", + "item.tfg.vitrified_pearl": "Pérola do Ender Vitrificada", "item.tfg.fishing_net.wood": "Rede de Pesca de Madeira", "item.tfg.fishing_net.brass": "Rede de Pesca de Latão", "item.tfg.fishing_net.rose_gold": "Rede de Pesca de Ouro Rosé", @@ -224,13 +442,13 @@ "item.tfg.fishing_net.tin_alloy": "Rede de Pesca de Liga de Estanho", "item.tfg.fishing_net.magnalium": "Rede de Pesca de Magnálio", "item.tfg.conifer_rosin": "Resina de Conífera", - "item.tfg.hardwood_strip": "Tira de Hardwood", - "item.tfg.soaked_hardwood_strip": "Tira de Hardwood Encharcada", + "item.tfg.hardwood_strip": "Tira de Madeira Dura", + "item.tfg.soaked_hardwood_strip": "Tira de Madeira Dura Encharcada", "item.tfg.prepared_leather_gloves": "Luvas de Couro Preparadas", "item.tfg.latex_soaked_gloves": "Luvas Encharcadas em Látex", - "item.tfg.spade_head_extruder_mold": "Molde de Extrusora (Cabeça de Pá de Jardim)", "item.tfg.unfired_chalk": "Bastão de Giz Molhado", "item.tfg.armor_stand_arms": "Suporte de Armadura com Braços", + "item.tfg.flint_club_head": "Cabeça de Clava de Sílex", "item.tfg.brick.deepslate": "Tijolo de Migmatito", "item.tfg.loose.moon_stone": "Anortosito Solto", "item.tfg.brick.moon_stone": "Tijolo de Anortosito", @@ -245,6 +463,8 @@ "item.tfg.brick.glacio_stone": "Tijolo de Fonolito", "item.tfg.loose.permafrost": "Pedaço de Permafrost", "item.tfg.brick.permafrost": "Tijolo de Permafrost", + "item.tfg.loose.red_granite": "Granito Vermelho Solto", + "item.tfg.brick.red_granite": "Tijolo de Granito Vermelho", "item.tfg.terra_firma_greg": "TerraFirmaGreg", "item.tfg.scaffolding_frame": "Estrutura de Andaime", "item.tfg.airship_hull": "Casco de Dirigível", @@ -274,8 +494,165 @@ "item.tfg.zpm_universal_circuit": "Circuito Universal ZPM", "item.tfg.uv_universal_circuit": "Circuito Universal UV", "item.tfg.uhv_universal_circuit": "Circuito Universal UHV", + "item.tfg.chipboard_composite": "Compósito de Aglomerado", "item.tfg.piglin_disguise": "Disfarce de Piglin", "item.tfg.trowel": "Talocha de pedreiro", + "item.tfg.foil_pack": "Pacote de Papel Alumínio", + "item.tfg.used_foil_pack": "Pacote de Papel Alumínio Usado", + "item.tfg.clean_foil_pack": "Pacote de Papel Alumínio Limpo", + "item.tfg.dry_ice": "Gelo Seco", + "item.tfg.food.raw_birt": "Bipi Cru", + "item.tfg.food.cooked_birt": "Bipi Cozido", + "item.tfg.food.raw_crawlermari": "Raw Crawlermari", + "item.tfg.food.cooked_crawlermari": "Cooked Crawlermari", + "item.tfg.food.raw_limpet": "Minerol Cru", + "item.tfg.food.cooked_limpet": "Minerol Cozido", + "item.tfg.food.raw_moon_rabbit": "Lunelho Cru", + "item.tfg.food.cooked_moon_rabbit": "Lunelho Cozido", + "item.tfg.spawn_egg.moon_rabbit": "Ovo Gerador de Lunelho", + "item.tfg.food.freeze_dried.red_grapes": "Uva Vermelha Liofilizadas", + "item.tfg.food.freeze_dried.white_grapes": "White Grapes Liofilizadas", + "item.tfg.food.freeze_dried.glow_berries": "Bagas Brilhantes Liofilizadas", + "item.tfg.food.freeze_dried.chorus_fruit": "Fruta do Coro Liofilizada", + "item.tfg.food.freeze_dried.popped_chorus_fruit": "Fruta do Coro Estourada Liofilizada", + "item.tfg.food.freeze_dried.blackberry": "Amora Liofilizada", + "item.tfg.food.freeze_dried.blueberry": "Mirtilo Liofilizado", + "item.tfg.food.freeze_dried.bunchberry": "Bunchberry Liofilizada", + "item.tfg.food.freeze_dried.cloudberry": "Amora-ártica Liofilizada", + "item.tfg.food.freeze_dried.cranberry": "Cranberries Liofilizadas", + "item.tfg.food.freeze_dried.elderberry": "Sabugueiro Liofilizado", + "item.tfg.food.freeze_dried.gooseberry": "Groselha Liofilizada", + "item.tfg.food.freeze_dried.raspberry": "Framboesa Liofilizada", + "item.tfg.food.freeze_dried.snowberry": "Amora-branca Liofilizada", + "item.tfg.food.freeze_dried.strawberry": "Morango Liofilizado", + "item.tfg.food.freeze_dried.wintergreen_berry": "Gaultéria Liofilizada", + "item.tfg.food.freeze_dried.banana": "Banana Liofilizada", + "item.tfg.food.freeze_dried.cherry": "Cereja Liofilizada", + "item.tfg.food.freeze_dried.green_apple": "Maçã Verde Liofilizada", + "item.tfg.food.freeze_dried.lemon": "Limão Liofilizado", + "item.tfg.food.freeze_dried.olive": "Azeitonas Liofilizadas", + "item.tfg.food.freeze_dried.orange": "Laranja Liofilizada", + "item.tfg.food.freeze_dried.peach": "Pêra Liofilizada", + "item.tfg.food.freeze_dried.plum": "Ameixa Liofilizada", + "item.tfg.food.freeze_dried.red_apple": "Maçã Vermelha Liofilizada", + "item.tfg.food.freeze_dried.pumpkin_chunks": "Pedaços de Abóbora Liofilizada", + "item.tfg.food.freeze_dried.melon_slice": "Fatias de Melancia Liofilizada", + "item.tfg.food.freeze_dried.fig": "Figo Liofilizado", + "item.tfg.food.freeze_dried.pineapple": "Abacaxi Liofilizado", + "item.tfg.food.freeze_dried.blossom_berry": "Baga-flor Liofilizada", + "item.tfg.food.freeze_dried.shadow_berry": "Baga-Nox Liofilizada", + "item.tfg.food.freeze_dried.cave_pumpkin": "Pedaços de Luminbóbora Liofilizada", + "item.tfg.food.calorie_paste": "Pasta de Calorias", + "item.tfg.food.meal_bag": "Saco de Refeição", + "item.tfg.food.ice_soup": "Sopa Gelada", + "item.tfg.food.raw_glacian_mutton": "Carneiro Glacial Cru", + "item.tfg.food.cooked_glacian_mutton": "Carneiro Glacial Cozido", + "item.tfg.spawn_egg.glacian_ram": "Ovo Gerador de Carneiro Glacial", + "item.tfg.food.raw_sniffer_beef": "Bife de Farejador Cru", + "item.tfg.food.cooked_sniffer_beef": "Bife de Farejador Cozido", + "item.tfg.spawn_egg.sniffer": "Ovo Gerador de Farejador", + "item.tfg.roasted_sunflower_seeds": "Sementes de Girassol Torradas", + "item.tfg.sunflower_seeds": "Sementes de Girassol", + "item.tfg.sunflower_product": "Chapéu de Girassol", + "item.tfg.rapeseed_seeds": "Sementes de Canola", + "item.tfg.rapeseed_product": "Óvulos de Canola", + "item.tfg.flintlock_mechanism": "Mecanismo de Pederneira", + "item.tfg.advanced_clockwork_mechanism": "Mecanismo de Relógio Avançado", + "item.tfg.certus_mechanism": "Mecanismo de Certus", + "item.tfg.small_bullet_casing": "Capa de Bala Pequena", + "item.tfg.large_bullet_casing": "Capa de Bala Grande", + "item.tfg.shell_bullet_casing": "Capa de Bala de Cartucho", + "item.tfg.nitrocellulose": "Nitrocelulose", + "item.tfg.aes_wool": "Lã de Silicato Alcalino-Terroso", + "item.tfg.aes_compressed_wool": "Lã de Silicato Alcalino-Terroso Compactada", + "item.tfg.aes_insulation_sheet": "Folha de Isolamento de Silicato Alcalino-Terroso", + "item.tfg.aes_insulation_roll": "Rolo de Isolamento de Silicato Alcalino-Terroso", + "item.tfg.rocket_cone_t2": "Coifa de Foguete Melhorado", + "item.tfg.rocket_fin_t2": "Aleta de Foguete Melhorada", + "item.tfg.cryo_fluix_pearl": "Pérola Fluix Criogenizada", + "item.tfg.marker.earth_orbit": "Órbita Terrestre", + "item.tfg.marker.moon_orbit": "Órbita Lunar", + "item.tfg.marker.mars_orbit": "Órbita Marciana", + "item.tfg.marker.venus_orbit": "Órbita Venusiana", + "item.tfg.marker.mercury_orbit": "Órbita Mercuriana", + "item.tfg.railgun_ammo_shell": "Cartucho de Arma de Raios", + "item.tfg.sulfur_fumes_bucket": "Balde de Fumos de Enxofre", + "item.tfg.super_heated_slurry_bucket": "Balde de Lama Superaquecida", + "item.tfg.cryogenized_fluix_bucket": "Balde de Fluix Criogenizado", + "item.tfg.fluix_bucket": "Balde de Fluix Líquido", + "item.tfg.latex_bucket": "Balde de Látex", + "item.tfg.vulcanized_latex_bucket": "Balde de Látex Vulcanizado", + "item.tfg.conifer_pitch_bucket": "Balde de Piche de Conífera", + "item.tfg.compressed_nitrox_bucket": "Balde de Nitrox", + "item.tfg.compressed_heliox_bucket": "Balde de Heliox", + "item.tfg.compressed_heliox_3_bucket": "Balde de Heliox-3", + "item.tfg.compressed_trimix_bucket": "Balde de Trimix 50/30/20", + "item.tfg.compressed_trimix_3_bucket": "Balde de Trimix-350/30/20", + "item.tfg.semiheavy_ammoniacal_water_bucket": "Balde de Água Amoniacal Semi-pesada", + "item.tfg.harvest_basket": "Cesto de Colheita", + "item.tfg.aluminium_harvest_basket": "Cesto de Colheita de Alumínio", + "item.tfg.wood.lumber.aeronos": "Tábuas de Aeronos", + "item.tfg.wood.lumber.strophar": "Tábuas de Strophar", + "item.tfg.wood.lumber.glacian": "Tábuas de Glacian", + "item.tfg.twigs.aeronos": "Galho de Aeronos", + "item.tfg.twigs.strophar": "Galho de Strophar", + "item.tfg.twigs.glacian": "Galho de Glacian", + "item.tfg.twigs.alphacene": "Galho de Alphacene", + "item.tfg.glacian_wool": "Lã de Carneiro Glacial", + "item.tfg.sniffer_wool": "Tufos Ricos em Minerais", + "item.tfg.sniffer_egg": "Ovo de Farejador", + "item.tfg.wraptor_wool": "Penas Ricas em Minerais", + "item.tfg.wraptor_egg": "Ovo de Distráptor", + "item.tfg.wraptor_sugar": "Açúcar de Distráptor", + "item.tfg.aes_polyurethane": "Espuma de R-Poliuretano Reforçado com Bio-AES", + "item.tfg.mli_shielding": "Blindagem Isolada Multicamadas", + "item.tfg.rocket_cone_t3": "Coifa de Foguete Avançada", + "item.tfg.rocket_fin_t3": "Aleta de Foguete Avançada", + "item.tfg.elite_power_thruster": "§aPropulsor de Potência Elite", + "item.tfg.silica_aerogel": "Aerogel de Sílica", + "item.tfg.better_space_suit_fabric": "Tecido de Traje Espacial Adaptativo", + "item.tfg.universal_compost_browns": "Composto Universal Marrom", + "item.tfg.universal_compost_greens": "Composto Universal Verde", + "item.tfg.etching_diamond_tip": "Ponta de Diamante para Gravação", + "item.tfg.spade_head_extruder_mold": "Molde Extrusor (Cabeça de Pá de Jardim)", + "item.tfg.mining_hammer_head_extruder_mold": "Molde Extrusor (Cabeça de Marreta de Mineração)", + "item.tfg.sword_head_extruder_mold": "Molde Extrusor (Cabeça de Espada)", + "item.tfg.pickaxe_head_extruder_mold": "Molde Extrusor (Cabeça de Picareta)", + "item.tfg.shovel_head_extruder_mold": "Molde Extrusor (Cabeça de Pá)", + "item.tfg.axe_head_extruder_mold": "Molde Extrusor (Cabeça de Machado)", + "item.tfg.hoe_head_extruder_mold": "Molde Extrusor (Cabeça de Enxada)", + "item.tfg.scythe_head_extruder_mold": "Molde Extrusor (Cabeça de Foice)", + "item.tfg.file_head_extruder_mold": "Molde Extrusor (Cabeça de Lima)", + "item.tfg.hammer_head_extruder_mold": "Molde Extrusor (Cabeça de Marreta)", + "item.tfg.saw_head_extruder_mold": "Molde Extrusor (Cabeça de Serra)", + "item.tfg.knife_head_extruder_mold": "Molde Extrusor (Cabeça de Faca)", + "item.tfg.butchery_knife_head_extruder_mold": "Molde Extrusor (Cabeça de Faca de Açougueiro)", + "item.tfg.propick_head_extruder_mold": "Molde Extrusor (Cabeça de Picareta Prospectora)", + "item.tfg.javelin_head_extruder_mold": "Molde Extrusor (Cabeça de Lança)", + "item.tfg.chisel_head_extruder_mold": "Molde Extrusor (Cabeça de Cinzel)", + "item.tfg.mace_head_extruder_mold": "Molde Extrusor (Cabeça de Maça)", + "item.tfg.mattock_head_extruder_mold": "Molde Extrusor (Cabeça de Picareta-Pá)", + "item.tfg.fish_hook_extruder_mold": "Molde Extrusor (Anzol)", + "item.tfg.whisk_extruder_mold": "Molde Extrusor (Batedor de Ovos)", + "item.tfg.screwdriver_tip_extruder_mold": "Molde Extrusor (Ponta de Chave de Fenda)", + "item.tfg.wrench_tip_extruder_mold": "Molde Extrusor (Ponta de Chave Inglesa)", + "item.tfg.wire_cutter_head_extruder_mold": "Molde Extrusor (Cabeça de Alicate de Corte)", + "item.tfg.small_casing_extruder_mold": "Molde Extrusor (Invólucro de Bala Pequena)", + "item.tfg.shell_casing_extruder_mold": "Molde Extrusor (Invólucro de Bala de Cartucho)", + "item.tfg.large_casing_extruder_mold": "Molde Extrusor (Invólucro de Bala Grande)", + "item.tfg.photo_cell_t1": "Célula Fotoelétrica Básica", + "item.tfg.electric_extendo_grip": "Pega Extensora Elétrica", + "item.tfg.treated_chipboard_composite": "Compósito de Aglomerado Tratado", + "item.tfg.high_density_treated_fiberboard": "Placa de Fibra de Média Densidade Tratada", + "item.tfg.flax_seeds": "Sementes de Linho", + "item.tfg.flax_product": "Caules de Linho", + "item.tfg.flax_line": "Fibras de Linho", + "item.tfg.flax_tow": "Estopas de Linho", + "item.tfg.flax_waste": "Linho Raspado", + "item.tfg.linen_thread": "Fio de Linho", + "item.tfg.linen_cloth": "Pano de Linho", + "item.tfg.uv_led": "§fLED §dUltravioleta", + "item.tfg.smd_uv_led": "§fLED §dUltravioleta §fSMD", "material.tfg.latex": "Látex", "material.tfg.vulcanized_latex": "Látex Vulcanizado", "material.tfg.fluix": "Fluix", @@ -301,8 +678,49 @@ "material.tfg.venus_stone": "Traquito", "material.tfg.mercury_stone": "Komatiíto", "material.tfg.glacio_stone": "Fonolito", - "material.gtceu.thermochemically_treated_hardwood": "Hardwood Termicamente Tratado", - "material.gtceu.hardwood": "Hardwood", + "material.gtceu.thermochemically_treated_hardwood": "Madeira Dura Termicamente Tratada", + "material.gtceu.hardwood": "Madeira Dura", + "material.gtceu.asurine": "Asurina", + "material.tfg.kaolinite": "Caulinita", + "material.tfg.vitrified_pearl": "Pérola Ender Vitrificada", + "material.tfg.aes_mix": "Mistura de Silicato Alcalino-Terroso", + "material.tfg.molten_aes": "Silicato Alcalino-Terroso Fundido", + "material.tfg.compressed_nitrox": "Nitrox Comprimido", + "material.tfg.compressed_heliox": "Heliox Comprimido", + "material.tfg.compressed_heliox_3": "Heliox-3 Comprimido", + "material.tfg.compressed_trimix": "Trimix 50/30/20 Comprimido", + "material.tfg.compressed_trimix_3": "Trimix-3 50/30/20 Comprimido", + "material.tfg.chlorodifluoromethane": "Clorodifluorometano", + "material.tfg.acetylene": "Acetileno", + "material.tfg.1_1_1_2_tetrafluoroethane": "1,1,1,2-Tetrafluoroetano", + "material.tfg.isobutane": "Isobutano", + "material.tfg.chloryl_fluoride": "Fluoreto de Clorila", + "material.tfg.chlorine_pentafluoride": "Pentafluoreto de Cloro", + "material.tfg.solar_coolant": "Refrigerante Solar", + "material.tfg.solar_coolant_tier2": "Refrigerante Solar Aerospacial", + "material.tfg.sodium_hydride": "Hidreto de Sódio", + "material.tfg.boric_acid": "Ácido Bórico", + "material.tfg.trimethyl_borate": "Borato de Trimetila", + "material.tfg.sodium_borohydride": "Boroidreto de Sódio", + "material.tfg.sodium_methoxide": "Metóxido de Sódio", + "material.tfg.ammonia_borane": "Borano de Amônia", + "material.tfg.aniline": "Anilina", + "material.tfg.dimethyl_carbonate": "Carbonato de Dimetila", + "material.tfg.methyl_phenylcarbamate": "N-Fenilcarbamato de Metila", + "material.tfg.methylene_diphenyl_dicarbamate": "Difenil-4,4'-dicarbamato de Metileno", + "material.tfg.methylene_diphenyl_diisocyanate": "Difenil-4,4'-diisocianato de Metileno", + "material.tfg.tmos": "Tetrametoxissilano", + "material.tfg.silica_gel": "Gel de Sílica", + "material.tfg.soaked_silica_gel": "Gel de Sílica Embebida em Acetona", + "material.tfg.nuclear_residue": "Resíduo Nuclear", + "material.tfg.oxidized_nuclear_residue": "Resíduo Nuclear Oxidado", + "material.tfg.refined_nuclear_residue": "Resíduo Nuclear Refinado", + "material.tfg.certus_regolith": "Rególito Certus", + "material.tfg.goethe_regolith": "Rególito Goethe", + "material.tfg.bright_regolith": "Rególito Brilhante", + "material.tfg.cassiterite_regolith": "Rególito Cassiterita", + "material.tfg.regolith_mush": "Massa de Rególito", + "ore_vein.tfg.deep_sheldonite": "Cooperita e Bornita", "ore_vein.tfg.deep_garnet_amethyst": "Ametista e Granada", "ore_vein.tfg.deep_garnet_opal": "Opala e Granada", "ore_vein.tfg.deep_gold": "Ouro (Profundo)", @@ -313,7 +731,6 @@ "ore_vein.tfg.deep_pitchblende": "Uraninita e Pechblenda", "ore_vein.tfg.deep_sapphire": "Safira e Almandina", "ore_vein.tfg.deep_scheelite": "Sheelita e Tungstato", - "ore_vein.tfg.deep_sheldonite": "Cooperita e Bornita", "ore_vein.tfg.deep_topaz": "Topázio e Calcocita", "ore_vein.tfg.normal_apatite": "Apatita e Pirocloro", "ore_vein.tfg.normal_basaltic_sands": "Areias Minerais", @@ -346,16 +763,39 @@ "ore_vein.tfg.normal_spodumene": "Espodumena e Lepidolita", "ore_vein.tfg.normal_sulfur": "Enxofre e Pirita", "ore_vein.tfg.normal_tetrahedrite": "Tetraedrita (Normal)", - "ore_vein.tfg.surface_bismuthinite": "Bismuto (Superfície)", - "ore_vein.tfg.surface_cassiterite": "Cassiterita (Superfície)", + "ore_vein.tfg.surface_bismuthinite": "Bismuto", + "ore_vein.tfg.surface_cassiterite": "Cassiterita", "ore_vein.tfg.surface_copper": "Calcopirita e Realgar", "ore_vein.tfg.surface_sphalerite": "Esfalerita e Enxofre", "ore_vein.tfg.surface_tetrahedrite": "Tetraedrita (Superfície)", - "ore_vein.tfg.mars_hematite": "(Placeholder Vein)", + "ore_vein.tfg.deep_mars_chromite": "Redstone & Chromite", + "ore_vein.tfg.deep_mars_pitchblende": "Pitchblende, Thorium, & Uraninite", + "ore_vein.tfg.deep_mars_sheldonite": "Bornite & Cooperite", + "ore_vein.tfg.mars_almandine": "Almandine & Sapphire", + "ore_vein.tfg.mars_apatite": "Apatita e Pirocloro", + "ore_vein.tfg.mars_beryllium": "Esmeralda e Berílio", + "ore_vein.tfg.mars_coal": "Coal & Hematite", + "ore_vein.tfg.mars_copper": "Cobre e Calcopirita", + "ore_vein.tfg.mars_galena": "Prata, Galena e Chumbo", + "ore_vein.tfg.mars_sapphire": "Gold, Electrotine, & Bauxite", + "ore_vein.tfg.mars_hematite": "Hematita e Limonita", + "ore_vein.tfg.mars_lubricant": "Soapstone, Talc, & Glauconite", + "ore_vein.tfg.mars_neodynium": "Bastnasita e Monazita", + "ore_vein.tfg.mars_nickel": "Garnierita e Cobaltita", + "ore_vein.tfg.mars_pitchblende": "Pitchblende, Thorium, & Hematite", + "ore_vein.tfg.mars_quartzite": "Quartzite, Asbestos, & Barite", + "ore_vein.tfg.mars_salt": "Salts & Spodumene", + "ore_vein.tfg.mars_stibnite": "Tetraedrita (Normal)", + "ore_vein.tfg.mars_sulfur": "Esfalerita e Pirita", + "ore_vein.tfg.mars_tantalite": "Manganês e Tântalo", + "ore_vein.tfg.mars_tungsten": "Sheelita e Tungstato", + "ore_vein.tfg.surface_hematite": "Hematita e Limonita", + "ore_vein.tfg.surface_nickel_galena": "Sphalerite & Galena", "ore_vein.tfg.moon_apatite": "Apatita e Pirocloro", "ore_vein.tfg.moon_bauxite": "Bauxita e Ilmenita", "ore_vein.tfg.moon_beryllium": "Esmeralda e Berílio", "ore_vein.tfg.moon_cassiterite": "Cassiterita e Calcopirita", + "ore_vein.tfg.moon_sheldonite": "Cooperita e Bornita", "ore_vein.tfg.moon_desh": "Desh e Ilmenita", "ore_vein.tfg.moon_garnet": "Ametista, Opala e Granada", "ore_vein.tfg.moon_garnierite": "Garnierita e Cobaltita", @@ -374,7 +814,6 @@ "ore_vein.tfg.moon_saltpeter": "Salitre e Eletrotina", "ore_vein.tfg.moon_sapphire": "Safira e Almandina", "ore_vein.tfg.moon_scheelite": "Sheelita e Tungstato", - "ore_vein.tfg.moon_sheldonite": "Cooperita e Bornita", "ore_vein.tfg.moon_silver": "Prata, Galena e Chumbo", "ore_vein.tfg.moon_sphalerite": "Esfalerita e Pirita", "ore_vein.tfg.moon_tetrahedrite": "Tetraedrita e Calcocita", @@ -384,6 +823,7 @@ "ore_vein.tfg.nether_basaltic_sands": "Areias Minerais", "ore_vein.tfg.nether_beryllium": "Esmeralda e Berílio", "ore_vein.tfg.nether_cassiterite": "Cassiterita", + "ore_vein.tfg.nether_sheldonite": "Cooperita e Bornita", "ore_vein.tfg.nether_copper": "Cobre e Calcopirita", "ore_vein.tfg.nether_garnet": "Ametista, Opala e Granada", "ore_vein.tfg.nether_garnet_tin": "Granada e Areia Cassiterita", @@ -408,15 +848,34 @@ "ore_vein.tfg.nether_saltpeter": "Salitre e Eletrotina", "ore_vein.tfg.nether_sapphire": "Safira e Almandina", "ore_vein.tfg.nether_scheelite": "Sheelita e Tungstato", - "ore_vein.tfg.nether_sheldonite": "Cooperita e Bornita", "ore_vein.tfg.nether_silver": "Prata, Galena e Chumbo", "ore_vein.tfg.nether_sphalerite": "Esfalerita e Pirita", "ore_vein.tfg.nether_sulfur": "Enxofre e Pirita", "ore_vein.tfg.nether_sylvite": "Silvita", "ore_vein.tfg.nether_tetrahedrite": "Tetraedrita", "ore_vein.tfg.nether_topaz": "Topázio e Calcosita", + "tfg.creative_tab.tfg": "TerraFirmaGreg", "tfg.disabled_portal": "A magia do portal parece estar bloqueada por uma força desconhecida, tente alcançar outra dimensão descendo ou subindo", - "tfg.tooltip.food_trait.refrigerating": "§9Refrigeração", + "tfg.tooltip.food_trait.refrigerating": "§9Refrigerando", + "tfg.tooltip.foodtrait.freeze_dried": "Liofilizado", + "tfg.tooltip.extraterrestrial_farming": "§4Temperatura:§r Um ambiente oxigenado fornece 15°C", + "entity.tfg.moon_rabbit.male": "Lunelho", + "entity.tfg.moon_rabbit.female": "Lunelha", + "tfg.tooltip.moon_rabbit_variant.pink": "Pelagem Rosa", + "tfg.tooltip.moon_rabbit_variant.white": "Pelagem Branca", + "tfg.tooltip.moon_rabbit_variant.grey": "Pelagem Pedrosa", + "tfg.tooltip.moon_rabbit_variant.cyan": "Pelagem Marinha", + "tfg.tooltip.moon_rabbit_variant.purple": "Pelagem Lavanda", + "tfg.tooltip.moon_rabbit_variant.sofu": "Pelagem Sundae", + "entity.tfg.glacian_ram.male": "Carneiro Glacial", + "entity.tfg.glacian_ram.female": "Ovelha Glacial", + "tfg.tooltip.attribution.glacian_ram": "§9§oCrédito: Ad Astra", + "entity.tfg.sniffer.male": "Farejador", + "entity.tfg.sniffer.female": "Farejadora", + "tfg.tooltip.attribution.sniffer": "§9§oCrédito: Minecraft", + "entity.tfg.wraptor.male": "Distráptor", + "entity.tfg.wraptor.female": "Distráptora", + "tfg.tooltip.attribution.wraptor": "§9§oCrédito: Species", "item.treetap.tap": "Item Descontinuado, Crie para Atualizar", "item.gtceu.zinc_ingot": "Item Descontinuado, Crie para Atualizar", "item.gtceu.brass_ingot": "Item Descontinuado, Crie para Atualizar", @@ -540,93 +999,157 @@ "trim_material.tfc.neutronium_tfc": "Neutrônio", "trim_material.tfc.pyrite_tfc": "Pirita", "trim_material.tfc.redx_tfc": "RedX", + "tfg.emi.ore_veins.rock_types": "Encontrado nos tipos de rocha:", + "tfg.emi.ore_veins.rarity": "Raridade: %d", + "tfg.emi.ore_veins.density": "Densidade: %d", + "tfg.emi.ore_veins.y_ranges": "Profundidade: %d até %d", + "tfg.emi.ore_veins.size": "Tamanho: %d", + "tfg.emi.ore_veins.height": "Peso: %d", + "tfg.emi.ore_veins.radius": "Raio: %d", + "emi.category.tfg.ore_vein_info": "Veios de Minério", + "tfg.toast.ore_prospector_none": "Nenhum minério encontrado no alcance.", + "tfg.toast.ore_prospector_message": "Minérios encontrados dentro de %s §6blocos nessa direção: %s", + "tfg.tooltip.ore_prospector_stats": "Intervalo de Varredura: %s, Sessão Transversal: %s x %s.", + "tfg.tooltip.ore_prospector_count": "Este prospector exibirá contagens de minério.", + "tfg.tooltip.ore_prospector_xray": "Este prospector exibirá uma %s visão raio-X dos blocos de minério.", + "tfg.tooltip.ore_prospector_mode_vein": "por-veio", + "tfg.tooltip.ore_prospector_mode_block": "por-bloco", + "tfg.hangglider.disabled_dimension": "Você não pode usar uma asa delta aqui!", + "tfg.tooltip.nametag": "§7Usado em uma Mesa de Escrita junto com um item para nomeá-lo ou com tinta preta para nomear a etiqueta.", + "tfg.tooltip.yeast_starter": "§7Feito com fruta seca", + "tfg.tooltip.beehive": "§7Precisa ser preenchido com quadros vazios e cercado por flores para atrair abelhas.", + "tfg.tooltip.obsolete.tree_tap": "§4Obsoleto§f: Substituído pelo AFC TreeTap, você pode criá-lo a partir deste, colocando-o em uma mesa de trabalho!", + "tfg.tooltip.obsolete.fridge": "§4Obsoleto§f: Substituído pela Geladeira TFG, você pode criá-la a partir deste, colocando-o em uma mesa de trabalho!", + "tfg.tooltip.blaze_burner": "§cSuperaqueça§r §7com Coque, Antracito, ou Gemas de Carvão Perfeitas ou Exóticas.", + "tfg.tooltip.machine.perfect_overclock": "Essa máquina tem §2Overclocking Perfeito§r!", + "tfg.tooltip.nether_dome_1": "§7Ambiente artificial para simular o Nether.", + "tfg.tooltip.machine.customize_interior": "§7O interior é personalizável! Confira a prévia do multibloco no JEI.", + "tfg.tooltip.end_dome_1": "§7Ambiente artificial para simular o End.", + "tfg.tooltip.armor.copper_diving_suit_warmth": "§7Calor: -1", + "tfg.tooltip.armor.copper_diving_suit_insulation": "§7Isolamento: +1", + "tfg.tooltip.armor.netherite_diving_suit_warmth": "§7Calor: -2", + "tfg.tooltip.armor.netherite_diving_suit_insulation": "§7Isolamento: +9", + "tfg.tooltip.armor.netherite_diving_suit_set": "§7Use o conjunto completo para ser §eÀ Prova de Calor§7 da temperatura ambiente.", + "tfg.tooltip.armor.nanomuscle_warmth": "§7Calor: 0", + "tfg.tooltip.armor.nanomuscle_insulation": "§7Isolamento: +10", + "tfg.tooltip.armor.nanomuscle_set": "§7Use o conjunto completo para ser §eÀ Prova de Calor§7 da temperatura ambiente.", + "tfg.tooltip.armor.quarktech_warmth": "§7Calor: 0", + "tfg.tooltip.armor.quarktech_insulation": "§7Isolamento: +10", + "tfg.tooltip.armor.quarktech_set": "§7Use o conjunto completo para ser §eÀ Prova de Calor§7 da temperatura ambiente.", + "tfg.tooltip.armor.space_suit_warmth": "§7Calor: 0", + "tfg.tooltip.armor.space_suit_insulation": "§7Isolamento: +10", + "tfg.tooltip.armor.space_suit_set": "§7Use o conjunto completo para ser §eÀ Prova de Calor§7 da temperatura ambiente.", + "tfg.tooltip.support.tier1": "§79 x 5 x 9", + "tfg.tooltip.support.tier2": "§717 x 9 x 17", + "tfg.tooltip.support.tier3": "§733 x 13 x 33", + "tfg.tooltip.vessels": "§cMáx: 3024mB", + "tfg.tooltip.solar_panel.single": "Produz §6128 FE/t§r (32 EU/t) na §6lua§r durante o §6dia§r", + "tfg.tooltip.solar_panel.large_tier1": "Estutura massiva produzindo de §61024 até 4096 EU/t§r na §6lua§r durante o §6dia§r", + "tfg.tooltip.solar_panel.large_tier2": "Estutura massiva produzindo de §64096 até 16384 EU/t§r na §6lua§r durante o §6dia§r", + "tfg.tooltip.solar_panel.large_tier3": "Estutura massiva produzindo de §616384 até 65536 EU/t§r na §6lua§r durante o §6dia§r", + "tfg.tooltip.petrified_egg": "§7Requer Magma para Incubar", + "tfg.tooltip.large_egg": "§7Só pode ser incubado em um §oNinho Grande", + "tfg.tooltip.sniffer_wool": "§7Colhido das costas de um Farejador", + "tfg.tooltip.wraptor_wool": "§7Colhido das penas de um Distráptor", + "tfg.tooltip.wraptor_sugar": "§7Não pense muito a respeito disso", + "tfg.tooltip.obsolete.depreciated": "§cObsoleto, não pode mais ser criado", "tfc.jei.flint_knapping": "Talhar Sílex", - "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.black": "Tingimento", - "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.gray": "Tingimento", - "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.light_gray": "Tingimento", - "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.white": "Tingimento", - "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.pink": "Tingimento", - "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.magenta": "Tingimento", - "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.purple": "Tingimento", - "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.blue": "Tingimento", - "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.light_blue": "Tingimento", - "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.cyan": "Tingimento", - "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.green": "Tingimento", - "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.lime": "Tingimento", - "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.yellow": "Tingimento", - "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.orange": "Tingimento", - "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.red": "Tingimento", - "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.brown": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_black_block_on": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_gray_block_on": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_light_gray_block_on": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_white_block_on": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_pink_block_on": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_magenta_block_on": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_purple_block_on": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_blue_block_on": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_light_blue_block_on": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_cyan_block_on": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_green_block_on": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_lime_block_on": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_yellow_block_on": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_orange_block_on": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_red_block_on": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_brown_block_on": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_black_block": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_gray_block": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_light_gray_block": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_white_block": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_pink_block": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_magenta_block": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_purple_block": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_blue_block": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_light_blue_block": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_cyan_block": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_green_block": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_lime_block": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_yellow_block": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_orange_block": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_red_block": "Tingimento", - "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_brown_block": "Tingimento", - "tfc.recipe.barrel.tfg.barrel.soak_hardwood_strip": "Preparação de Tiras de Hardwood", - "tfc.recipe.barrel.tfg.barrel.treated_wood_planks": "Tratar Tábuas de Madeira", - "tfc.recipe.barrel.tfg.barrel.packed_ice": "Congelar Gelo Compactado", + "tfc.jei.straw_knapping": "Trançar Palha", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.black": "Tingindo", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.gray": "Tingindo", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.light_gray": "Tingindo", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.white": "Tingindo", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.pink": "Tingindo", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.magenta": "Tingindo", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.purple": "Tingindo", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.blue": "Tingindo", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.light_blue": "Tingindo", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.cyan": "Tingindo", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.green": "Tingindo", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.lime": "Tingindo", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.yellow": "Tingindo", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.orange": "Tingindo", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.red": "Tingindo", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.brown": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_black_block_on": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_gray_block_on": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_light_gray_block_on": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_white_block_on": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_pink_block_on": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_magenta_block_on": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_purple_block_on": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_blue_block_on": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_light_blue_block_on": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_cyan_block_on": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_green_block_on": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_lime_block_on": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_yellow_block_on": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_orange_block_on": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_red_block_on": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_brown_block_on": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_black_block": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_gray_block": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_light_gray_block": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_white_block": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_pink_block": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_magenta_block": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_purple_block": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_blue_block": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_light_blue_block": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_cyan_block": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_green_block": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_lime_block": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_yellow_block": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_orange_block": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_red_block": "Tingindo", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_brown_block": "Tingindo", + "tfc.recipe.barrel.tfg.barrel.treated_chipboard_composite": "Tratando Compósito de Aglomerado", + "tfc.recipe.barrel.tfg.barrel.soak_hardwood_strip": "Encharcando Tiras de Madeira Dura", + "tfc.recipe.barrel.tfg.barrel.treated_wood_planks": "Tratando Tábuas de Madeira", + "tfc.recipe.barrel.tfg.barrel.packed_ice": "Resfriando Gelo", "tfc.recipe.barrel.tfg.barrel.cooling_water_1": "Resfriamento de Água", "tfc.recipe.barrel.tfg.barrel.cooling_water_2": "Resfriamento de Água", "tfc.recipe.barrel.tfg.barrel.cooling_water_3": "Resfriamento de Água", "tfc.recipe.barrel.tfg.barrel.cooling_water_4": "Resfriamento de Água", - "tfc.recipe.barrel.tfg.sealed_barrel.prepared_leather_gloves": "Preparação de Luvas de Couro", + "tfc.recipe.barrel.tfg.sealed_barrel.prepared_leather_gloves": "Encharcando Luvas de Couro", + "tfc.recipe.barrel.tfg.barrel.rapeseed_to_oil": "Extraindo Óleo de Canola", + "tfc.recipe.barrel.tfg.barrel.sunflower_to_oil": "Extraindo Óleo de Girassol", + "gtceu.aqueous_accumulator": "Acumulador Aquoso", + "tfg.food_recipe.brining": "Salmouragem", + "tfg.food_recipe.smoking": "Defumação", + "tfg.food_recipe.drying": "Secagem", + "tfg.food_recipe.freeze_drying": "Liofilização", + "tfg.recipe.macerator_warning": "Emite apenas o primeiro slot até HV", "tfg.grapplemod.repair": "Receita de reparo, mantém seus aprimoramentos. §lNUNCA combine dois ganchos ou você perderá TODOS os seus aprimoramentos!§r", "tfg.grapplemod.upgrades.maxlen": "Aumenta o §lComprimento Máximo§r em 20, até 200.", "tfg.grapplemod.downgrades.maxlen": "Diminui o §lComprimento Máximo§r em 20, até 20. (Corda de Juta é Retornada).", - "tfg.grapplemod.upgrades.motor.lv": "Ativa a melhoria do §lMotor§r, enrolando automaticamente.\n§lVelocidadeMáximaDoMotor§r definida para 1\n§lAceleraçãoDoMotor§r definida para 0.125", - "tfg.grapplemod.upgrades.motor.mv": "Ativa a melhoria do §lMotor§r, enrolando automaticamente.\n§lVelocidadeMáximaDoMotor§r definida para 1.14\n§lAceleraçãoDoMotor§r definida para 0.25", - "tfg.grapplemod.upgrades.motor.hv": "Ativa a melhoria do §lMotor§r, enrolando automaticamente.\n§lVelocidadeMáximaDoMotor§r definida para 1.28\n§lAceleraçãoDoMotor§r definida para 0.375", - "tfg.grapplemod.upgrades.motor.ev": "Ativa a melhoria do §lMotor§r, enrolando automaticamente.\n§lVelocidadeMáximaDoMotor§r definida para 1.42\n§lAceleraçãoDoMotor§r definida para 0.5", - "tfg.grapplemod.upgrades.motor.iv": "Ativa a melhoria do §lMotor§r, enrolando automaticamente.\n§lVelocidadeMáximaDoMotor§r definida para 1.56\n§lAceleraçãoDoMotor§r definida para 0.625", - "tfg.grapplemod.upgrades.motor.luv": "Ativa a melhoria do §lMotor§r, enrolando automaticamente.\n§lVelocidadeMáximaDoMotor§r definida para 1.7\n§lAceleraçãoDoMotor§r definida para 0.75", - "tfg.grapplemod.upgrades.motor.zpm": "Ativa a melhoria do §lMotor§r, enrolando automaticamente.\n§lVelocidadeMáximaDoMotor§r definida para 1.84\n§lAceleraçãoDoMotor§r definida para 0.875", - "tfg.grapplemod.upgrades.motor.uv": "Ativa a melhoria do §lMotor§r, enrolando automaticamente.\n§lVelocidadeMáximaDoMotor§r definida para 2\n§lAceleraçãoDoMotor§r definida para 1", - "tfg.grapplemod.downgrades.motor": "Desativa a melhoria do §lMotor§r, retornando o motor original.\nFunciona apenas se você usar o mesmo tipo de Motor de antes.", - "tfg.grapplemod.upgrades.smart_motor": "Ativa a melhoria do §lMotor Inteligente§r, requer um Motor instalado.", - "tfg.grapplemod.downgrades.smart_motor": "Desativa a melhoria do §lMotor Inteligente§r, pode ser removido com o Motor já desinstalado. Retorna o Circuito Eletrônico Básico.", + "tfg.grapplemod.upgrades.motor.lv": "Ativa a melhoria §lMotor§r, puxando você automaticamente.\n§lVelocidadeMáximaDoMotor§r definida para 1\n§lAceleraçãoDoMotor§r definida para 0.125", + "tfg.grapplemod.upgrades.motor.mv": "Ativa a melhoria §lMotor§r, puxando você automaticamente.\n§lVelocidadeMáximaDoMotor§r definida para 1.14\n§lAceleraçãoDoMotor§r definida para 0.25", + "tfg.grapplemod.upgrades.motor.hv": "Ativa a melhoria §lMotor§r, puxando você automaticamente.\n§lVelocidadeMáximaDoMotor§r definida para 1.28\n§lAceleraçãoDoMotor§r definida para 0.375", + "tfg.grapplemod.upgrades.motor.ev": "Ativa a melhoria §lMotor§r, puxando você automaticamente.\n§lVelocidadeMáximaDoMotor§r definida para 1.42\n§lAceleraçãoDoMotor§r definida para 0.5", + "tfg.grapplemod.upgrades.motor.iv": "Ativa a melhoria §lMotor§r, puxando você automaticamente.\n§lVelocidadeMáximaDoMotor§r definida para 1.56\n§lAceleraçãoDoMotor§r definida para 0.625", + "tfg.grapplemod.upgrades.motor.luv": "Ativa a melhoria §lMotor§r, puxando você automaticamente.\n§lVelocidadeMáximaDoMotor§r definida para 1.7\n§lAceleraçãoDoMotor§r definida para 0.75", + "tfg.grapplemod.upgrades.motor.zpm": "Ativa a melhoria §lMotor§r, puxando você automaticamente.\n§lVelocidadeMáximaDoMotor§r definida para 1.84\n§lAceleraçãoDoMotor§r definida para 0.875", + "tfg.grapplemod.upgrades.motor.uv": "Ativa a melhoria §lMotor§r, puxando você automaticamente.\n§lVelocidadeMáximaDoMotor§r definida para 2\n§lAceleraçãoDoMotor§r definida para 1", + "tfg.grapplemod.downgrades.motor": "Desativa a melhoria §lMotor§r, retornando o motor original.\nFunciona apenas se você usar o mesmo tipo de Motor de antes.", + "tfg.grapplemod.upgrades.smart_motor": "Ativa a melhoria §lMotor Inteligente§r, requer um Motor instalado.", + "tfg.grapplemod.downgrades.smart_motor": "Desativa a melhoria §lMotor Inteligente§r, pode ser removido com o Motor já desinstalado. Retorna o Circuito Eletrônico Básico.", "tfg.grapplemod.upgrades.sticky": "Ativa a melhoria §lPegajosa§r, fazendo com que o gancho grude em qualquer bloco que a corda toque.", "tfg.grapplemod.downgrades.sticky": "Desativa a melhoria §lPegajosa§r, retornando a Resina Pegajosa.", - "tfg.grapplemod.upgrades.forcefield.lv": "Ativa a melhoria do §lCampo de Força§r, repelindo você de blocos próximos enquanto usa o Gancho.\n§lForça de Repulsão§r definida para 0.625", - "tfg.grapplemod.upgrades.forcefield.mv": "Ativa a melhoria do §lCampo de Força§r, repelindo você de blocos próximos enquanto usa o Gancho.\n§lForça de Repulsão§r definida para 1.25", - "tfg.grapplemod.upgrades.forcefield.hv": "Ativa a melhoria do §lCampo de Força§r, repelindo você de blocos próximos enquanto usa o Gancho.\n§lForça de Repulsão§r definida para 1.875", - "tfg.grapplemod.upgrades.forcefield.ev": "Ativa a melhoria do §lCampo de Força§r, repelindo você de blocos próximos enquanto usa o Gancho.\n§lForça de Repulsão§r definida para 2.5", - "tfg.grapplemod.upgrades.forcefield.iv": "Ativa a melhoria do §lCampo de Força§r, repelindo você de blocos próximos enquanto usa o Gancho.\n§lForça de Repulsão§r definida para 3.125", - "tfg.grapplemod.upgrades.forcefield.luv": "Ativa a melhoria do §lCampo de Força§r, repelindo você de blocos próximos enquanto usa o Gancho.\n§lForça de Repulsão§r definida para 3.75", - "tfg.grapplemod.upgrades.forcefield.zpm": "Ativa a melhoria do §lCampo de Força§r, repelindo você de blocos próximos enquanto usa o Gancho.\n§lForça de Repulsão§r definida para 4.375", - "tfg.grapplemod.upgrades.forcefield.uv": "Ativa a melhoria do §lCampo de Força§r, repelindo você de blocos próximos enquanto usa o Gancho.\n§lForça de Repulsão§r definida para 5", - "tfg.grapplemod.downgrades.forcefield": "Desativa a melhoria do §lCampo de Força§r, retornando o Gerador de Campo original.\nFunciona apenas se você usar o mesmo tipo de Gerador de Campo de antes.", - "tfg.grapplemod.upgrades.magnet.magnetic_iron_ingot": "Ativa a melhoria do §lÍmã§r, fazendo com que o gancho se prenda a blocos próximos.\n§lRaio de Atração§r definido para 1.25", - "tfg.grapplemod.upgrades.magnet.magnetic_steel_ingot": "Ativa a melhoria do §lÍmã§r, fazendo com que o gancho se prenda a blocos próximos.\n§lRaio de Atração§r definido para 2.5", - "tfg.grapplemod.upgrades.magnet.magnetic_neodymium_ingot": "Ativa a melhoria do §lÍmã§r, fazendo com que o gancho se prenda a blocos próximos.\n§lRaio de Atração§r definido para 3.75", - "tfg.grapplemod.upgrades.magnet.magnetic_samarium_ingot": "Ativa a melhoria do §lÍmã§r, fazendo com que o gancho se prenda a blocos próximos.\n§lRaio de Atração§r definido para 5", - "tfg.grapplemod.downgrades.magnet": "Desativa a melhoria do §lÍmã§r, retornando o Lingote Magnético original.\nFunciona apenas se você usar o mesmo tipo de Lingote Magnético de antes.", + "tfg.grapplemod.upgrades.forcefield.lv": "Ativa a melhoria §lCampo de Força§r, repelindo você de blocos próximos enquanto usa o Gancho.\n§lForça de Repulsão§r definida para 0.625", + "tfg.grapplemod.upgrades.forcefield.mv": "Ativa a melhoria §lCampo de Força§r, repelindo você de blocos próximos enquanto usa o Gancho.\n§lForça de Repulsão§r definida para 1.25", + "tfg.grapplemod.upgrades.forcefield.hv": "Ativa a melhoria §lCampo de Força§r, repelindo você de blocos próximos enquanto usa o Gancho.\n§lForça de Repulsão§r definida para 1.875", + "tfg.grapplemod.upgrades.forcefield.ev": "Ativa a melhoria §lCampo de Força§r, repelindo você de blocos próximos enquanto usa o Gancho.\n§lForça de Repulsão§r definida para 2.5", + "tfg.grapplemod.upgrades.forcefield.iv": "Ativa a melhoria §lCampo de Força§r, repelindo você de blocos próximos enquanto usa o Gancho.\n§lForça de Repulsão§r definida para 3.125", + "tfg.grapplemod.upgrades.forcefield.luv": "Ativa a melhoria §lCampo de Força§r, repelindo você de blocos próximos enquanto usa o Gancho.\n§lForça de Repulsão§r definida para 3.75", + "tfg.grapplemod.upgrades.forcefield.zpm": "Ativa a melhoria §lCampo de Força§r, repelindo você de blocos próximos enquanto usa o Gancho.\n§lForça de Repulsão§r definida para 4.375", + "tfg.grapplemod.upgrades.forcefield.uv": "Ativa a melhoria §lCampo de Força§r, repelindo você de blocos próximos enquanto usa o Gancho.\n§lForça de Repulsão§r definida para 5", + "tfg.grapplemod.downgrades.forcefield": "Desativa a melhoria §lCampo de Força§r, retornando o Gerador de Campo original.\nFunciona apenas se você usar o mesmo tipo de Gerador de Campo de antes.", + "tfg.grapplemod.upgrades.magnet.magnetic_iron_ingot": "Ativa a melhoria §lÍmã§r, fazendo com que o gancho se prenda a blocos próximos.\n§lRaio de Atração§r definido para 1.25", + "tfg.grapplemod.upgrades.magnet.magnetic_steel_ingot": "Ativa a melhoria §lÍmã§r, fazendo com que o gancho se prenda a blocos próximos.\n§lRaio de Atração§r definido para 2.5", + "tfg.grapplemod.upgrades.magnet.magnetic_neodymium_ingot": "Ativa a melhoria §lÍmã§r, fazendo com que o gancho se prenda a blocos próximos.\n§lRaio de Atração§r definido para 3.75", + "tfg.grapplemod.upgrades.magnet.magnetic_samarium_ingot": "Ativa a melhoria §lÍmã§r, fazendo com que o gancho se prenda a blocos próximos.\n§lRaio de Atração§r definido para 5", + "tfg.grapplemod.downgrades.magnet": "Desativa a melhoria §lÍmã§r, retornando o Lingote Magnético original.\nFunciona apenas se você usar o mesmo tipo de Lingote Magnético de antes.", "tfg.grapplemod.upgrades.gravity.0.5": "Reduz a §lGravidade§r do Gancho para 50% (1 -> 0.5)", "tfg.grapplemod.downgrades.gravity.0.5": "Retorna a §lGravidade§r do Gancho para 100% (0.5 -> 1).\nO balde vazio será preenchido com o Hélio que você usou", "tfg.grapplemod.upgrades.gravity.0": "Reduz a §lGravidade§r do Gancho para 0% (1 -> 0)", @@ -797,6 +1320,110 @@ "quests.metal_age.this_is_a_bucket.title": "Isso é... o Balde.", "quests.metal_age.this_is_a_bucket.subtitle": "Pelos Deuses...", "quests.metal_age.this_is_a_bucket.desc": "Parabéns pela criação do Balde. A Idade da Metalurgia está oficialmente terminada.\n\nVá e comece a trabalhar na produção daqueles componentes de Baixa Voltagem!", + "quests.ore_proc": "Processamento de Minério", + "quests.ore_proc.subtitle": "Tudo que você precisa para obter o máximo de seus minérios", + "quests.ore_proc.native_ore.title": "Bem-vindo ao Processamento de Minério", + "quests.ore_proc.native_ore.subtitle": "Processar ou não processar?", + "quests.ore_proc.native_ore.desc": "Uma parte importante do &6GregTech&r é a &dMecânica do Processamento de Minério&r, porém ela pode ficar bem complicada, então este capítulo está aqui para ajudar!\n\nPara começar, você deve estar ciente da aba &6Diagrama de Processamento de Minério&r no EMI - Pressione a tecla Mostrar Usos (padrão &bU&r) em qualquer item relacionado ao processamento de minério e procure a aba com o ícone de Minério de Ferro. Este diagrama pode parecer complicado no início, mas vamos abordá-lo passo a passo.\n\nUma parte importante da filosofia do GregTech é que não existe apenas uma maneira de resolver um problema, mas marcamos tudo o que é importante com uma &eestrela&r, então, se você estiver completamente perdido, tente segui-las!", + "quests.ore_proc.native_ore.task": "Eu concordo em não simplesmente jogar tudo na fornalha", + "quests.ore_proc.robot_arm.title": "Processamento de Minério com ferramentas próprias do GregTech", + "quests.ore_proc.robot_arm.subtitle": "Fornecendo respostas para seus próprios problemas", + "quests.ore_proc.robot_arm.desc": "O GregTech vem com suas próprias ferramentas para ajudar a resolver a logística do processamento de minério.\n\nO &6Braço Robótico&r pode mover um número preciso de itens para uma máquina, como mover gemas defeituosas para uma Gravadora a Laser somente quando você tiver duas delas. O &6Filtro de Tag&r pode filtrar itens por tags, como '&5*purified_ores*&r' para corresponder a todos os Minérios Purificados.\n\nO &4Filtro Inteligente&r pode filtrar itens de acordo com sua &6receita&r. Por exemplo, se você usá-lo com um braço robótico em um eletrolisador e configurar o braço robótico para fornecer exatamente, ele só moverá seus pós para o eletrolisador quando tiver as quantidade necessária para a receita!", + "quests.ore_proc.ae2.title": "Processamento de Minério com Applied Energistics 2", + "quests.ore_proc.ae2.subtitle": "Um módulo de armazenamento por tag? O que é isso?", + "quests.ore_proc.ae2.desc": "O AE2 é ótimo para mover itens sem toneladas de cabos formando um espaguete! Você pode usar o &dMódulo de Armazenamento por Tag&r para informar à sua rede onde colocar os itens que correspondem à tag de um item, que você pode visualizar pressionando F3 + H. Por exemplo, se você quiser enviar todos os seus Minérios Purificados para um baú, coloque um Módulo de Armazenamento por Tag nele e defina seu filtro como '&5*purified_ores*&r'.\n\nExistem muitos guias online sobre como configurar um sistema AE2, mas uma sub-rede para lidar com todo o processamento de minério antes de ir para o seu armazenamento principal é uma escolha sólida!", + "quests.ore_proc.gtcy.title": "Processamento de Minério porém maior", + "quests.ore_proc.gtcy.subtitle": "Quando o tamanho importa", + "quests.ore_proc.gtcy.desc": "Ao chegar ao nível IV, você terá acesso a versões multibloco de todas as máquinas de bloco único do GregTech. Elas fazem exatamente as mesmas receitas que suas primas de bloco único, mas são mais flexíveis: você pode colocar vários Conectores de Entrada enormes nelas, pode fazer overclock com &6Condutos de Energia&r de nível superior em vez de criar novas a cada nível, e elas ainda suportam &6Condutos Paralelos&r para executar várias receitas simultaneamente!\n\nTodas essas máquinas requerem ligas criadas com o &bAlto-Forno de Ligas&r, encontrado no final de &dEV&r.", + "quests.ore_proc.copper_tier.title": "Processamento de Minério da Era do Cobre", + "quests.ore_proc.copper_tier.desc": "Esta linha é para os princípios básicos do Processamento de Minério. Não há subprodutos nem automação.", + "quests.ore_proc.bronze_tier.title": "Processamento de Minério da Era do Bronze", + "quests.ore_proc.bronze_tier.desc": "Esta linha é para o que fica disponível quando você obtém qualquer Bigorna de Bronze.", + "quests.ore_proc.steel_tier.title": "Processamento de Minério da Era do Aço", + "quests.ore_proc.steel_tier.desc": "Uma bigorna de aço libera seus primeiros subprodutos da lavagem de minério.", + "quests.ore_proc.steam_tier.title": "Processamento de Minério da Era do Vapor", + "quests.ore_proc.steam_tier.desc": "As máquinas a vapor dão acesso aos seus segundos subprodutos através da centrifugação.", + "quests.ore_proc.lv_tier.title": "Processamento de Minério &7LV&r", + "quests.ore_proc.lv_tier.desc": "O LV conta com uma infinidade de máquinas que podem processar seus minérios de diversas maneiras. A mais importante é provavelmente a Centrífuga Térmica.", + "quests.ore_proc.mv_tier.title": "Processamento de Minério &bMV&r", + "quests.ore_proc.mv_tier.desc": "Não acontece muita coisa no MV, exceto que o eletrolisador se torna muito mais poderoso.", + "quests.ore_proc.hv_tier.title": "Processamento de Minério &6HV&r", + "quests.ore_proc.hv_tier.desc": "Os Maceradores HV agora produzem subprodutos! Se você ainda não tem uma instalação dedicada de Processamento de Minério, agora é definitivamente a hora de construir uma.", + "quests.ore_proc.ev_tier.title": "Processamento de Minério &5EV&r", + "quests.ore_proc.ev_tier.desc": "EV é o primeiro nível onde você precisará começar a dividir seu Processamento de Minério em diferentes \"linhas\".", + "quests.ore_proc.iv_tier.title": "Processamento de Minério &9IV&r", + "quests.ore_proc.iv_tier.desc": "Com o IV vêm os grandes multiblocos para realmente aumentar a velocidade do seu Processamento de Minério.", + "quests.ore_proc.luv_tier.title": "Processamento de Minério &dLuV&r", + "quests.ore_proc.luv_tier.desc": "A linha Naquadah do LuV será um verdadeiro teste para o seu Processamento de Minério. Suas máquinas conseguem acompanhar?", + "quests.ore_proc.raw_ore.title": "Mnério Bruto", + "quests.ore_proc.raw_ore.desc": "Esta coluna mostra maneiras de processar minério bruto, a primeira etapa do Processamento de Minério!", + "quests.ore_proc.crushed_ore.title": "Minério Triturado", + "quests.ore_proc.crushed_ore.desc": "Esta coluna mostra como processar minério britado, que quase sempre é a segunda etapa.", + "quests.ore_proc.purified_ore.title": "Minério Purificado", + "quests.ore_proc.purified_ore.desc": "Esta coluna mostra o que fazer com seu minério purificado.", + "quests.ore_proc.refined_ore.title": "Minério Refinado", + "quests.ore_proc.refined_ore.desc": "A única coisa que você pode realmente fazer com minério refinado é esmagá-lo.", + "quests.ore_proc.impure_dust.title": "Pó Impuro", + "quests.ore_proc.impure_dust.desc": "Lave esse pó sujo!", + "quests.ore_proc.purified_dust.title": "Pó Purificado", + "quests.ore_proc.purified_dust.desc": "Esta coluna mostra o que você pode fazer com seu pó purificado.", + "quests.ore_proc.dust_processed.title": "Seu pó final", + "quests.ore_proc.dust_processed.subtitle": "Ou será que não?", + "quests.ore_proc.dust_processed.desc": "&6Pós&r são a forma final de quase todos os minérios.\n\nA partir daqui, você pode colocá-los em uma &cFornalha&r, enviá-los para &earmazenamento&r ou até mesmo começar a usá-los imediatamente! Alguns pós precisarão de uma última etapa antes de se tornarem realmente úteis.\n\nLembre-se de manter sua &6linha de processamento de minério&r em ótimas condições! Você vai querer continuar expandindo e aprimorando-a à medida que avança, para poder gastar menos tempo minerando e mais tempo gregando.", + "quests.ore_proc.macerator_byproduct.title": "Esmagando com subprodutos", + "quests.ore_proc.macerator_byproduct.subtitle": "Posso obter ainda mais dos meus minérios!", + "quests.ore_proc.macerator_byproduct.desc": "Ao analisar o &bJEI&r, você provavelmente notou que seu &dMacerador&r ou &dMoenda&r lista mais &bprodutos&r do que você realmente está recebendo.\n\nGregTech não comunica isso muito bem, mas esses espaços extras estão disponíveis apenas no &6HV&r. Ao atingir esse nível, o macerador &6HV&r se torna incrivelmente poderoso, fornecendo uma enorme quantidade de subprodutos bônus de cada minério.", + "quests.ore_proc.macerator_byproduct.task": "Um Macerador HV ou Rodas de Esmagamento HS", + "quests.ore_proc.sodium_persuflate.title": "Banhe-os em Persulfato de Sódio", + "quests.ore_proc.sodium_persuflate.subtitle": "Não apenas para gravação de placas de circuito", + "quests.ore_proc.sodium_persuflate.desc": "Ao chegar a LV, você pode se interessar em usar um &bBanho Químico&r com &dPersuflato de Sódio&r para obter alguns subprodutos extras. Nem todos os minérios podem ser processados dessa maneira, mas os que podem, terão cerca de &670%&r de chance de subprodutos, em comparação com os &630%&r do &bLavador de Minério&r.\n\nPersuflato de Sódio pode ser um pouco trabalhoso de produzir em massa, mas, se você quiser, &9Água do Mar&r é um ótimo ponto de partida. A missão à esquerda fornece alguns exemplos que podem valer o investimento.", + "quests.ore_proc.sodium_ores.title": "Exemplos de banhos de Persulfato de Sódio", + "quests.ore_proc.sodium_ores.subtitle": "Uma economia de tempo útil", + "quests.ore_proc.sodium_ores.desc": "Aqui estão algumas recomendações para banhos de Persulfato de Sódio:\n\n- &6Alumínio Triturado&r: para &dRutilo&r (Titânio)\n\n- &6Bauxita Triturada&r: &dGálio&r\n\n- &6Cobalto Triturado&r: &dCobaltita&r para &dArsênio&r", + "quests.ore_proc.ore_washer.title": "Banhe-os em água", + "quests.ore_proc.ore_washer.subtitle": "A opção padrão para a maioria dos minérios", + "quests.ore_proc.ore_washer.desc": "A maioria dos minérios não precisa de equipamentos sofisticados para banho, e passá-los por um &dLavador de Minério&r ou &9Lavagem em Massa&r com um &dVentilador Encapsulado&r será suficiente.\n\nSe você usar o &bLavador de Minério&r, certifique-se de usar &9Água Destilada&r para dobrar a velocidade da receita.\n\nAinda não tem acesso a nenhum desses? Você pode simplesmente jogar seus minérios triturados na água para purificá-los, embora isso não gere subprodutos.", + "quests.ore_proc.ore_washer.task": "Qualquer Lavador de Minério", + "quests.ore_proc.mercury_ores.title": "Banhe-os em Mercúrio", + "quests.ore_proc.mercury_ores.subtitle": "Não coloque o dedo nisso", + "quests.ore_proc.mercury_ores.desc": "Banhar certos minérios em &dMercúrio&r pode gerar outros subprodutos úteis. Nem todos os minérios podem ser processados ​​dessa maneira, mas os que podem, terão cerca de &670%&r de chance de subprodutos, em comparação com os &630%&r do &bLavador de Minério&r.\n\n&dMercúrio&r pode ser facilmente obtido em &cRedstone&r ou &cCinábrio&r.\n\nA missão à direita mostra alguns exemplos que são bons para processar em Mercúrio.", + "quests.ore_proc.mercury.title": "Exemplos de banhos de Mercúrio", + "quests.ore_proc.mercury.subtitle": "Hora do banho de metal líquido", + "quests.ore_proc.mercury.desc": "Aqui estão algumas recomendações para banhos de Mercúrio:\n\n- &6Platina Triturada&r: &dPaládio&r\n\n- &6Cooperita Triturada&r: &dPaládio&r\n\n- &6Níquel Triturado&r: &dPlatina&r\n\n- &6Ouro Triturado&r: &dPrata&r", + "quests.ore_proc.indium.title": "A Linha Índio", + "quests.ore_proc.indium.subtitle": "Dizemos linha, mas na verdade é apenas um processo de duas etapas", + "quests.ore_proc.indium.desc": "A &6Linha de Índio&r não deve ser necessária antes de &9IV&r, mas exigirá &bEsfalerita&r e &bGalena&r purificadas.", + "quests.ore_proc.platline.title": "A infame Plati-linha", + "quests.ore_proc.platline.subtitle": "Jogadores de GregTech vs. Jogadores de Mekanism quando precisam de Ósmio:", + "quests.ore_proc.platline.desc": "A &6Linha da Platina&r será seu primeiro desafio real de processamento, fornecendo metais essenciais do grupo da platina: &bPlatina&r, &bPaládio&r, &bRutênio&r, &bRódio&r, &bIrídio&r e &bÓsmio&r.\n\nEmbora existam maneiras mais fáceis de obter &bPlatina&r e &bPaládio&r, esta linha será &obrigatória&r para acessar as outras.\n\nA Linha da Platina pode ser iniciada em &6HV&r, mas você não poderá completá-la completamente até atingir &dIV&r.", + "quests.ore_proc.electro_separator.title": "Separador Eletromagnético", + "quests.ore_proc.electro_separator.subtitle": "Provavelmente a máquina menos útil do GregTech", + "quests.ore_proc.electro_separator.desc": "O &6Separador Eletromagnético&r pode extrair elementos como Ferro e Ouro de &dMinérios Refinados&r, que você pode obter triturando os seus purificados. Por enquanto, recomendamos usá-lo principalmente para &dNaquadah&r. Se precisar de mais &aNeodímio&r, você também pode processar &dBastnasita&r.", + "quests.ore_proc.electro_separator.task": "Qualquer Separador Eletromagnético", + "quests.ore_proc.macerator_separator.title": "O Macerador", + "quests.ore_proc.macerator_separator.subtitle": "(denovo)", + "quests.ore_proc.macerator_separator.desc": "Às vezes, o macerador pode produzir subprodutos diferentes dos seus minérios purificados em outras rotas, mas eles ainda estão bloqueados até &6HV&r como qualquer outro subproduto do macerador.", + "quests.ore_proc.macerator_separator.task": "Qualquer Macerador", + "quests.ore_proc.thermal_centrifuge.title": "A Centrífuga Térmica", + "quests.ore_proc.thermal_centrifuge.subtitle": "A melhor opção para a maioria dos minérios purificados", + "quests.ore_proc.thermal_centrifuge.desc": "Para todos os outros Minérios Purificados que não precisam de tratamento especial, é melhor passá-los pela &dCentrífuga Térmica&r. Esta máquina pode produzir subprodutos a uma taxa confiável, usando apenas eletricidade. No entanto, ela é bem lenta, então sugerimos que você faça várias máquinas.", + "quests.ore_proc.thermal_centrifuge.task": "Qualquer Centrífuga Térmica", + "quests.ore_proc.sifter.title": "A Peneira", + "quests.ore_proc.sifter.subtitle": "O Simulador de Skyblock", + "quests.ore_proc.sifter.desc": "A &6Peneira&r deve ser usada para todas as suas &aGemas&r. Ela rende muito mais por minério do que qualquer outro método e é a única maneira de obter gemas exóticas e perfeitas antes do gravador laser &6HV&r.\n\nPeneiras de nível superior têm bônus de produção maiores, mesmo se você reduzir o clock da máquina!", + "quests.ore_proc.sifter.task": "Qualquer Peneira", + "quests.ore_proc.centrifuge_sifter.title": "Centrifugar o pó", + "quests.ore_proc.centrifuge_sifter.subtitle": "Subprodutos de subprodutos", + "quests.ore_proc.centrifuge_sifter.desc": "A &6Peneira&r pode produzir &6Pó Purificado&r, que você pode jogar em uma centrífuga para obter alguns subprodutos extras.", + "quests.ore_proc.centrifuge_sifter.task": "Qualquer Centrífuga", + "quests.ore_proc.electrolyzer.title": "Refinamento adicional", + "quests.ore_proc.electrolyzer.subtitle": "Um bis para o minério!", + "quests.ore_proc.electrolyzer.desc": "Certos &6Pós&r não têm uso direto. Por exemplo, &2Tantalita&r deve ser processada em um &6Eletrolisador&r para extrair os elementos brutos de &dTântalo&r e &dManganês&r.\n\nA maioria dessas receitas só estará disponível com um &bEletrolisador MV&r, então volte a isso mais tarde!", + "quests.ore_proc.electrolyzer.task": "Qualquer Eletrolisador", + "quests.ore_proc.packer.title": "O Empacotador", + "quests.ore_proc.packer.subtitle": "É muito rápido", + "quests.ore_proc.packer.desc": "Antigamente, no GregTech, esse garotinho mau era muito usado — você costumava obter uma tonelada de &6Pequenos&r e &6Pós Minúsculos&r do processamento de minério.\n\nHoje em dia, ele só é realmente útil para compactação automática, como &dTerras Raras&r em uma &6Centrífuga&r que retorna muitas &6Pequenas Pilhas de Pó&r.\n\nNão se esqueça: um &eBraço Robótico&r configurado para o modo Fornecer Exatamente pode ser útil para evitar obstruções nos slots de entrada.", + "quests.ore_proc.packer.task": "Qualquer Empacotador", "quests.steam_age": "Automação Primitiva", "quests.steam_age.subtitle": "De Máquinas Primitivas ao Poder do Vapor", "quests.steam_age.basic_greate.title": "Noções Básicas de Greate", diff --git a/kubejs/assets/tfg/lang/ru_ru.json b/kubejs/assets/tfg/lang/ru_ru.json index 612e31d9f..1e55e80e0 100644 --- a/kubejs/assets/tfg/lang/ru_ru.json +++ b/kubejs/assets/tfg/lang/ru_ru.json @@ -1,7 +1,634 @@ { "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "parts.lang.1": "biomes", + "biome.tfg.nether/basalt_deltas": "Базальтовые дельты", + "biome.tfg.nether/decaying_caverns": "Гниющие пещеры", + "biome.tfg.nether/lush_hollow": "Пышная лощина", + "biome.tfg.nether/webbed_lair": "Паучье логово", + "biome.tfg.nether/ash_forest": "Пепельный лес", + "biome.tfg.nether/lava_floes": "Магмовые пустоши", + "biome.tfg.nether/diorite_caves": "Глубокие пещеры", + "biome.tfg.nether/gabbro_caves": "Глубокие пещеры", + "biome.tfg.nether/gneiss_caves": "Глубокие пещеры", + "biome.tfg.nether/granite_caves": "Глубокие пещеры", + "biome.tfg.nether/schist_caves": "Глубокие пещеры", + "biome.tfg.moon/lunar_asurine_dense": "Certus Fields", + "biome.tfg.moon/lunar_asurine_sparse": "Asurine Fields", + "biome.tfg.moon/lunar_chorus_dense": "Chorus Thicket", + "biome.tfg.moon/lunar_chorus_sparse": "Chorus Forest", + "biome.tfg.moon/lunar_corals_dense": "Lunar Reef", + "biome.tfg.moon/lunar_corals_sparse": "Lunar Maria", + "biome.tfg.moon/lunar_lights_dense": "Lightbloom Star Gazers", + "biome.tfg.moon/lunar_lights_sparse": "Lightbloom Scrubland", + "biome.tfg.moon/lunar_plains": "Lunar Plains", + "biome.tfg.moon/lunar_sands": "Lunar Sands", + "parts.lang.2": "blocks", + "block.tfg.piglin_disguise": "Маскировка Пиглина", + "block.tfg.piglin_disguise_block": "Маскировка Пиглина", + "block.tfg.dry_ice": "Сухой лёд", + "block.tfg.decorative_vase.black": "Чёрная декоративная ваза", + "block.tfg.decorative_vase.gray": "Серая декоративная ваза", + "block.tfg.decorative_vase.light_gray": "Светло-серая декоративная ваза", + "block.tfg.decorative_vase.white": "Белая декоративная ваза", + "block.tfg.decorative_vase.pink": "Розовая декоративная ваза", + "block.tfg.decorative_vase.magenta": "Пурпурная декоративная ваза", + "block.tfg.decorative_vase.purple": "Фиолетовая декоративная ваза", + "block.tfg.decorative_vase.blue": "Синяя декоративная ваза", + "block.tfg.decorative_vase.light_blue": "Светло-синяя декоративная ваза", + "block.tfg.decorative_vase.cyan": "Голубая декоративная ваза", + "block.tfg.decorative_vase.green": "Зелёная декоративная ваза", + "block.tfg.decorative_vase.lime": "Лаймовая декоративная ваза", + "block.tfg.decorative_vase.yellow": "Жёлтая декоративная ваза", + "block.tfg.decorative_vase.orange": "Оранжевая декоративная ваза", + "block.tfg.decorative_vase.red": "Красная декоративная ваза", + "block.tfg.decorative_vase.brown": "Коричневая декоративная ваза", + "block.tfg.decorative_vase.unfired": "Необожженая декоративная ваза", + "block.tfg.decorative_vase.unfired.black": "Чёрная необожженая декоративная ваза", + "block.tfg.decorative_vase.unfired.gray": "Серая необожженая декоративная ваза", + "block.tfg.decorative_vase.unfired.light_gray": "Светло-серая необожженая декоративная ваза", + "block.tfg.decorative_vase.unfired.white": "Белая необожженая декоративная ваза", + "block.tfg.decorative_vase.unfired.pink": "Розовая необожженая декоративная ваза", + "block.tfg.decorative_vase.unfired.magenta": "Пурпурная необожженая декоративная ваза", + "block.tfg.decorative_vase.unfired.purple": "Фиолетовая необожженая декоративная ваза", + "block.tfg.decorative_vase.unfired.blue": "Синяя необожженая декоративная ваза", + "block.tfg.decorative_vase.unfired.light_blue": "Светло-синяя необожженая декоративная ваза", + "block.tfg.decorative_vase.unfired.cyan": "Голубая необожженая декоративная ваза", + "block.tfg.decorative_vase.unfired.green": "Зелёная необожженая декоративная ваза", + "block.tfg.decorative_vase.unfired.lime": "Лаймовая необожженая декоративная ваза", + "block.tfg.decorative_vase.unfired.yellow": "Жёлтая необожженая декоративная ваза", + "block.tfg.decorative_vase.unfired.orange": "Оранжевая необожженая декоративная ваза", + "block.tfg.decorative_vase.unfired.red": "Красная необожженая декоративная ваза", + "block.tfg.decorative_vase.unfired.brown": "Коричневая необожженая декоративная ваза", + "block.tfg.decorative_vase.generated.black": "Чёрная ваза с добычей", + "block.tfg.decorative_vase.generated.gray": "Серая ваза с добычей", + "block.tfg.decorative_vase.generated.light_gray": "Светло-серая ваза с добычей", + "block.tfg.decorative_vase.generated.white": "Белая ваза с добычей", + "block.tfg.decorative_vase.generated.pink": "Розовая ваза с добычей", + "block.tfg.decorative_vase.generated.magenta": "Пурпурная ваза с добычей", + "block.tfg.decorative_vase.generated.purple": "Фиолетовая ваза с добычей", + "block.tfg.decorative_vase.generated.blue": "Синяя ваза с добычей", + "block.tfg.decorative_vase.generated.light_blue": "Светло-синяя ваза с добычей", + "block.tfg.decorative_vase.generated.cyan": "Голубая ваза с добычей", + "block.tfg.decorative_vase.generated.green": "Зелёная ваза с добычей", + "block.tfg.decorative_vase.generated.lime": "Лаймовая ваза с добычей", + "block.tfg.decorative_vase.generated.yellow": "Жёлтая ваза с добычей", + "block.tfg.decorative_vase.generated.orange": "Оранжевая ваза с добычей", + "block.tfg.decorative_vase.generated.red": "Красная ваза с добычей", + "block.tfg.decorative_vase.generated.brown": "Коричневая ваза с добычей", + "block.tfg.light_concrete_support": "Опора из светлого бетона", + "block.tfg.light_concrete_support_horizontal": "Опора из светлого бетона", + "block.tfg.dark_concrete_support": "Опора из темного бетона", + "block.tfg.dark_concrete_support_horizontal": "Опора из темного бетона", + "block.tfg.reinforced_light_concrete_support": "Опора из укрепленного светлого бетона", + "block.tfg.reinforced_light_concrete_support_horizontal": "Опора из укрепленного светлого бетона", + "block.tfg.reinforced_dark_concrete_support": "Опора из укрепленного темного бетона", + "block.tfg.reinforced_dark_concrete_support_horizontal": "Опора из укрепленного темного бетона", + "block.tfg.rebar_support": "Опора из арматуры", + "block.tfg.rebar_support_horizontal": "Опора из арматуры", + "block.tfg.steel_support": "Опора из стали", + "block.tfg.steel_support_horizontal": "Опора из стали", + "block.tfg.gabbro_support_horizontal": "Опора из габбро", + "block.tfg.gabbro_support": "Опора из габбро", + "block.tfg.shale_support_horizontal": "Опора из сланца", + "block.tfg.shale_support": "Опора из сланца", + "block.tfg.claystone_support_horizontal": "Опора из аргиллита", + "block.tfg.claystone_support": "Опора из аргиллита", + "block.tfg.limestone_support_horizontal": "Опора из известняка", + "block.tfg.limestone_support": "Опора из известняка", + "block.tfg.conglomerate_support_horizontal": "Опора из конгломерата", + "block.tfg.conglomerate_support": "Опора из конгломерата", + "block.tfg.dolomite_support_horizontal": "Опора из доломита", + "block.tfg.dolomite_support": "Опора из доломита", + "block.tfg.chert_support_horizontal": "Опора из кремнистого сланца", + "block.tfg.chert_support": "Опора из кремнистого сланца", + "block.tfg.chalk_support_horizontal": "Опора из мела", + "block.tfg.chalk_support": "Опора из мела", + "block.tfg.rhyolite_support_horizontal": "Опора из риолита", + "block.tfg.rhyolite_support": "Опора из риолита", + "block.tfg.dacite_support_horizontal": "Опора из дацита", + "block.tfg.dacite_support": "Опора из дацита", + "block.tfg.quartzite_support_horizontal": "Опора из кварцита", + "block.tfg.quartzite_support": "Опора из кварцита", + "block.tfg.slate_support_horizontal": "Опора из шиферного сланца", + "block.tfg.slate_support": "Опора из шиферного сланца", + "block.tfg.phyllite_support_horizontal": "Опора из филлита", + "block.tfg.phyllite_support": "Опора из филлита", + "block.tfg.schist_support_horizontal": "Опора из аспидного сланца", + "block.tfg.schist_support": "Опора из аспидного сланца", + "block.tfg.gneiss_support_horizontal": "Опора из гнейса", + "block.tfg.gneiss_support": "Опора из гнейса", + "block.tfg.marble_support_horizontal": "Опора из мрамора", + "block.tfg.marble_support": "Опора из мрамора", + "block.tfg.basalt_support_horizontal": "Опора из базальта", + "block.tfg.basalt_support": "Опора из базальта", + "block.tfg.diorite_support_horizontal": "Опора из диорита", + "block.tfg.diorite_support": "Опора из диорита", + "block.tfg.andesite_support_horizontal": "Опора из андезита", + "block.tfg.andesite_support": "Опора из андезита", + "block.tfg.granite_support_horizontal": "Опора из гранита", + "block.tfg.granite_support": "Опора из гранита", + "block.tfg.pyroxenite_support_horizontal": "Опора из пироксенита", + "block.tfg.pyroxenite_support": "Опора из пироксенита", + "block.tfg.migmatite_support_horizontal": "Опора из мигматита", + "block.tfg.migmatite_support": "Опора из мигматита", + "block.tfg.travertine_support_horizontal": "Опора из травертина", + "block.tfg.travertine_support": "Опора из травертина", + "block.tfg.glacian_support": "Опора из гласиевого дерева", + "block.tfg.glacian_support_horizontal": "Опора из гласиевого дерева", + "block.tfg.strophar_support": "Опора из строфарового гриба", + "block.tfg.strophar_support_horizontal": "Опора из строфарового гриба", + "block.tfg.aeronos_support": "Опора из конусообразного гриба", + "block.tfg.aeronos_support_horizontal": "Опора из конусообразного гриба", + "block.tfg.rock.hardened_deepslate": "Укрeпленный мигматит", + "block.tfg.rock.hardened_blackstone": "Укрeпленный пироксенит", + "block.tfg.rock.hardened_dripstone": "Укрeпленный травертин", + "block.tfg.spike.deepslate_spike": "Мигматитовый сталагмит", + "block.tfg.spike.blackstone_spike": "Пироксенитовый сталагмит", + "block.tfg.spike.dripstone_spike": "Твавертиновый сталагмит", + "block.tfg.loose.deepslate": "Камушек мигматита", + "block.tfg.loose.dripstone": "Камушек травертина", + "block.tfg.mushroom_roots": "Грибные корни", + "block.tfg.mushroom_sprouts": "Грибные ростки", + "block.tfg.charred_log": "Обугленное бревно", + "block.tfg.rock.hardened_moon_stone": "Укреплённый анортозит", + "block.tfg.spike.moon_stone_spike": "Анортозитовый сталагмит", + "block.tfg.loose.moon_stone": "Камешек анортозита", + "block.tfg.rock.hardened_moon_deepslate": "Укреплённый норит", + "block.tfg.spike.moon_deepslate_spike": "Норитовый сталагмит", + "block.tfg.loose.moon_deepslate": "Камешек норита", + "block.tfg.rock.hardened_mars_stone": "Укреплённый аргиллит", + "block.tfg.spike.mars_stone_spike": "Аргиллитовый сталагмит", + "block.tfg.loose.mars_stone": "Камешек аргиллита", + "block.tfg.rock.hardened_venus_stone": "Укреплённый трахит", + "block.tfg.spike.venus_stone_spike": "Трахитовый сталагмит", + "block.tfg.loose.venus_stone": "Камешек трахита", + "block.tfg.rock.hardened_mercury_stone": "Укреплённый коматиит", + "block.tfg.spike.mercury_stone_spike": "Коматиитовый сталагмит", + "block.tfg.loose.mercury_stone": "Камешек коматиита", + "block.tfg.rock.hardened_glacio_stone": "Укреплённый фонолит", + "block.tfg.spike.glacio_stone_spike": "Фонолитовый сталагмит", + "block.tfg.loose.glacio_stone": "Камешек фонолита", + "block.tfg.rock.hardened_permafrost": "Укреплённый вечный лед", + "block.tfg.spike.permafrost_spike": "Сталагмит вечного льда ", + "block.tfg.loose.permafrost": "Кусок вечного льда", + "block.tfg.rock.raw.stromatolite": "Строматолиты", + "block.tfg.rock.spike.stromatolite": "Строматолитовый сталагмит", + "block.tfg.rock.raw.geyserite": "Кремнистый туф", + "block.tfg.rock.spike.geyserite": "Сталагмит кремнистого туфа", + "block.tfg.rock.hardened_red_granite": "Укреплённый красный гранит", + "block.tfg.loose.red_granite": "Камешек красного гранита", + "block.tfg.spike.red_granite_spike": "Сталагмит красного гранита", + "block.tfg.ash_pile": "Кучка золы", + "block.tfg.pile.white_sand": "Белый песок", + "block.tfg.pile.black_sand": "Чёрный песок", + "block.tfg.pile.brown_sand": "Коричневый песок", + "block.tfg.pile.red_sand": "Красный песок", + "block.tfg.pile.yellow_sand": "Жёлтый песок", + "block.tfg.pile.green_sand": "Зелёный песок", + "block.tfg.pile.pink_sand": "Розовый песок", + "block.tfg.pile.moon_sand": "Лунный песок", + "block.tfg.pile.mars_sand": "Аргиллитовый песок", + "block.tfg.pile.venus_sand": "Трахитовый песок", + "block.tfg.lunar_roots": "Лунные светоцветы", + "block.tfg.lunar_sprouts": "Лунная светотрава", + "block.tfg.lunar_chorus_plant": "Хорусовое растение", + "block.tfg.lunar_chorus_flower": "Хорусовый цветок", + "block.tfg.marker.moon": "Луна", + "block.tfg.marker.mars": "Марс", + "block.tfg.marker.venus": "Венера", + "block.tfg.marker.mercury": "Меркурий", + "block.tfg.lv_aqueous_accumulator": "Обычный жидкостный коллектор", + "block.tfg.mv_aqueous_accumulator": "§bУлучшенный жидкостный коллектор§r", + "block.tfg.hv_aqueous_accumulator": "§6Улучшенный жидкостный коллектор II§r", + "block.tfg.ev_aqueous_accumulator": "§5Улучшенный жидкостный коллектор III§r", + "block.tfg.iv_aqueous_accumulator": "§9Elite Aqueous Accumulator§r", + "block.tfg.luv_aqueous_accumulator": "§dElite Aqueous Accumulator II§r", + "block.tfg.zpm_aqueous_accumulator": "§cElite Aqueous Accumulator III§r", + "block.tfg.uv_aqueous_accumulator": "§3Ultimate Aqueous Accumulator§r", + "block.tfg.electric_greenhouse": "Электротеплица", + "block.tfg.lv_food_processor": "Basic Food Processor", + "block.tfg.mv_food_processor": "§bAdvanced Food Processor§r", + "block.tfg.hv_food_processor": "§6Advanced Food Processor II§r", + "block.tfg.ev_food_processor": "§5Advanced Food Processor III§r", + "block.tfg.iv_food_processor": "§9Elite Food Processor§r", + "block.tfg.luv_food_processor": "§dElite Food Processor II§r", + "block.tfg.zpm_food_processor": "§cElite Food Processor III§r", + "block.tfg.uv_food_processor": "§3Ultimate Food Processor§r", + "block.tfg.lv_food_oven": "Basic Electric Oven", + "block.tfg.mv_food_oven": "§bAdvanced Electric Oven§r", + "block.tfg.hv_food_oven": "§6Advanced Electric Oven II§r", + "block.tfg.ev_food_oven": "§5Advanced Electric Oven III§r", + "block.tfg.iv_food_oven": "§9Elite Electric Oven§r", + "block.tfg.luv_food_oven": "§dElite Electric Oven II§r", + "block.tfg.zpm_food_oven": "§cElite Electric Oven III§r", + "block.tfg.uv_food_oven": "§3Ultimate Electric Oven§r", + "block.tfg.lv_food_refrigerator": "Basic Refrigerator", + "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.iv_food_refrigerator": "§9Elite Refrigerator§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.iv_gas_pressurizer": "§9Elite Gas Pressurizer§r", + "block.tfg.luv_gas_pressurizer": "§dElite Gas Pressurizer II§r", + "block.tfg.zpm_gas_pressurizer": "§cElite Gas Pressurizer III§r", + "block.tfg.uv_gas_pressurizer": "§3Ultimate Gas Pressurizer§r", + "block.tfg.fluid.semiheavy_ammoniacal_water": "Semiheavy Ammoniacal Water", + "block.tfg.grass.mars_dirt": "Martian Dirt", + "block.tfg.grass.mars_clay_dirt": "Martian Clay Dirt", + "block.tfg.grass.mars_farmland": "Martian Farmland", + "block.tfg.grass.amber_mycelium": "Amber Mycelium", + "block.tfg.grass.amber_clay_mycelium": "Amber Clay Mycelium", + "block.tfg.grass.amber_kaolin_mycelium": "Amber Kaolin Mycelium", + "block.tfg.grass.rusticus_mycelium": "Rusticus Mycelium", + "block.tfg.grass.rusticus_clay_mycelium": "Rusticus Clay Mycelium", + "block.tfg.grass.rusticus_kaolin_mycelium": "Rusticus Kaolin Mycelium", + "block.tfg.grass.sangnum_mycelium": "Sangnum Mycelium", + "block.tfg.grass.sangnum_clay_mycelium": "Sangnum Clay Mycelium", + "block.tfg.grass.sangnum_kaolin_mycelium": "Sangnum Kaolin Mycelium", + "block.tfg.spice": "Ostrum Deposit", + "block.tfg.saplings.crimson": "Crimson Fungus", + "block.tfg.saplings.warped": "Warped Fungus", + "block.tfg.saplings.alphacene": "Alphacene Mushroom", + "block.tfg.saplings.aeronos": "Aeronos Mushroom", + "block.tfg.saplings.strophar": "Strophar Mushroom", + "block.tfg.saplings.glacian": "Glacian Mushroom", + "block.tfg.groundcover.glider_feather": "Glider Feather", + "block.tfg.groundcover.wraptor_feather": "Wraptor Feather", + "block.tfg.groundcover.aeronos_stick": "Aeronos Twig", + "block.tfg.groundcover.strophar_stick": "Strophar Twig", + "block.tfg.groundcover.glacian_stick": "Glacian Twig", + "block.tfg.groundcover.alphacene_stick": "Alphacene Twig", + "block.tfg.electromagnetic_accelerator": "Electromagnetic Accelerator", + "block.tfg.superconductor_coil_large": "Large Superconductor Coil", + "block.tfg.superconductor_coil_small": "Small Superconductor Coil", + "block.tfg.interplanetary_item_launcher": "Interplanetary Railgun", + "block.tfg.interplanetary_item_receiver": "Interplanetary Receiver", + "block.tfg.interplanetary_logistics_monitor": "Interplanetary Logistics Monitor", + "block.tfg.railgun_ammo_loader": "Railgun Ammo Loader", + "block.tfg.ulv_railgun_item_loader_in": "§8ULV Interplanetary Railgun Input Bus§r", + "block.tfg.lv_railgun_item_loader_in": "§7LV Interplanetary Railgun Input Bus§r", + "block.tfg.mv_railgun_item_loader_in": "§bMV Interplanetary Railgun Input Bus§r", + "block.tfg.hv_railgun_item_loader_in": "§6HV Interplanetary Railgun Input Bus§r", + "block.tfg.ev_railgun_item_loader_in": "§5EV Interplanetary Railgun Input Bus§r", + "block.tfg.iv_railgun_item_loader_in": "§9IV Interplanetary Railgun Input Bus§r", + "block.tfg.luv_railgun_item_loader_in": "§dLuV Interplanetary Railgun Input Bus§r", + "block.tfg.zpm_railgun_item_loader_in": "§cZPM Interplanetary Railgun Input Bus§r", + "block.tfg.uv_railgun_item_loader_in": "§3UV Interplanetary Railgun Input Bus§r", + "block.tfg.uhv_railgun_item_loader_in": "§4UHV Interplanetary Railgun Input Bus§r", + "block.tfg.ulv_railgun_item_loader_out": "§8ULV Interplanetary Railgun Output Bus§r", + "block.tfg.lv_railgun_item_loader_out": "§7LV Interplanetary Railgun Output Bus§r", + "block.tfg.mv_railgun_item_loader_out": "§bMV Interplanetary Railgun Output Bus§r", + "block.tfg.hv_railgun_item_loader_out": "§6HV Interplanetary Railgun Output Bus§r", + "block.tfg.ev_railgun_item_loader_out": "§5EV Interplanetary Railgun Output Bus§r", + "block.tfg.iv_railgun_item_loader_out": "§9IV Interplanetary Railgun Output Bus§r", + "block.tfg.luv_railgun_item_loader_out": "§dLuV Interplanetary Railgun Output Bus§r", + "block.tfg.zpm_railgun_item_loader_out": "§cZPM Interplanetary Railgun Output Bus§r", + "block.tfg.uv_railgun_item_loader_out": "§3UV Interplanetary Railgun Output Bus§r", + "block.tfg.uhv_railgun_item_loader_out": "§4UHV Interplanetary Railgun Output Bus§r", + "block.tfg.reflector": "Reflector Block", + "block.tfg.sunflower": "Подсолнух", + "block.tfg.sunflower_wild": "Дикорастущий подсолнух", + "block.tfg.sunflower_dead": "Погибший подсолнух", + "block.tfg.rapeseed": "Канола", + "block.tfg.rapeseed_wild": "Дикорастущая канола", + "block.tfg.rapeseed_dead": "Погибшая канола", + "block.tfg.casings.machine_casing_iron_desh": "Desh Machine Casing", + "block.tfg.casings.machine_casing_stainless_evaporation": "Stainless Evaporation Machine Casing", + "block.tfg.casings.machine_casing_vacuum_engine_intake": "Vacuum Engine Intake Machine Casing", + "block.tfg.casings.machine_casing_mars": "Robust Dust-Proof Machine Casing", + "block.tfg.casings.machine_casing_blue_solar_panel": "Basic Solar Panel Casing", + "block.tfg.casings.machine_casing_green_solar_panel": "Advanced Solar Panel Casing", + "block.tfg.casings.machine_casing_red_solar_panel": "Elite Solar Panel Casing", + "block.tfg.machine_casing_aluminium_plated_steel": "Aluminium Plated Steel Machine Casing", + "parts.lang.3": "TODO", + "parts.block.tfg.corallium_arenicolus_0": "Corallium Arenicolus", + "parts.block.tfg.corallium_arenicolus_1": "Corallium Arenicolus", + "parts.block.tfg.corallium_arenicolus_2": "Corallium Arenicolus", + "parts.block.tfg.corallium_arenicolus_3": "Corallium Arenicolus", + "parts.block.tfg.corallium_arenicolus_4": "Corallium Arenicolus", + "parts.block.tfg.corallium_arenicolus_5": "Corallium Arenicolus", + "block.tfg.sand.fluorapatite.blue": "Blue Fluorapatite Sand", + "block.tfg.sandstone.raw.fluorapatite.blue": "Raw Blue Fluorapatite Sandstone", + "block.tfg.sandstone.wall.raw.fluorapatite.blue": "Raw Blue Fluorapatite Sandstone Wall", + "block.tfg.sandstone.slab.raw.fluorapatite.blue": "Raw Blue Fluorapatite Sandstone Slab", + "block.tfg.sandstone.stairs.raw.fluorapatite.blue": "Raw Blue Fluorapatite Sandstone Stairs", + "block.tfg.sandstone.smooth.fluorapatite.blue": "Smooth Blue Fluorapatite Sandstone", + "block.tfg.sandstone.wall.smooth.fluorapatite.blue": "Smooth Blue Fluorapatite Sandstone Wall", + "block.tfg.sandstone.slab.smooth.fluorapatite.blue": "Smooth Blue Fluorapatite Sandstone Slab", + "block.tfg.sandstone.stairs.smooth.fluorapatite.blue": "Smooth Blue Fluorapatite Sandstone Stairs", + "block.tfg.sandstone.fluorapatite.blue": "Cut Blue Fluorapatite Sandstone", + "block.tfg.sandstone.smooth.chiseled.fluorapatite.blue": "Chiseled Blue Fluorapatite Sandstone", + "block.tfg.sand.fluorapatite.green": "Green Fluorapatite Sand", + "block.tfg.sandstone.raw.fluorapatite.green": "Raw Green Fluorapatite Sandstone", + "block.tfg.sandstone.wall.raw.fluorapatite.green": "Raw Green Fluorapatite Sandstone Wall", + "block.tfg.sandstone.slab.raw.fluorapatite.green": "Raw Green Fluorapatite Sandstone Slab", + "block.tfg.sandstone.stairs.raw.fluorapatite.green": "Raw Green Fluorapatite Sandstone Stairs", + "block.tfg.sandstone.smooth.fluorapatite.green": "Smooth Green Fluorapatite Sandstone", + "block.tfg.sandstone.wall.smooth.fluorapatite.green": "Smooth Green Fluorapatite Sandstone Wall", + "block.tfg.sandstone.slab.smooth.fluorapatite.green": "Smooth Green Fluorapatite Sandstone Slab", + "block.tfg.sandstone.stairs.smooth.fluorapatite.green": "Smooth Green Fluorapatite Sandstone Stairs", + "block.tfg.sandstone.fluorapatite.green": "Cut Green Fluorapatite Sandstone", + "block.tfg.sandstone.smooth.chiseled.fluorapatite.green": "Chiseled Green Fluorapatite Sandstone", + "block.tfg.sand.fluorapatite.brown": "Brown Fluorapatite Sand", + "block.tfg.sandstone.raw.fluorapatite.brown": "Raw Brown Fluorapatite Sandstone", + "block.tfg.sandstone.wall.raw.fluorapatite.brown": "Raw Brown Fluorapatite Sandstone Wall", + "block.tfg.sandstone.slab.raw.fluorapatite.brown": "Raw Brown Fluorapatite Sandstone Slab", + "block.tfg.sandstone.stairs.raw.fluorapatite.brown": "Raw Brown Fluorapatite Sandstone Stairs", + "block.tfg.sandstone.smooth.fluorapatite.brown": "Smooth Brown Fluorapatite Sandstone", + "block.tfg.sandstone.wall.smooth.fluorapatite.brown": "Smooth Brown Fluorapatite Sandstone Wall", + "block.tfg.sandstone.slab.smooth.fluorapatite.brown": "Smooth Brown Fluorapatite Sandstone Slab", + "block.tfg.sandstone.stairs.smooth.fluorapatite.brown": "Smooth Brown Fluorapatite Sandstone Stairs", + "block.tfg.sandstone.fluorapatite.brown": "Cut Brown Fluorapatite Sandstone", + "block.tfg.sandstone.smooth.chiseled.fluorapatite.brown": "Chiseled Brown Fluorapatite Sandstone", + "block.tfg.sand.fluorapatite.orange": "Orange Fluorapatite Sand", + "block.tfg.sandstone.raw.fluorapatite.orange": "Raw Orange Fluorapatite Sandstone", + "block.tfg.sandstone.wall.raw.fluorapatite.orange": "Raw Orange Fluorapatite Sandstone Wall", + "block.tfg.sandstone.slab.raw.fluorapatite.orange": "Raw Orange Fluorapatite Sandstone Slab", + "block.tfg.sandstone.stairs.raw.fluorapatite.orange": "Raw Orange Fluorapatite Sandstone Stairs", + "block.tfg.sandstone.smooth.fluorapatite.orange": "Smooth Orange Fluorapatite Sandstone", + "block.tfg.sandstone.wall.smooth.fluorapatite.orange": "Smooth Orange Fluorapatite Sandstone Wall", + "block.tfg.sandstone.slab.smooth.fluorapatite.orange": "Smooth Orange Fluorapatite Sandstone Slab", + "block.tfg.sandstone.stairs.smooth.fluorapatite.orange": "Smooth Orange Fluorapatite Sandstone Stairs", + "block.tfg.sandstone.fluorapatite.orange": "Cut Orange Fluorapatite Sandstone", + "block.tfg.sandstone.smooth.chiseled.fluorapatite.orange": "Chiseled Orange Fluorapatite Sandstone", + "block.tfg.sand.fluorapatite.white": "White Fluorapatite Sand", + "block.tfg.sandstone.raw.fluorapatite.white": "Raw White Fluorapatite Sandstone", + "block.tfg.sandstone.wall.raw.fluorapatite.white": "Raw White Fluorapatite Sandstone Wall", + "block.tfg.sandstone.slab.raw.fluorapatite.white": "Raw White Fluorapatite Sandstone Slab", + "block.tfg.sandstone.stairs.raw.fluorapatite.white": "Raw White Fluorapatite Sandstone Stairs", + "block.tfg.sandstone.smooth.fluorapatite.white": "Smooth White Fluorapatite Sandstone", + "block.tfg.sandstone.wall.smooth.fluorapatite.white": "Smooth White Fluorapatite Sandstone Wall", + "block.tfg.sandstone.slab.smooth.fluorapatite.white": "Smooth White Fluorapatite Sandstone Slab", + "block.tfg.sandstone.stairs.smooth.fluorapatite.white": "Smooth White Fluorapatite Sandstone Stairs", + "block.tfg.sandstone.fluorapatite.white": "Cut White Fluorapatite Sandstone", + "block.tfg.sandstone.smooth.chiseled.fluorapatite.white": "Chiseled White Fluorapatite Sandstone", + "block.tfg.sand.fluorapatite.yellow": "Yellow Fluorapatite Sand", + "block.tfg.sandstone.raw.fluorapatite.yellow": "Raw Yellow Fluorapatite Sandstone", + "block.tfg.sandstone.wall.raw.fluorapatite.yellow": "Raw Yellow Fluorapatite Sandstone Wall", + "block.tfg.sandstone.slab.raw.fluorapatite.yellow": "Raw Yellow Fluorapatite Sandstone Slab", + "block.tfg.sandstone.stairs.raw.fluorapatite.yellow": "Raw Yellow Fluorapatite Sandstone Stairs", + "block.tfg.sandstone.smooth.fluorapatite.yellow": "Smooth Yellow Fluorapatite Sandstone", + "block.tfg.sandstone.wall.smooth.fluorapatite.yellow": "Smooth Yellow Fluorapatite Sandstone Wall", + "block.tfg.sandstone.slab.smooth.fluorapatite.yellow": "Smooth Yellow Fluorapatite Sandstone Slab", + "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", + "block.tfg.large_nest_box": "Large Crimson Nest", + "tfg.block_entity.large_nest_box": "Large Nest Box", + "block.tfg.large_nest_box_warped": "Large Warped Nest", + "parts.lang.4": "fluids", + "fluid.tfg.nether_slurry": "Nether Slurry", + "fluid.tfg.enriched_nether_slurry": "Enriched Nether Slurry", + "fluid.tfg.ender_slurry": "Ender Slurry", + "fluid.tfg.enriched_ender_slurry": "Enriched Ender Slurry", + "fluid.tfg.semiheavy_ammoniacal_water": "Semiheavy Ammoniacal Water", + "fluid.tfg.heavy_water": "Heavy Water", + "fluid.tfg.sulfur_fumes": "Sulfur Fumes", + "fluid.tfg.super_heated_slurry": "Super Heated Slurry", + "parts.lang.5": "items", + "item.tfg.antipoison_pill": "Пилюля противоядия", + "item.tfg.haste_pill": "Пилюля спешки", + "item.tfg.night_vision_pill": "Пилюля ночного зрения", + "item.tfg.poison_pill": "Пилюля отравления", + "item.tfg.regeneration_pill": "Пилюля регенерации", + "item.tfg.slowness_pill": "Пилюля замедления", + "item.tfg.speed_pill": "Пилюля скорости", + "item.tfg.water_breathing_pill": "Пилюля водного дыхания", + "item.tfg.weakness_pill": "Пилюля слабости", + "item.tfg.antipoison_tablet": "Таблетка противоядия", + "item.tfg.haste_tablet": "Таблетка спешки", + "item.tfg.night_vision_tablet": "Таблетка ночного зрения", + "item.tfg.poison_tablet": "Таблетка отравления", + "item.tfg.regeneration_tablet": "Таблетка регенерации", + "item.tfg.slowness_tablet": "Таблетка замедления", + "item.tfg.speed_tablet": "Таблетка скорости", + "item.tfg.water_breathing_tablet": "Таблетка водного дыхания", + "item.tfg.weakness_tablet": "Таблетка слабости", + "item.tfg.absorption_salvo": "Мазь поглощения", + "item.tfg.fire_resistance_salvo": "Мазь огнестойкости", + "item.tfg.instant_health_salvo": "Мазь исцеления", + "item.tfg.invisibility_salvo": "Мазь невидимости", + "item.tfg.luck_salvo": "Мазь везения", + "item.tfg.resistance_salvo": "Мазь сопротивления", + "item.tfg.paraffin_wax": "Парафин", + "item.tfg.flint_arrow_head": "Наконечник стрелы из кремня", + "item.tfg.fletching": "Оперение", + "item.tfg.phantom_silk": "Фантомная ткань", + "item.tfg.phantom_thread": "Фантомная нить", + "item.tfg.polycaprolactam_fabric": "Поликапролактамовая ткань", + "item.tfg.polycaprolactam_string": "Поликапролактамовая нить", + "item.tfg.space_suit_fabric": "Space Suit Fabric", + "item.tfg.vitrified_pearl": "Vitrified Ender Pearl", + "item.tfg.fishing_net.wood": "Рыболовная сеть (Дерево)", + "item.tfg.fishing_net.brass": "Рыболовная сеть (Латунь)", + "item.tfg.fishing_net.rose_gold": "Рыболовная сеть (Розовое золото)", + "item.tfg.fishing_net.sterling_silver": "Рыболовная сеть (Стерлинговое серебро)", + "item.tfg.fishing_net.invar": "Рыболовная сеть (Инвар)", + "item.tfg.fishing_net.cupronickel": "Рыболовная сеть (Купроникель)", + "item.tfg.fishing_net.tin_alloy": "Рыболовная cеть (Оловянный сплав)", + "item.tfg.fishing_net.magnalium": "Рыболовная cеть (Магналий)", + "item.tfg.conifer_rosin": "Хвойная канифоль", + "item.tfg.hardwood_strip": "Полоска твердой древесины", + "item.tfg.soaked_hardwood_strip": "Пропитанная полоска твердой древесины", + "item.tfg.soaked_unrefined_paper": "Пропитанная грубая бумага", + "item.tfg.prepared_leather_gloves": "Подготовленные кожаные перчатки", + "item.tfg.latex_soaked_gloves": "Пропитанные латексом перчатки", + "item.tfg.unfired_chalk": "Необожженная палочка мела", + "item.tfg.armor_stand_arms": "Стойка для брони с руками", + "item.tfg.flint_club_head": "Навершие булавы (Кремень)", + "item.tfg.brick.deepslate": "Мигматитовый кирпич", + "item.tfg.brick.moon_stone": "Анортозитовый кирпич", + "item.tfg.brick.mars_stone": "Аргиллитовый кирпич", + "item.tfg.brick.venus_stone": "Трахитовый кирпич", + "item.tfg.brick.mercury_stone": "Коматиитовый кирпич", + "item.tfg.brick.glacio_stone": "Фонолитовый кирпич", + "item.tfg.brick.permafrost": "Кирпич вечной мерзлоты", + "item.tfg.brick.red_granite": "Кирпич красного гранита", + "item.tfg.terra_firma_greg": "TerraFirmaGreg", + "item.tfg.scaffolding_frame": "Обшивка строительных лесов", + "item.tfg.airship_hull": "Корпус дирижабля", + "item.tfg.airship_balloon": "Воздушный шар", + "item.tfg.lv_aircraft_engine": "Воздушный двигатель LV", + "item.tfg.hv_aircraft_engine": "Воздушный двигатель HV", + "item.tfg.ev_aircraft_engine": "Воздушный двигатель EV", + "item.tfg.black_steel_plated_airplane_propeller": "Пропеллер самолёта (Черная сталь)", + "item.tfg.redblu_steel_plated_airplane_propeller": "Пропеллер самолёта (Красно-синяя сталь)", + "item.tfg.stainless_steel_plated_airplane_propeller": "Пропеллер самолёта (Нержавеющая сталь)", + "item.tfg.titanium_plated_airplane_propeller": "Пропеллер самолёта (Титан)", + "item.tfg.redblu_steel_landing_gear": "Шасси (Красно-синяя сталь)", + "item.tfg.aluminium_landing_gear": "Шасси (Алюминий)", + "item.tfg.stainless_steel_landing_gear": "Шасси (Нержавеющая Сталь)", + "item.tfg.titanium_landing_gear": "Шасси (Титан)", + "item.tfg.redblu_steel_hull_reinforcement": "Усиление корпуса самолёта I (Красно-синяя сталь)", + "item.tfg.aluminium_hull_reinforcement": "Усиление корпуса самолёта II (Алюминий)", + "item.tfg.stainless_steel_hull_reinforcement": "Усиление корпуса самолёта III (Нержавеющая сталь)", + "item.tfg.titanium_hull_reinforcement": "Усиление корпуса самолёта IV (Титан)", + "item.tfg.ulv_universal_circuit": "Универсальная схема ULV", + "item.tfg.lv_universal_circuit": "Универсальная схема LV", + "item.tfg.mv_universal_circuit": "Универсальная схема MV", + "item.tfg.hv_universal_circuit": "Универсальная схема HV", + "item.tfg.ev_universal_circuit": "Универсальная схема EV", + "item.tfg.iv_universal_circuit": "Универсальная схема IV", + "item.tfg.luv_universal_circuit": "Универсальная схема LuV", + "item.tfg.zpm_universal_circuit": "Универсальная схема ZPM", + "item.tfg.uv_universal_circuit": "Универсальная схема UV", + "item.tfg.uhv_universal_circuit": "Универсальная схема UHV", + "item.tfg.chipboard_composite": "ДСП", + "item.tfg.piglin_disguise": "Маскировка Пиглина", + "item.tfg.trowel": "Мастерок", + "item.tfg.foil_pack": "Фольгированный пакет", + "item.tfg.used_foil_pack": "Использованный фольгированный пакет", + "item.tfg.clean_foil_pack": "Очищенный фольгированный пакет", + "item.tfg.dry_ice": "Сухой лёд", + "item.tfg.food.raw_birt": "Сырое мясо птаха", + "item.tfg.food.cooked_birt": "Жареное мясо птаха", + "item.tfg.food.raw_crawlermari": "Сырой ползмар", + "item.tfg.food.cooked_crawlermari": "Жареный ползмар", + "item.tfg.food.raw_limpet": "Сырое мясо рудовичка", + "item.tfg.food.cooked_limpet": "Жареное мясо рудовичка", + "item.tfg.food.raw_moon_rabbit": "Сырая лунная крольчатина", + "item.tfg.food.cooked_moon_rabbit": "Жареная лунная крольчатина", + "item.tfg.spawn_egg.moon_rabbit": "Яйцо призыва лунного кролика", + "item.tfg.food.freeze_dried.red_grapes": "Лиофилизированный красный виноград", + "item.tfg.food.freeze_dried.white_grapes": "Лиофилизированный белый виноград", + "item.tfg.food.freeze_dried.glow_berries": "Лиофилизированные светящиеся ягоды", + "item.tfg.food.freeze_dried.chorus_fruit": "Лиофилизированный плод хоруса", + "item.tfg.food.freeze_dried.popped_chorus_fruit": "Лиофилизированный прожаренный плод хоруса", + "item.tfg.food.freeze_dried.blackberry": "Лиофилизированная ежевика", + "item.tfg.food.freeze_dried.blueberry": "Лиофилизированная черника", + "item.tfg.food.freeze_dried.bunchberry": "Лиофилизированный кизил", + "item.tfg.food.freeze_dried.cloudberry": "Лиофилизированная морошка", + "item.tfg.food.freeze_dried.cranberry": "Лиофилизированная клюква", + "item.tfg.food.freeze_dried.elderberry": "Лиофилизированная бузина", + "item.tfg.food.freeze_dried.gooseberry": "Лиофилизированный крыжовник", + "item.tfg.food.freeze_dried.raspberry": "Лиофилизированная малина", + "item.tfg.food.freeze_dried.snowberry": "Лиофилизированный снежноягодник", + "item.tfg.food.freeze_dried.strawberry": "Лиофилизированная клубника", + "item.tfg.food.freeze_dried.wintergreen_berry": "Лиофилизированная брусника", + "item.tfg.food.freeze_dried.banana": "Лиофилизированный банан", + "item.tfg.food.freeze_dried.cherry": "Лиофилизированная вишня", + "item.tfg.food.freeze_dried.green_apple": "Лиофилизированное зелёное яблоко", + "item.tfg.food.freeze_dried.lemon": "Лиофилизированный лимон", + "item.tfg.food.freeze_dried.olive": "Лиофилизированные оливки", + "item.tfg.food.freeze_dried.orange": "Лиофилизированный апельсин", + "item.tfg.food.freeze_dried.peach": "Лиофилизированный персик", + "item.tfg.food.freeze_dried.plum": "Лиофилизированная слива", + "item.tfg.food.freeze_dried.red_apple": "Лиофилизированное красное яблоко", + "item.tfg.food.freeze_dried.pumpkin_chunks": "Лиофилизированная тыквенная мякоть", + "item.tfg.food.freeze_dried.melon_slice": "Лиофилизированный ломтик арбуза", + "item.tfg.food.freeze_dried.fig": "Лиофилизированный инжир", + "item.tfg.food.freeze_dried.pineapple": "Лиофилизированный ананас", + "item.tfg.food.calorie_paste": "Калорийная паста", + "item.tfg.food.meal_bag": "Лиофилизированное мясо", + "item.tfg.food.ice_soup": "Ледяной суп", + "item.tfg.food.raw_glacian_mutton": "Raw Glacian Mutton", + "item.tfg.food.cooked_glacian_mutton": "Cooked Glacian Mutton", + "item.tfg.spawn_egg.glacian_ram": "Glacian Spawn Egg", + "item.tfg.food.raw_sniffer_beef": "Raw Sniffer Beef", + "item.tfg.food.cooked_sniffer_beef": "Cooked Sniffer Beef", + "item.tfg.spawn_egg.sniffer": "Sniffer Spawn Egg", + "item.tfg.roasted_sunflower_seeds": "Обжаренные семена подсолнуха", + "item.tfg.sunflower_seeds": "Семена подсолнуха", + "item.tfg.sunflower_product": "Шляпка подсолнуха", + "item.tfg.rapeseed_seeds": "Семена канолы", + "item.tfg.rapeseed_product": "Стручок канолы", + "item.tfg.flintlock_mechanism": "Ударно-кремнёвый замок", + "item.tfg.advanced_clockwork_mechanism": "Продвинутый шестерёнчатый агрегат", + "item.tfg.certus_mechanism": "Кварцевое устройство", + "item.tfg.small_bullet_casing": "Маленькая гильза", + "item.tfg.large_bullet_casing": "Большая гильза", + "item.tfg.shell_bullet_casing": "Дробовая гильза", + "item.tfg.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.rocket_cone_t2": "Improved Rocket Nose Cone", + "item.tfg.rocket_fin_t2": "Improved Rocket Fin", + "item.tfg.cryo_fluix_pearl": "Cryogenized Fluix Pearl", + "item.tfg.marker.earth_orbit": "Орбита Земли", + "item.tfg.marker.moon_orbit": "Орбита Луны", + "item.tfg.marker.mars_orbit": "Орбита Марса", + "item.tfg.marker.venus_orbit": "Орбита Венеры", + "item.tfg.marker.mercury_orbit": "Орбита Меркурия", + "item.tfg.railgun_ammo_shell": "Railgun Ammo Shell", + "item.tfg.sulfur_fumes_bucket": "Sulfur Fumes Bucket", + "item.tfg.super_heated_slurry_bucket": "Super Heated Slurry Bucket", + "item.tfg.cryogenized_fluix_bucket": "Cryogenized Fluix Bucket", + "item.tfg.fluix_bucket": "Liquid Fluix Bucket", + "item.tfg.latex_bucket": "Latex Bucket", + "item.tfg.vulcanized_latex_bucket": "Vulcanized Latex Bucket", + "item.tfg.conifer_pitch_bucket": "Conifer Pitch Bucket", + "item.tfg.compressed_nitrox_bucket": "Nitrox Bucket", + "item.tfg.compressed_heliox_bucket": "Heliox Bucket", + "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.semiheavy_ammoniacal_water_bucket": "Semiheavy Ammoniacal Water Bucket", + "item.tfg.harvest_basket": "Лукошко", + "item.tfg.aluminium_harvest_basket": "Лукошко (Алюминий)", + "item.tfg.wood.lumber.aeronos": "Доска из конусообразного гриба", + "item.tfg.wood.lumber.strophar": "Доска из строфарового гриба", + "item.tfg.wood.lumber.glacian": "Доска из гласиевого дерева", + "item.tfg.twigs.aeronos": "Aeronos Twig", + "item.tfg.twigs.strophar": "Strophar Twig", + "item.tfg.twigs.glacian": "Glacian Twig", + "item.tfg.twigs.alphacene": "Alphacene Twig", + "item.tfg.glacian_wool": "Glacian Ram Wool", + "item.tfg.sniffer_wool": "Mineral Rich Tufts", + "item.tfg.sniffer_egg": "Sniffer Egg", + "item.tfg.wraptor_wool": "Mineral Rich Down Feathers", + "item.tfg.wraptor_egg": "Wraptor Egg", + "item.tfg.wraptor_sugar": "Wraptor Sugar", + "item.tfg.aes_polyurethane": "Bio-AES Reinforced R-Polyurethane Foam", + "item.tfg.mli_shielding": "Multi-Layer Insulated Shielding", + "item.tfg.rocket_cone_t3": "Advanced Rocket Nose Cone", + "item.tfg.rocket_fin_t3": "Advanced Rocket Fin", + "item.tfg.elite_power_thruster": "§aElite Power Thruster", + "item.tfg.silica_aerogel": "Silica Aerogel", + "item.tfg.better_space_suit_fabric": "Adaptive Space Suit Fabric", + "item.tfg.universal_compost_browns": "Brown Universal Compost", + "item.tfg.universal_compost_greens": "Green Universal Compost", + "item.tfg.etching_diamond_tip": "Etching Diamond Tip", + "item.tfg.spade_head_extruder_mold": "Форма экструдера (Оголовье заступа)", + "item.tfg.mining_hammer_head_extruder_mold": "Extruder Mold (Mining Hammer Head)", + "item.tfg.sword_head_extruder_mold": "Extruder Mold (Sword Head)", + "item.tfg.pickaxe_head_extruder_mold": "Extruder Mold (Pickaxe Head)", + "item.tfg.shovel_head_extruder_mold": "Extruder Mold (Shovel Head)", + "item.tfg.axe_head_extruder_mold": "Extruder Mold (Axe Head)", + "item.tfg.hoe_head_extruder_mold": "Extruder Mold (Hoe Head)", + "item.tfg.scythe_head_extruder_mold": "Extruder Mold (Sycthe Head)", + "item.tfg.file_head_extruder_mold": "Extruder Mold (File Head)", + "item.tfg.hammer_head_extruder_mold": "Extruder Mold (Hammer Head)", + "item.tfg.saw_head_extruder_mold": "Extruder Mold (Saw Head)", + "item.tfg.knife_head_extruder_mold": "Extruder Mold (Knife Head)", + "item.tfg.butchery_knife_head_extruder_mold": "Extruder Mold (Butchery Knife Head)", + "item.tfg.propick_head_extruder_mold": "Extruder Mold (Prospector's Pick Head)", + "item.tfg.javelin_head_extruder_mold": "Extruder Mold (Javelin Head)", + "item.tfg.chisel_head_extruder_mold": "Extruder Mold (Chisel Head)", + "item.tfg.mace_head_extruder_mold": "Extruder Mold (Mace Head)", + "item.tfg.mattock_head_extruder_mold": "Extruder Mold (Mattock Head)", + "item.tfg.fish_hook_extruder_mold": "Extruder Mold (Fish Hook)", + "item.tfg.whisk_extruder_mold": "Extruder Mold (Whisk)", + "item.tfg.screwdriver_tip_extruder_mold": "Extruder Mold (Screwdriver Tip)", + "item.tfg.wrench_tip_extruder_mold": "Extruder Mold (Wrench Tip)", + "item.tfg.wire_cutter_head_extruder_mold": "Extruder Mold (Wire Cutter Head)", + "item.tfg.small_casing_extruder_mold": "Extruder Mold (Small Bullet Casing)", + "item.tfg.shell_casing_extruder_mold": "Extruder Mold (Shell Bullet Casing)", + "item.tfg.large_casing_extruder_mold": "Extruder Mold (Large Bullet Casing)", + "item.tfg.photo_cell_t1": "Обычная фотоэлектрическая ячейка", + "item.tfg.electric_extendo_grip": "Electric Extendo Grip", + "item.tfg.treated_chipboard_composite": "Treated Chipboard Composite", + "item.tfg.high_density_treated_fiberboard": "Medium Density Treated Fiberboard", + "parts.lang.6": "materials", "material.tfg.latex": "Латекс", + "material.tfg.vulcanized_latex": "Вулканический латекс", "material.tfg.fluix": "Флакс", + "material.tfg.conifer_pitch": "Хвойная смола", + "material.gtceu.lactose": "Лактоза", "material.tfg.gabbro": "Габбро", "material.tfg.shale": "Сланец", "material.tfg.claystone": "Аргиллит", @@ -16,101 +643,371 @@ "material.tfg.schist": "Аспидный сланец", "material.tfg.gneiss": "Гнейс", "material.tfg.chalk": "Мел", - "tfg.disabled_portal": "Магия портала заблокирована неизветсной силой, попробуйте получить доступ к измерению поднявшись в небо или спустившись в глубины.", - "quests.naming-1": "t - Заголовок", - "quests.naming-2": "st - Подзаголовок", - "quests.naming-3": "d* - Описание, где * номер описания, например: d1, d2, d3, d4...", - "quests.naming-4": "t* - Задание, где * номер задания, например: t1, t2, t3, t4...", - "quests.76EF4D00586A8B74.t": "&aTerraFirmaGreg Modpack!", - "quests.76EF4D00586A8B74.st": "Спасибо, что выбрали наш модпак!", - "quests.76EF4D00586A8B74.d1": "Самое интересное начинается прямо сейчас! Да одарит этот мир ваше существование!", - "quests.387DEEADF4922AB3.t": "Генерация руд в мире TFG", - "quests.387DEEADF4922AB3.st": "Куда веселей чем в ванилле", - "quests.387DEEADF4922AB3.d1": "В TerraFirmaGreg руду генерируются интересней чем где либо. \n1. Каждая руда появляется в своей породе. TFC добавляет в мир много разных пород, то есть обычный камень из ваниллы вы нигде не встретите, поэтому руды как и в реальной жизни генерируются только в определенных породах. \n2. Существуют несколько типов рудных жил, такие как: кластер, сфера, труба и несколько редких других, о которых говорить не будем. \n3. Для облегчения жизни игрокам, на поверхности появляются рудные индикаторы, под которыми в большинстве случаев располагается сама жила с рудой. \nTFG содержит небольшое Wiki для этого в таблице Excel. Для того, чтобы перейти по ссылке, выполните задание, после заберите награду и в чате отобразится кнопка по нажатию на которую вас перебросит на таблицу Excel с генерацией руды.", - "quests.63E6C5684E12828C.st": "Вам нужно пить воду, чтобы не умереть, постарайтсь найти реку или озеро с обычной водой!", - "quests.63E6C5684E12828C.d1": "Используйте правую кнопку мыши, чтобы выпить немного воды. \nОсторожно! Если вы выпьете соленой воды у вас появится эффект усиленной жажды и скорее всего вы умрете.", - "quests.63E6C5684E12828C.t1": "Посмотрите на обычную воду (не соленую или горячую)", - "quests.6D43C29AC049341D.t": "Как создать команду?", - "quests.6D43C29AC049341D.st": "Вы играете с друзьями? Удивляет...", - "quests.6D43C29AC049341D.d1": "Вы можете создать команду, чтобы вместе выполнять квесты. Для этого откройте инвентарь, после в левом верхнем углу выберите кнопку где нарисованы 3 разноцветных человечка, далее откроется интерфейс в котором вы можете создать команду, используйте кнопку §aСоздать команду§r, далее задайте ей имя и возможно какие-либо другие параметры, после успешного создания команды, вы можете приглашать в нее других игроков используя кнопку плюсика в зеленом круге в правом верхнем углу, в будущем ваши квесты будут синхронизироваться и любой участник команды сможет их выполнять. Удачи!", - "quests.6D43C29AC049341D.t1": "Нажми сюда, чтобы выполнить квест", - "quests.0B42D4AE2AC67F93.t": "Как захватить территорию?", - "quests.0B42D4AE2AC67F93.st": "Ну или как загрузить чанки в своей территории", - "quests.0B42D4AE2AC67F93.d1": "Вы можете приватить чанки, которые хотите, если вы например играете на сервере. Как это сделать? Используйте кнопку, чтобы открыть мини-карту, после выделите чанки, которые вы хотите захватить, после нажатием на правую кнопку мыши выберите в списке §aЗахватить территорию§r, вроде бы оно будет третьим пунктом снизу, вуаля, вы захватили территорию. Внимание: ваши тиммейты смогут ломать блоки в вашем регионе, что логично.", - "quests.0B42D4AE2AC67F93.t1": "Нажми сюда, чтобы выполнить квест", - "quests.2672C65095539E23.t": "Как получить дробленную руду без дробителя?", - "quests.2672C65095539E23.st": "На самом деле очень просто.", - "quests.2672C65095539E23.d1": "Просто сломайте блок руды молотом (кувалдой) и вы получите сразу же дробленную руду, которую можно раздробить вручную и получить порошок, например графита или серы.", - "quests.2672C65095539E23.t1": "Нажми сюда, чтобы выполнить квест", - "quests.3D7B0F3134C30364.t": "Важная информация о квестах!", - "quests.3D7B0F3134C30364.d1": "Квесты все еще в разработке, в будущем будет добавлено больше описаний и другого. Частично вы можете использовать книгу TFC для поиска нужной информации. &cПолные квесты в каждой ветке с переводом появятся в обновлении 1.0.0, так как сейчас у разработчиков очень мало времени.", - "quests.3D7B0F3134C30364.t1": "Нажми сюда, чтобы выполнить квест", - "quests.7196BB6BDBAE7B51.st": "Пропитание очень важно в этом мире!", - "quests.7196BB6BDBAE7B51.d1": "Попробуйте убить какое-нибудь животное и получить с него немного мяса. Кушать сырое мясо плохая идея, поэтому постарайтесь пожарить его на костре.", - "quests.7196BB6BDBAE7B51.t1": "Добудьте любое сырое мясо", - "quests.557D3A67A36DF9D8.st": "Приготовьте мясо на костре!", - "quests.557D3A67A36DF9D8.d1": "Поздавляю, вы приготовили мясо, теперь можете безопасно его скушать.", - "quests.557D3A67A36DF9D8.t1": "Добудьте любое жаренное мясо", - "quests.682B58EC2D39F1A1.st": "Костер, но не обычный", - "quests.682B58EC2D39F1A1.d1": "Бросьте на блок 3 палки и 1 бревно, после наведите на этот блок курсор мыши и используйте примитивную зажигалку (Просто зажимайте правую кнопку мыши, как будто вы целитесь с лука), с первого раза может не получиться. После успеха, на месте выброшенных 3 палок и 1 бревна появится костер, в который нужно закидывтаь бревна, чтобы костер продолжал гореть. Для увеличения шанса создания костра, вы можете добавить к уже лежащим палкам и бревну: бумагу, солому и другие легковоспламеняемые предметы, за каждый предмет по +10%.", - "quests.682B58EC2D39F1A1.t1": "Сделайте костер", - "quests.6D940527BFF1D4C0.t": "Примитивное освещение", - "quests.6D940527BFF1D4C0.st": "Они тухнут? Да! Они могут потухнуть, я сам в шоке!", - "quests.6D940527BFF1D4C0.d1": "Вы удивитесь, но факела не бесконечные в TFC. Они будут гореть примерно 2 игровых дня, после потухнут. Но не бескокойтесь, в руках или инвентаре они не тухнут, поэтому вы можете носить с собой 1 факел и когда другие в вашем доме будут тухнуть, просто используйте на них правой кнопкой мыши факел из инвентаря, он подожжет уже потухшие факела.", - "quests.3B3BA51C8CAEFC7F.t": "Примитивная зажигалка", - "quests.3B3BA51C8CAEFC7F.st": "Люди в древности разжигали костры при помощи такой штуки, а может быть и нет, откуда мне знать", - "quests.3B3BA51C8CAEFC7F.d1": "Эта штука позволит вам развести костер, или поджечь, что либо, просто наведите курсор мыши на любой блок, после зажмите и держите правую кнопку мыши, после максимального натяжения, отпустите, с шансом в 50% подожжется блок на которой вы смотрели. Как сделать костер используя примитивную зажигалку, в следующем квесте.", - "quests.365F6F48E0BB2EFC.t": "Палки и камни", - "quests.365F6F48E0BB2EFC.st": "Соберите немного камней и палок для будущего развития", - "quests.365F6F48E0BB2EFC.d1": "При входе в мир, первое, что вы встречаете это полностью измененный мир. Основными предметами на старте являются палки и камушки, которые лежат на земле и появляются в любом биоме, так же они обновляются каждый сезон, то есть после зимы палки и камушки заного регенирируются на земле. Соберите несколько при помощи ПКМ и приступайте к след. шагу. \n\nВозьмите в руку 2 и более камня, после нажмите правую кнопку мыши, далее у вас откроется меню, в котором вы можете делать оголовия каменных инструментов, все рецепты можно посмотреть в EMI или просто нажав на иконку предмета каменного оголовия в квесте. После соедините оголовие с палкой и получите инструмент настоящего аборигена. \n\nТеперь вы умная обезьянка!", - "quests.365F6F48E0BB2EFC.t1": "Найдите любые палки", - "quests.365F6F48E0BB2EFC.t2": "Найдите любые камушки", - "quests.508DA76FA2766B7B.st": "Это не ракетная установка!", - "quests.508DA76FA2766B7B.d1": "Копья работают по схожему принципу с трезубцем из ванильного майнкрафта, просто зажмите правую кнопку мыши и прицельтесь, после отпустите и ваш трезубец полетит туда куда вы смотрели.", - "quests.508DA76FA2766B7B.t1": "Создайте любое каменное копье", - "quests.318BF1F671BC4620.st": "Спасибо, что не алмазная...", - "quests.318BF1F671BC4620.d1": "Мотыги используются для вскапывания грядок и посадки растений. Интересный факт: в TFC можно вскапывать грядки даже вдалеке от воды, главное при наведении смотрите на подсказу (панель сверху), в ней будет отображаться кол-во насыщения водой грядки. Далее выберите семяна собранные в мире с подходящими климатическими условиями (в том числе и влажностью грядки) посадите и ожидайте.", - "quests.36A9E5CD45A79288.st": "Реалистично", - "quests.36A9E5CD45A79288.d1": "Используя правую кнопку мыши с мотыгой в руке вспахайте землю, серьезно, это очень просто, попробуйте.", - "quests.36A9E5CD45A79288.t1": "Вспахайте землю", - "quests.5C396041880D32FF.st": "Выглядит многообещающе", - "quests.5C396041880D32FF.d1": "Исследуя мир вы можете найти дикие растения, соберите их при помощи ножа или руки, таким образом вы получите семяна и само растение.", - "quests.5C396041880D32FF.t1": "Найдите любые семяна", - "quests.4CF472C9778068D6.t": "Соберите свой первый урожай", - "quests.4CF472C9778068D6.st": "Оно съедобно?", - "quests.4CF472C9778068D6.d1": "Не уверен. \n\nВнимание! Растения растут очень долго и также они очень прихотливы к условиям своего роста, обязательно сверяйтесь с условиями в которых растет то или иное растения прежде чем его посадить иначе оно превратится в мертвый куст.", - "quests.4CF472C9778068D6.t1": "Нажмите сюда, чтобы выполнить квест", - "quests.2BFC2744E4DE4B5A.st": "Не рубите дерево рукой, это неправильно!", - "quests.2BFC2744E4DE4B5A.d1": "Топоры используются для рубки дерева, да в прочем и всего деревянного, ведь рукой в TFC нельзя сломать дерево.", - "quests.716B407EEED8BE95.st": "Спасибо, что копает", - "quests.716B407EEED8BE95.d1": "Лопаты используются для создания тропинок и выкапывания земли, песка и возможно чего-то еще!", - "quests.06C7B7138EDE4B38.st": "Ваш лучший друг", - "quests.06C7B7138EDE4B38.d1": "Ножи очень важный инструмент в TFC, позволяет срезать траву и получать солому, из него можно сделать огненную яму и обжаривать металлы и глинянные формы, но об этом дальше в квестах.", - "quests.45D907EF7902A200.st": "Понадобится для создания укрытия или обжарной ямы", - "quests.45D907EF7902A200.d1": "Важный предмет на начальных этапах развития, вам его понадобится много, предлагаю накопать около 3 стаков.", - "quests.27DA5AAB102611A2.st": "Милая шапочка, будет вас спасать от жары и палящего солнца", - "quests.30AE1FF285B64716.st": "Это сноп соломы, из него можно построить милый домик", - "quests.0ED8BE436A0ECDDB.st": "Это сноп сена, из него можно сделать красивые декорации", - "quests.0ED8BE436A0ECDDB.d1": "И вправду, этот блок всего лишь декоративный, не пытайтесь скормить его коню.", - "quests.69D20168E26BBF59.st": "Реализм", - "quests.69D20168E26BBF59.d1": "Для начала выкопайте 1 блок в земле, или любой другой поверхности, дальше при помощи клавиши V установите в яму вещи, которые вы хотите обжарить. Если мы говорим о формах, их помещается 4 штуки. Дальше возьмите в руку Сено и нажмите ПКМ в яму, сено начнет заполнять яму, вам нужно использовать 8 сена, дальше таким же образом добавьте 8 бревен, далее вы можете спокойно поджечь это дело при помощи примитивного огнива или факела (просто бросьте факел сверху вашей ямы и оно начнет разгораться). Потом вы должны ожидать окончания обжига и после достать свои готовые предметы. Таким же образом происходит расплавка металла в емкостях. То есть кладете кусочки меди в сосуд и в эту самую яму, после вышеописанного процесса вы получите расплавленную медь, которую сможете отлить в слитки, оголовья и так далее.", - "quests.69D20168E26BBF59.t1": "Создайте обжарочную яму", - "quests.373FD04AD6CA9F92.t": "Новое или старое дерево", - "quests.373FD04AD6CA9F92.st": "При помощи топора соберите немного древесины, хочу напомнить, что бревна рукой не добываются", - "quests.373FD04AD6CA9F92.t1": "Добудьте любое дерево", - "quests.5DB0CA9F9724D301.t": "Угольные ямы", - "quests.5DB0CA9F9724D301.st": "Получите свой первый уголь! Стоп, а зачем он нужен?", - "quests.5DB0CA9F9724D301.d1": "Для создания угольной ямы вам понадобится много, много дерева. Для начала выкопайте яму, глубиной в 1 блок (можно и глубже, если позволяет кол-во древесины).", - "quests.5DB0CA9F9724D301.d2": "После, при помощи Shift + ПКМ нажмите в любой блок в яме, у вас появится охапка бревен, ее можно наполнять, нажимая ПКМ с бревном в руке по охапке, либо просто открыть интерфейс и наполнить вручную. От кол-ва дерева в охапке зависит количество получаемого впоследствии угля.", - "quests.5DB0CA9F9724D301.d3": "Далее, накрываете это все не горючим блоком, камнем или землей, оставляете один блок открытым и поджигаете при помощи выброшенного факела или примитивного зажигателя.", - "quests.5DB0CA9F9724D301.d4": "Теперь ваша куча земли начала дымиться, накройте последний блок, который вы поджигали опять же не горючим блоком и ожидайте, как только куча перестанет дымиться, раскапывайте ее и получайте уголь.", - "quests.478D0DF94D7495EF.st": "Это вправду просто, или нет?", - "quests.478D0DF94D7495EF.d1": "Процесс отлития стекла показан в книге-гайде TFC, которую вы можете найти в инвентаре в правой его части, но для блоков стекла, точнее для их отлития используются блоки латуни, в TerraFirmaGreg для этого вы можете использовать блоки латуни из GTCEu или блоки каолинитовой глины, удачи! :)", - "quests.478D0DF94D7495EF.t1": "Отлейте любой блок стекла", - "quests..t": "", - "quests..st": "", - "quests..d1": "", - "quests..t1": "", + "material.tfg.moon_stone": "Анортозит", + "material.tfg.moon_deepslate": "Норит", + "material.tfg.mars_stone": "Аргиллит", + "material.tfg.venus_stone": "Трахит", + "material.tfg.mercury_stone": "Коматиит", + "material.tfg.glacio_stone": "Фонолит", + "material.gtceu.thermochemically_treated_hardwood": "Термохимически обработанная твердая древесина", + "material.gtceu.hardwood": "Твердая древесина", + "material.gtceu.asurine": "Азурин", + "material.tfg.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", + "material.tfg.compressed_trimix": "Compressed 50/30/20 Trimix", + "material.tfg.compressed_trimix_3": "Compressed 50/30/20 Trimix-3", + "material.tfg.chlorodifluoromethane": "Chlorodifluoromethane", + "material.tfg.acetylene": "Acetylene", + "material.tfg.1_1_1_2_tetrafluoroethane": "1,1,1,2-Tetrafluoroethane", + "material.tfg.isobutane": "Isobutane", + "material.tfg.chloryl_fluoride": "Chloryl Fluoride", + "material.tfg.chlorine_pentafluoride": "Chlorine Pentafluoride", + "material.tfg.solar_coolant": "Solar Coolant", + "material.tfg.solar_coolant_tier2": "Aerospatial Solar Coolant", + "material.tfg.sodium_hydride": "Sodium Hydride", + "material.tfg.boric_acid": "Boric Acid", + "material.tfg.trimethyl_borate": "Trimethyl Borate", + "material.tfg.sodium_borohydride": "Sodium Borohydride", + "material.tfg.sodium_methoxide": "Sodium Methoxide", + "material.tfg.ammonia_borane": "Ammonia Borane", + "material.tfg.aniline": "Aniline", + "material.tfg.dimethyl_carbonate": "Dimethyl Carbonate", + "material.tfg.methyl_phenylcarbamate": "Methyl N-Phenylcarbamate", + "material.tfg.methylene_diphenyl_dicarbamate": "Methylene Diphenyl-4,4'-dicarbamate", + "material.tfg.methylene_diphenyl_diisocyanate": "Methylene Diphenyl-4,4'-diisocyanate", + "material.tfg.tmos": "Tetramethoxysilane", + "material.tfg.silica_gel": "Silica Gel", + "material.tfg.soaked_silica_gel": "Acetone Soaked Silica Gel", + "material.tfg.nuclear_residue": "Nuclear Residue", + "material.tfg.oxidized_nuclear_residue": "Oxidized Nuclear Residue", + "material.tfg.refined_nuclear_residue": "Refined Nuclear Residue", + "material.tfg.certus_regolith": "Certus Regolith", + "material.tfg.goethe_regolith": "Goethe Regolith", + "material.tfg.bright_regolith": "Bright Regolith", + "material.tfg.cassiterite_regolith": "Cassiterite Regolith", + "material.tfg.regolith_mush": "Regolith Mush", + "parts.lang.8": "other", + "tfg.creative_tab.tfg": "TerraFirmaGreg", + "tfg.disabled_portal": "Магия портала заблокирована неизвестной силой, попробуйте получить доступ к измерению поднявшись в небо или спустившись в глубины.", + "tfg.tooltip.food_trait.refrigerating": "§bRefrigerating", + "tfg.tooltip.foodtrait.freeze_dried": "Cryodesiccated", + "tfg.tooltip.extraterrestrial_farming": "§4Temperature:§r An oxygenated environment provides 15°C", + "entity.tfg.moon_rabbit.male": "Лунный кролик (Самец)", + "entity.tfg.moon_rabbit.female": "Лунная крольчиха (Самка)", + "tfg.tooltip.moon_rabbit_variant.pink": "Розовая шкурка", + "tfg.tooltip.moon_rabbit_variant.white": "Белая шкурка", + "tfg.tooltip.moon_rabbit_variant.grey": "Каменистая шкурка", + "tfg.tooltip.moon_rabbit_variant.cyan": "Шкурка цвета морской пены", + "tfg.tooltip.moon_rabbit_variant.purple": "Лавандовая шкурка", + "tfg.tooltip.moon_rabbit_variant.sofu": "Пломбирная шкурка", + "entity.tfg.glacian_ram.male": "Glacian Ram", + "entity.tfg.glacian_ram.female": "Glacian Ewe", + "tfg.tooltip.attribution.glacian_ram": "§9§oЗаслуга: Ad Astra", + "entity.tfg.sniffer.male": "Sniffer", + "entity.tfg.sniffer.female": "Sniffer", + "tfg.tooltip.attribution.sniffer": "§9§oЗаслуга: Minecraft", + "entity.tfg.wraptor.male": "Wraptor", + "entity.tfg.wraptor.female": "Wraptor", + "tfg.tooltip.attribution.wraptor": "§9§oЗаслуга: Species", + "item.treetap.tap": "Deprecated Item, Craft to Upgrade", + "item.gtceu.zinc_ingot": "Deprecated Item, Craft to Upgrade", + "item.gtceu.brass_ingot": "Deprecated Item, Craft to Upgrade", + "item.gtceu.vanadium_ingot": "Deprecated Item, Craft to Upgrade", + "item.gtceu.black_steel_ingot": "Deprecated Item, Craft to Upgrade", + "item.gtceu.red_steel_ingot": "Deprecated Item, Craft to Upgrade", + "item.gtceu.blue_steel_ingot": "Deprecated Item, Craft to Upgrade", + "item.gtceu.iron_double_ingot": "Deprecated Item, Craft to Upgrade", + "item.gtceu.black_steel_double_ingot": "Deprecated Item, Craft to Upgrade", + "item.gtceu.red_steel_double_ingot": "Deprecated Item, Craft to Upgrade", + "item.gtceu.blue_steel_double_ingot": "Deprecated Item, Craft to Upgrade", + "item.gtceu.zinc_nugget": "Deprecated Item, Craft to Upgrade", + "item.gtceu.brass_nugget": "Deprecated Item, Craft to Upgrade", + "item.gtceu.copper_nugget": "Deprecated Item, Craft to Upgrade", + "item.gtceu.vanadium_nugget": "Deprecated Item, Craft to Upgrade", + "item.gtceu.copper_plate": "Deprecated Item, Craft to Upgrade", + "item.gtceu.brass_plate": "Deprecated Item, Craft to Upgrade", + "item.gtceu.gold_plate": "Deprecated Item, Craft to Upgrade", + "item.gtceu.iron_plate": "Deprecated Item, Craft to Upgrade", + "item.gtceu.cobalt_plate": "Deprecated Item, Craft to Upgrade", + "item.gtceu.rose_gold_plate": "Deprecated Item, Craft to Upgrade", + "item.gtceu.aluminium_plate": "Deprecated Item, Craft to Upgrade", + "item.gtceu.invar_plate": "Deprecated Item, Craft to Upgrade", + "item.gtceu.lead_plate": "Deprecated Item, Craft to Upgrade", + "item.gtceu.nickel_plate": "Deprecated Item, Craft to Upgrade", + "item.gtceu.osmium_plate": "Deprecated Item, Craft to Upgrade", + "item.gtceu.palladium_plate": "Deprecated Item, Craft to Upgrade", + "item.gtceu.platinum_plate": "Deprecated Item, Craft to Upgrade", + "item.gtceu.rhodium_plate": "Deprecated Item, Craft to Upgrade", + "item.gtceu.silver_plate": "Deprecated Item, Craft to Upgrade", + "item.gtceu.vanadium_plate": "Deprecated Item, Craft to Upgrade", + "item.gtceu.zinc_plate": "Deprecated Item, Craft to Upgrade", + "item.gtceu.vanadium_block": "Deprecated Item, Craft to Upgrade", + "item.gtceu.zinc_block": "Deprecated Item, Craft to Upgrade", + "item.gtceu.brass_block": "Deprecated Item, Craft to Upgrade", + "item.gtceu.gold_purified_ore": "Deprecated Item, Craft to Upgrade", + "item.gtceu.copper_purified_ore": "Deprecated Item, Craft to Upgrade", + "item.gtceu.zinc_purified_ore": "Deprecated Item, Craft to Upgrade", + "item.gtceu.silver_purified_ore": "Deprecated Item, Craft to Upgrade", + "item.gtceu.tin_purified_ore": "Deprecated Item, Craft to Upgrade", + "item.gtceu.lead_purified_ore": "Deprecated Item, Craft to Upgrade", + "gtceu:rich_raw_copper": "Deprecated Item, Craft to Upgrade", + "gtceu:poor_raw_copper": "Deprecated Item, Craft to Upgrade", + "gtceu:rich_raw_gold": "Deprecated Item, Craft to Upgrade", + "gtceu:poor_raw_gold": "Deprecated Item, Craft to Upgrade", + "gtceu:rich_raw_tetrahedrite": "Deprecated Item, Craft to Upgrade", + "gtceu:raw_tetrahedrite": "Deprecated Item, Craft to Upgrade", + "gtceu:poor_raw_tetrahedrite": "Deprecated Item, Craft to Upgrade", + "gtceu:rich_raw_malachite": "Deprecated Item, Craft to Upgrade", + "gtceu:raw_malachite": "Deprecated Item, Craft to Upgrade", + "gtceu:poor_raw_malachite": "Deprecated Item, Craft to Upgrade", + "gtceu:rich_raw_hematite": "Deprecated Item, Craft to Upgrade", + "gtceu:raw_hematite": "Deprecated Item, Craft to Upgrade", + "gtceu:poor_raw_hematite": "Deprecated Item, Craft to Upgrade", + "gtceu:rich_raw_cassiterite": "Deprecated Item, Craft to Upgrade", + "gtceu:raw_cassiterite": "Deprecated Item, Craft to Upgrade", + "gtceu:poor_raw_cassiterite": "Deprecated Item, Craft to Upgrade", + "gtceu:rich_raw_bismuth": "Deprecated Item, Craft to Upgrade", + "gtceu:raw_bismuth": "Deprecated Item, Craft to Upgrade", + "gtceu:poor_raw_bismuth": "Deprecated Item, Craft to Upgrade", + "gtceu:rich_raw_magnetite": "Deprecated Item, Craft to Upgrade", + "gtceu:raw_magnetite": "Deprecated Item, Craft to Upgrade", + "gtceu:poor_raw_magnetite": "Deprecated Item, Craft to Upgrade", + "gtceu:rich_raw_yellow_limonite": "Deprecated Item, Craft to Upgrade", + "gtceu:raw_yellow_limonite": "Deprecated Item, Craft to Upgrade", + "gtceu:poor_raw_yellow_limonite": "Deprecated Item, Craft to Upgrade", + "gtceu:rich_raw_silver": "Deprecated Item, Craft to Upgrade", + "gtceu:raw_silver": "Deprecated Item, Craft to Upgrade", + "gtceu:poor_raw_silver": "Deprecated Item, Craft to Upgrade", + "gtceu:rich_raw_garnierite": "Deprecated Item, Craft to Upgrade", + "gtceu:raw_garnierite": "Deprecated Item, Craft to Upgrade", + "gtceu:poor_raw_garnierite": "Deprecated Item, Craft to Upgrade", + "gtceu:rich_raw_sphalerite": "Deprecated Item, Craft to Upgrade", + "gtceu:raw_sphalerite": "Deprecated Item, Craft to Upgrade", + "gtceu:poor_raw_sphalerite": "Deprecated Item, Craft to Upgrade", + "trim_material.tfc.almandine_tfc": "Альмадин", + "trim_material.tfc.andradite_tfc": "Андрадит", + "trim_material.tfc.blue_topaz_tfc": "Синий топаз", + "trim_material.tfc.cinnabar_tfc": "Киноварь", + "trim_material.tfc.coal_tfc": "Уголь", + "trim_material.tfc.diamond_tfc": "Алмаз", + "trim_material.tfc.emerald_tfc": "Изумруд", + "trim_material.tfc.green_sapphire_tfc": "Зеленый сапфир", + "trim_material.tfc.grossular_tfc": "Гроссуляр", + "trim_material.tfc.rutile_tfc": "Рутил", + "trim_material.tfc.lazurite_tfc": "Лазурит", + "trim_material.tfc.pyrope_tfc": "Пироп", + "trim_material.tfc.rock_salt_tfc": "Каменая соль", + "trim_material.tfc.ruby_tfc": "Рубин", + "trim_material.tfc.salt_tfc": "Соль", + "trim_material.tfc.sapphire_tfc": "Сапфир", + "trim_material.tfc.sodalite_tfc": "Содалит", + "trim_material.tfc.coke_tfc": "Кокс", + "trim_material.tfc.spessartine_tfc": "Спасерит", + "trim_material.tfc.topaz_tfc": "Топаз", + "trim_material.tfc.uvarovite_tfc": "Уваровит", + "trim_material.tfc.nether_quartz_tfc": "Незер-кварц", + "trim_material.tfc.certus_quartz_tfc": "Истенный кварц", + "trim_material.tfc.quartzite_tfc": "Кварцит", + "trim_material.tfc.realgar_tfc": "Реальгар", + "trim_material.tfc.malachite_tfc": "Малахит", + "trim_material.tfc.glass_tfc": "Стекло", + "trim_material.tfc.olivine_tfc": "Оливин", + "trim_material.tfc.opal_tfc": "Опал", + "trim_material.tfc.amethyst_tfc": "Аметист", + "trim_material.tfc.lapis_tfc": "Лазурит", + "trim_material.tfc.apatite_tfc": "Апатит", + "trim_material.tfc.red_garnet_tfc": "Красный гранат", + "trim_material.tfc.yellow_garnet_tfc": "Желтый гранат", + "trim_material.tfc.monazite_tfc": "Монацит", + "trim_material.tfc.rose_quartz_tfc": "Розовый кварц", + "trim_material.tfc.fluix_tfc": "Флюис", + "trim_material.tfc.silver_tfc": "Серебро", + "trim_material.tfc.sterling_silver_tfc": "Стирлинговое серебро", + "trim_material.tfc.gold_tfc": "Золото", + "trim_material.tfc.rose_gold_tfc": "Розовое золото", + "trim_material.tfc.nickel_tfc": "Никель", + "trim_material.tfc.platinum_tfc": "Платина", + "trim_material.tfc.titanium_tfc": "Титан", + "trim_material.tfc.bismuth_tfc": "Висмут", + "trim_material.tfc.neutronium_tfc": "Нейтроний", + "trim_material.tfc.pyrite_tfc": "Пирит", + "trim_material.tfc.redx_tfc": "RedX", + "tfg.emi.ore_veins.rock_types": "Found in rock types:", + "tfg.emi.ore_veins.rarity": "Rarity: %d", + "tfg.emi.ore_veins.density": "Density: %d", + "tfg.emi.ore_veins.y_ranges": "Depth: %d to %d", + "tfg.emi.ore_veins.size": "Size: %d", + "tfg.emi.ore_veins.height": "Height: %d", + "tfg.emi.ore_veins.radius": "Radius: %d", + "emi.category.tfg.ore_vein_info": "Рудные жилы", + "tfg.toast.ore_prospector_none": "No ores found in range.", + "tfg.toast.ore_prospector_message": "Ores found within %s §6blocks in this direction: %s", + "tfg.tooltip.ore_prospector_stats": "Scan Range: %s, Cross Section: %s x %s.", + "tfg.tooltip.ore_prospector_count": "This prospector will display ore counts.", + "tfg.tooltip.ore_prospector_xray": "This prospector will display an x-ray view of ore blocks.", + "tfg.tooltip.ore_prospector_mode_vein": "per-vein", + "tfg.tooltip.ore_prospector_mode_block": "per-block", + "tfg.hangglider.disabled_dimension": "Вы не можете использовать дельтаплан здесь!", + "tfg.tooltip.nametag": "§7Used on a Scribing Table along with an item to name it, or with black dye to name the tag.", + "tfg.tooltip.yeast_starter": "§7Created with dried fruit", + "tfg.tooltip.beehive": "§7Needs to be filled with empty frames and surrounded by flowers to attract bees.", + "tfg.tooltip.obsolete.tree_tap": "§4Obsolete§f: Replaced by the AFC TreeTap, you can craft it from this one by placing this in a crafting table!", + "tfg.tooltip.obsolete.fridge": "§4Obsolete§f: Replaced by the TFG Refrigerator, you can craft it from this one by placing this in a crafting table!", + "tfg.tooltip.blaze_burner": "§cSuperheat§r §7with Coke, Anthracite, or Flawless and Exquisite coal gems.", + "tfg.tooltip.machine.perfect_overclock": "This machine has §2Perfect Overclocking§r!", + "tfg.tooltip.nether_dome_1": "§7Artificial enviroment to simulate the Nether.", + "tfg.tooltip.machine.customize_interior": "§7The interior is customizable! Check the multiblock preview in JEI.", + "tfg.tooltip.end_dome_1": "§7Artificial enviroment to simulate the End.", + "tfg.tooltip.armor.copper_diving_suit_warmth": "§7Warmth: -1", + "tfg.tooltip.armor.copper_diving_suit_insulation": "§7Insulation: +1", + "tfg.tooltip.armor.netherite_diving_suit_warmth": "§7Warmth: -2", + "tfg.tooltip.armor.netherite_diving_suit_insulation": "§7Insulation: +9", + "tfg.tooltip.armor.netherite_diving_suit_set": "§7Wear the full set to be §eHeatproof§7 from ambient temperatures.", + "tfg.tooltip.armor.nanomuscle_warmth": "§7Warmth: 0", + "tfg.tooltip.armor.nanomuscle_insulation": "§7Insulation: +10", + "tfg.tooltip.armor.nanomuscle_set": "§7Wear the full set to be §eFully Insulated§7 from ambient temperatures.", + "tfg.tooltip.armor.quarktech_warmth": "§7Warmth: 0", + "tfg.tooltip.armor.quarktech_insulation": "§7Insulation: +10", + "tfg.tooltip.armor.quarktech_set": "§7Wear the full set to be §eFully Insulated§7 from ambient temperatures.", + "tfg.tooltip.armor.space_suit_warmth": "§7Warmth: 0", + "tfg.tooltip.armor.space_suit_insulation": "§7Insulation: +10", + "tfg.tooltip.armor.space_suit_set": "§7Wear the full set to be §eFully Insulated§7 from ambient temperatures.", + "tfg.tooltip.support.tier1": "§79 x 5 x 9", + "tfg.tooltip.support.tier2": "§717 x 9 x 17", + "tfg.tooltip.support.tier3": "§733 x 13 x 33", + "tfg.tooltip.vessels": "§cMax: 3024mB", + "tfg.tooltip.solar_panel.single": "Produces §6128 FE/t§r (32 EU/t) on the §6moon§r during the §6day§r", + "tfg.tooltip.solar_panel.large_tier1": "Massive structure producing from §61024 to 4096 EU/t§r on the §6moon§r during the §6day§r", + "tfg.tooltip.solar_panel.large_tier2": "Massive structure producing from §64096 to 16384 EU/t§r on the §6moon§r during the §6day§r", + "tfg.tooltip.solar_panel.large_tier3": "Massive structure producing from §616384 to 65536 EU/t§r on the §6moon§r during the §6day§r", + "tfg.tooltip.petrified_egg": "§7Requires Magma to Incubate", + "tfg.tooltip.large_egg": "§7Can only be incubated in a §oLarge Nest", + "tfg.tooltip.sniffer_wool": "§7Harvested from the back of a Sniffer", + "tfg.tooltip.wraptor_wool": "§7Harvested from the feathers of a Wraptor", + "tfg.tooltip.wraptor_sugar": "§7Don't think about it too much", + "tfg.tooltip.obsolete.depreciated": "§cDeprecated, cannot be crafted any more", + "parts.lang.9": "recipe", + "tfc.jei.flint_knapping": "Высекание кремня", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.black": "Окрашивание", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.gray": "Окрашивание", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.light_gray": "Окрашивание", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.white": "Окрашивание", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.pink": "Окрашивание", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.magenta": "Окрашивание", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.purple": "Окрашивание", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.blue": "Окрашивание", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.light_blue": "Окрашивание", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.cyan": "Окрашивание", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.green": "Окрашивание", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.lime": "Окрашивание", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.yellow": "Окрашивание", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.orange": "Окрашивание", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.red": "Окрашивание", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.brown": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_black_block_on": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_gray_block_on": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_light_gray_block_on": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_white_block_on": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_pink_block_on": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_magenta_block_on": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_purple_block_on": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_blue_block_on": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_light_blue_block_on": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_cyan_block_on": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_green_block_on": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_lime_block_on": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_yellow_block_on": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_orange_block_on": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_red_block_on": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_brown_block_on": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_black_block": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_gray_block": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_light_gray_block": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_white_block": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_pink_block": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_magenta_block": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_purple_block": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_blue_block": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_light_blue_block": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_cyan_block": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_green_block": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_lime_block": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_yellow_block": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_orange_block": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_red_block": "Окрашивание", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_brown_block": "Окрашивание", + "tfc.recipe.barrel.tfg.barrel.treated_chipboard_composite": "Treating Chipboard Composite", + "tfc.recipe.barrel.tfg.barrel.soak_hardwood_strip": "Пропитка Деревянных Полосок", + "tfc.recipe.barrel.tfg.barrel.treated_wood_planks": "Обработка Деревянных Досок", + "tfc.recipe.barrel.tfg.barrel.packed_ice": "Заморозка Льда", + "tfc.recipe.barrel.tfg.barrel.cooling_water_1": "Cooling Water", + "tfc.recipe.barrel.tfg.barrel.cooling_water_2": "Cooling Water", + "tfc.recipe.barrel.tfg.barrel.cooling_water_3": "Cooling Water", + "tfc.recipe.barrel.tfg.barrel.cooling_water_4": "Cooling Water", + "tfc.recipe.barrel.tfg.sealed_barrel.prepared_leather_gloves": "Подготовленные Кожаные Перчатки", + "tfc.recipe.barrel.tfg.barrel.rapeseed_to_oil": "Extracting Canola Oil", + "tfc.recipe.barrel.tfg.barrel.sunflower_to_oil": "Extracting Sunflower Oil", + "gtceu.aqueous_accumulator": "Жидкостный коллектор", + "tfg.food_recipe.brining": "Засаливание", + "tfg.food_recipe.smoking": "Копчение", + "tfg.food_recipe.drying": "Сушка", + "tfg.food_recipe.freeze_drying": "Лиофилизация", + "tfg.recipe.macerator_warning": "Only outputs first slot until HV", + "tfg.grapplemod.repair": "Рецепт починки, сохраняет ваши улучшения. §НИКОГДА не объединяйте две крюк-кошки или вы потеряете ВСЕ ваши улучшения!§r", + "tfg.grapplemod.upgrades.maxlen": "Increases §lMax Length§r by 20, up to 200.", + "tfg.grapplemod.downgrades.maxlen": "Decreases §lMax Length§r by 20, down to 20. (Jute Rope is Returned).", + "tfg.grapplemod.upgrades.motor.lv": "Enables the §lMotor§r Upgrade, automatically reeling you in.\n§lMotorMaxSpeed§r set to 1\n§lMotorAcceleration§r set to 0.125", + "tfg.grapplemod.upgrades.motor.mv": "Enables the §lMotor§r Upgrade, automatically reeling you in.\n§lMotorMaxSpeed§r set to 1.14\n§lMotorAcceleration§r set to 0.25", + "tfg.grapplemod.upgrades.motor.hv": "Enables the §lMotor§r Upgrade, automatically reeling you in.\n§lMotorMaxSpeed§r set to 1.28\n§lMotorAcceleration§r set to 0.375", + "tfg.grapplemod.upgrades.motor.ev": "Enables the §lMotor§r Upgrade, automatically reeling you in.\n§lMotorMaxSpeed§r set to 1.42\n§lMotorAcceleration§r set to 0.5", + "tfg.grapplemod.upgrades.motor.iv": "Enables the §lMotor§r Upgrade, automatically reeling you in.\n§lMotorMaxSpeed§r set to 1.56\n§lMotorAcceleration§r set to 0.625", + "tfg.grapplemod.upgrades.motor.luv": "Enables the §lMotor§r Upgrade, automatically reeling you in.\n§lMotorMaxSpeed§r set to 1.7\n§lMotorAcceleration§r set to 0.75", + "tfg.grapplemod.upgrades.motor.zpm": "Enables the §lMotor§r Upgrade, automatically reeling you in.\n§lMotorMaxSpeed§r set to 1.84\n§lMotorAcceleration§r set to 0.875", + "tfg.grapplemod.upgrades.motor.uv": "Enables the §lMotor§r Upgrade, automatically reeling you in.\n§lMotorMaxSpeed§r set to 2\n§lMotorAcceleration§r set to 1", + "tfg.grapplemod.downgrades.motor": "Disables the §lMotor§r Upgrade, returning the original motor.\nOnly works if you use the same type of Motor as before.", + "tfg.grapplemod.upgrades.smart_motor": "Enables the §lSmart Motor§r Upgrade, requires a Motor to be installed.", + "tfg.grapplemod.downgrades.smart_motor": "Disables the §lSmart Motor§r Upgrade, can be removed with the Motor already uninstalled. Returns the Basic Electronic Circuit", + "tfg.grapplemod.upgrades.sticky": "Enables the §lSticky§r Upgrade, causing the hook to stick to any block the rope touches.", + "tfg.grapplemod.downgrades.sticky": "Disables the §lSticky§r Upgrade, returning the Sticky Resin", + "tfg.grapplemod.upgrades.forcefield.lv": "Enables the §lForce Field§r Upgrade, repelling you from nearby blocks while Grappling.\n§lRepel Force§r set to 0.625", + "tfg.grapplemod.upgrades.forcefield.mv": "Enables the §lForce Field§r Upgrade, repelling you from nearby blocks while Grappling.\n§lRepel Force§r set to 1.25", + "tfg.grapplemod.upgrades.forcefield.hv": "Enables the §lForce Field§r Upgrade, repelling you from nearby blocks while Grappling.\n§lRepel Force§r set to 1.875", + "tfg.grapplemod.upgrades.forcefield.ev": "Enables the §lForce Field§r Upgrade, repelling you from nearby blocks while Grappling.\n§lRepel Force§r set to 2.5", + "tfg.grapplemod.upgrades.forcefield.iv": "Enables the §lForce Field§r Upgrade, repelling you from nearby blocks while Grappling.\n§lRepel Force§r set to 3.125", + "tfg.grapplemod.upgrades.forcefield.luv": "Enables the §lForce Field§r Upgrade, repelling you from nearby blocks while Grappling.\n§lRepel Force§r set to 3.75", + "tfg.grapplemod.upgrades.forcefield.zpm": "Enables the §lForce Field§r Upgrade, repelling you from nearby blocks while Grappling.\n§lRepel Force§r set to 4.375", + "tfg.grapplemod.upgrades.forcefield.uv": "Enables the §lForce Field§r Upgrade, repelling you from nearby blocks while Grappling.\n§lRepel Force§r set to 5", + "tfg.grapplemod.downgrades.forcefield": "Disables the §lForce Field§r Upgrade, returning the original Field Generator.\nOnly works if you use the same type of Field Generator as before.", + "tfg.grapplemod.upgrades.magnet.magnetic_iron_ingot": "Enables the §lMagnet§r Upgrade, causing the hook itself to attach to nearby blocks.\n§lAttraction Radius§r set to 1.25", + "tfg.grapplemod.upgrades.magnet.magnetic_steel_ingot": "Enables the §lMagnet§r Upgrade, causing the hook itself to attach to nearby blocks.\n§lAttraction Radius§r set to 2.5", + "tfg.grapplemod.upgrades.magnet.magnetic_neodymium_ingot": "Enables the §lMagnet§r Upgrade, causing the hook itself to attach to nearby blocks.\n§lAttraction Radius§r set to 3.75", + "tfg.grapplemod.upgrades.magnet.magnetic_samarium_ingot": "Enables the §lMagnet§r Upgrade, causing the hook itself to attach to nearby blocks.\n§lAttraction Radius§r set to 5", + "tfg.grapplemod.downgrades.magnet": "Disables the §lMagnet§r Upgrade, returning the original Magnetic Ingot.\nOnly works if you use the same type of Magnetic Ingot as before.", + "tfg.grapplemod.upgrades.gravity.0.5": "Lowers the Hook's §lGravity§r to 50% (1 -> 0.5)", + "tfg.grapplemod.downgrades.gravity.0.5": "Returns the Hook's §lGravity§r back to 100% (0.5 -> 1).\nThe empty bucket will be filled with the Helium you used", + "tfg.grapplemod.upgrades.gravity.0": "Lowers the Hook's §lGravity§r to 0% (1 -> 0)", + "tfg.grapplemod.downgrades.gravity.0": "Returns the Hook's §lGravity§r back to 100% (0 -> 1).\nThe Gravitation Engine Unit will be returned.", + "tfg.grapplemod.upgrades.throwspeed.lv": "Increases the §lThrow Speed§r of the Hook, causing it to travel farther.\n§lThrow Speed§r set to 2.25", + "tfg.grapplemod.upgrades.throwspeed.mv": "Increases the §lThrow Speed§r of the Hook, causing it to travel farther.\n§lThrow Speed§r set to 2.5", + "tfg.grapplemod.upgrades.throwspeed.hv": "Increases the §lThrow Speed§r of the Hook, causing it to travel farther.\n§lThrow Speed§r set to 2.75", + "tfg.grapplemod.upgrades.throwspeed.ev": "Increases the §lThrow Speed§r of the Hook, causing it to travel farther.\n§lThrow Speed§r set to 3", + "tfg.grapplemod.upgrades.throwspeed.iv": "Increases the §lThrow Speed§r of the Hook, causing it to travel farther.\n§lThrow Speed§r set to 3.25", + "tfg.grapplemod.upgrades.throwspeed.luv": "Increases the §lThrow Speed§r of the Hook, causing it to travel farther.\n§lThrow Speed§r set to 3.5", + "tfg.grapplemod.upgrades.throwspeed.zpm": "Increases the §lThrow Speed§r of the Hook, causing it to travel farther.\n§lThrow Speed§r set to 3.75", + "tfg.grapplemod.upgrades.throwspeed.uv": "Increases the §lThrow Speed§r of the Hook, causing it to travel farther.\n§lThrow Speed§r set to 4", + "tfg.grapplemod.downgrades.throwspeed": "Resets the §lThrow Speed§r of the hook back to normal, returning the original Piston.\nOnly works if you use the same type of Piston as before.", + "tfg.grapplemod.upgrades.doublehook": "Adds a §lSecondary Hook§r to your Grappling Hook", + "tfg.grapplemod.downgrades.doublehook": "Removes the §lSecondary Hook§r from your Grappling Hook", + "tfg.grapplemod.upgrades.vertical_throwing_angle": "Increases the §lVertical Throwing Angle§r of the hook by 5°, up to 90°.", + "tfg.grapplemod.downgrades.vertical_throwing_angle": "Decreases the §lVertical Throwing Angle§r of the hook by 5°, down to 0°.", + "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.", + "ore_vein.tfg.deep_sheldonite": "Шелдонит и Борнит", "ore_vein.tfg.deep_garnet_amethyst": "Аметист и гранат", "ore_vein.tfg.deep_garnet_opal": "Опал и гранат", "ore_vein.tfg.deep_gold": "Золото (Глубокое)", @@ -121,7 +1018,6 @@ "ore_vein.tfg.deep_pitchblende": "Уранинит и Уранит", "ore_vein.tfg.deep_sapphire": "Сапфир и Альмандин", "ore_vein.tfg.deep_scheelite": "Шеелит и Вольфрамат", - "ore_vein.tfg.deep_sheldonite": "Шелдонит и Борнит", "ore_vein.tfg.deep_topaz": "Топаз и Халькозин", "ore_vein.tfg.normal_apatite": "Апатит и Пирохлор", "ore_vein.tfg.normal_basaltic_sands": "Минеральные пески", @@ -154,16 +1050,39 @@ "ore_vein.tfg.normal_spodumene": "Сподумен и Лепидолит", "ore_vein.tfg.normal_sulfur": "Сера и Пирит", "ore_vein.tfg.normal_tetrahedrite": "Тетраэдрит (обычный)", - "ore_vein.tfg.surface_bismuthinite": "Висмут (Поверхностный)", - "ore_vein.tfg.surface_cassiterite": "Касситерит (Поверхностный)", + "ore_vein.tfg.surface_bismuthinite": "Висмут", + "ore_vein.tfg.surface_cassiterite": "Касситерит", "ore_vein.tfg.surface_copper": "Халькопирит и Реальгар", "ore_vein.tfg.surface_sphalerite": "Сфалерит и Сера", "ore_vein.tfg.surface_tetrahedrite": "Тетраэдрит (Поверхностный)", - "ore_vein.tfg.mars_hematite": "(Placeholder Vein)", + "ore_vein.tfg.deep_mars_chromite": "Redstone & Chromite", + "ore_vein.tfg.deep_mars_pitchblende": "Pitchblende, Thorium, & Uraninite", + "ore_vein.tfg.deep_mars_sheldonite": "Bornite & Cooperite", + "ore_vein.tfg.mars_almandine": "Almandine & Sapphire", + "ore_vein.tfg.mars_apatite": "Апатит и Пирохлор", + "ore_vein.tfg.mars_beryllium": "Изумруд и Бериллий", + "ore_vein.tfg.mars_coal": "Coal & Hematite", + "ore_vein.tfg.mars_copper": "Медь и Халькопирит", + "ore_vein.tfg.mars_galena": "Серебро, Галена и Свинец", + "ore_vein.tfg.mars_sapphire": "Gold, Electrotine, & Bauxite", + "ore_vein.tfg.mars_hematite": "Гематит и Лимонит", + "ore_vein.tfg.mars_lubricant": "Soapstone, Talc, & Glauconite", + "ore_vein.tfg.mars_neodynium": "Бастнезит и Монацит", + "ore_vein.tfg.mars_nickel": "Гарниерит и Кобальтит", + "ore_vein.tfg.mars_pitchblende": "Pitchblende, Thorium, & Hematite", + "ore_vein.tfg.mars_quartzite": "Quartzite, Asbestos, & Barite", + "ore_vein.tfg.mars_salt": "Salts & Spodumene", + "ore_vein.tfg.mars_stibnite": "Тетраэдрит (обычный)", + "ore_vein.tfg.mars_sulfur": "Сфалерит & Пирит", + "ore_vein.tfg.mars_tantalite": "Марганец и Тантал", + "ore_vein.tfg.mars_tungsten": "Шеелит и Вольфрамат", + "ore_vein.tfg.surface_hematite": "Гематит и Лимонит", + "ore_vein.tfg.surface_nickel_galena": "Sphalerite & Galena", "ore_vein.tfg.moon_apatite": "Апатит и Пирохлор", "ore_vein.tfg.moon_bauxite": "Боксит и Ильменит", "ore_vein.tfg.moon_beryllium": "Изумруд и Бериллий", "ore_vein.tfg.moon_cassiterite": "Касситерит и Халькопирит", + "ore_vein.tfg.moon_sheldonite": "Шелдонит и Борнит", "ore_vein.tfg.moon_desh": "Desh & Ilmenite", "ore_vein.tfg.moon_garnet": "Аметист, Опал и гранат", "ore_vein.tfg.moon_garnierite": "Гарниерит и Кобальтит", @@ -182,7 +1101,6 @@ "ore_vein.tfg.moon_saltpeter": "Селитра и Электротин", "ore_vein.tfg.moon_sapphire": "Сапфир и Альмандин", "ore_vein.tfg.moon_scheelite": "Шеелит и Вольфрамат", - "ore_vein.tfg.moon_sheldonite": "Шелдонит и Борнит", "ore_vein.tfg.moon_silver": "Серебро, Галена и Свинец", "ore_vein.tfg.moon_sphalerite": "Сфалерит & Пирит", "ore_vein.tfg.moon_tetrahedrite": "Тетраэдрит и Халькозин", @@ -192,6 +1110,7 @@ "ore_vein.tfg.nether_basaltic_sands": "Минеральные пески", "ore_vein.tfg.nether_beryllium": "Изумруд и Бериллий", "ore_vein.tfg.nether_cassiterite": "Касситерит", + "ore_vein.tfg.nether_sheldonite": "Шелдонит и Борнит", "ore_vein.tfg.nether_copper": "Медь и Халькопирит", "ore_vein.tfg.nether_garnet": "Аметист, Опал и гранат", "ore_vein.tfg.nether_garnet_tin": "Гранатовый и Касситеритовый песок", @@ -216,7 +1135,6 @@ "ore_vein.tfg.nether_saltpeter": "Селитра и Электротин", "ore_vein.tfg.nether_sapphire": "Сапфир и Альмандин", "ore_vein.tfg.nether_scheelite": "Шеелит и Вольфрамат", - "ore_vein.tfg.nether_sheldonite": "Шелдонит и Борнит", "ore_vein.tfg.nether_silver": "Серебро, Галена и Свинец", "ore_vein.tfg.nether_sphalerite": "Сфалерит & Пирит", "ore_vein.tfg.nether_sulfur": "Сера и Пирит", diff --git a/kubejs/assets/tfg/lang/uk_ua.json b/kubejs/assets/tfg/lang/uk_ua.json index c8f3e281c..b196f012f 100644 --- a/kubejs/assets/tfg/lang/uk_ua.json +++ b/kubejs/assets/tfg/lang/uk_ua.json @@ -21,6 +21,20 @@ "biome.tfg.moon/lunar_lights_sparse": "Світлоквітний Чагарник", "biome.tfg.moon/lunar_plains": "Місячні Рівнини", "biome.tfg.moon/lunar_sands": "Місячні піски", + "biome.tfg.mars/martian_deep_desert": "Глибокі Марсіанські Дюни", + "biome.tfg.mars/martian_dunes": "Марсіанська Пустеля", + "biome.tfg.mars/martian_dune_edge": "Край Марсіанської пустелі", + "biome.tfg.mars/martian_river": "Марсіанські береги", + "biome.tfg.mars/martian_mountains": "Вимерлий Марсіанський вулкан", + "biome.tfg.mars/amber_edge": "Бурштиновий край", + "biome.tfg.mars/amber_plains": "Бурштинові рівнини", + "biome.tfg.mars/amber_hills": "Бурштинові пагорби", + "biome.tfg.mars/rusticus_edge": "Край Рустікуса", + "biome.tfg.mars/rusticus_plains": "Луг Рустікуса", + "biome.tfg.mars/rusticus_hills": "Верес Рустікуса", + "biome.tfg.mars/sangnum_edge": "Край Санґнум", + "biome.tfg.mars/sangnum_plains": "Прерія Санґнум", + "biome.tfg.mars/sangnum_hills": "Болото Санґнум", "block.tfg.piglin_disguise": "Маскування Пігліна", "block.tfg.piglin_disguise_block": "Маскування Пігліна", "block.tfg.dry_ice": "Сухий лід", @@ -196,55 +210,69 @@ "block.tfg.marker.venus": "Венера", "block.tfg.marker.mercury": "Меркурій", "block.tfg.lv_aqueous_accumulator": "Базовий Водний Акумулятор", - "block.tfg.mv_aqueous_accumulator": "§bРозширений Водний Акумулятор§r", + "block.tfg.mv_aqueous_accumulator": "§bВдосконалений Водний Акумулятор§r", "block.tfg.hv_aqueous_accumulator": "§6Розширений Водний Акумулятор II§r", - "block.tfg.ev_aqueous_accumulator": "§5Розширений Водний Акумулятор III§r", + "block.tfg.ev_aqueous_accumulator": "§5Вдосконалений Водний Акумулятор III§r", "block.tfg.iv_aqueous_accumulator": "§9Elite Aqueous Accumulator§r", "block.tfg.luv_aqueous_accumulator": "§dЕлітний Водяний Акумулятор II§r", "block.tfg.zpm_aqueous_accumulator": "§cЕлітний Водяний Акумулятор III§r", - "block.tfg.uv_aqueous_accumulator": "§3Абсолютний Водяний Акумулятор§r", + "block.tfg.uv_aqueous_accumulator": "§3Ультимативний Водяний Акумулятор§r", "block.tfg.electric_greenhouse": "Електрична теплиця", "block.tfg.lv_food_processor": "Базовий Кухонний Комбайн", - "block.tfg.mv_food_processor": "§bУдосконалений Кухонний Комбайн§r", - "block.tfg.hv_food_processor": "§6Удосконалений Кухонний Комбайн II§r", - "block.tfg.ev_food_processor": "§6Удосконалений Кухонний Комбайн III§r", - "block.tfg.iv_food_processor": "§9Елітний Харчопереробник§r", - "block.tfg.luv_food_processor": "§dЕлітний Харчопереробник II§r", - "block.tfg.zpm_food_processor": "§cЕлітний Харчопереробник III§r", - "block.tfg.uv_food_processor": "§3Абсолютний Харчопереробник§r", + "block.tfg.mv_food_processor": "§bВдосконалений Кухонний Комбайн§r", + "block.tfg.hv_food_processor": "§6Вдосконалений Кухонний Комбайн II§r", + "block.tfg.ev_food_processor": "§5Вдосконалений Кухонний Комбайн III§r", + "block.tfg.iv_food_processor": "§9Елітний Кухонний Комбайн§r", + "block.tfg.luv_food_processor": "§dЕлітний Кухонний Комбайн II§r", + "block.tfg.zpm_food_processor": "§cЕлітний Кухонний Комбайн III§r", + "block.tfg.uv_food_processor": "§3Ультимативний Кухонний Комбайн§r", "block.tfg.lv_food_oven": "Базова Електрична Духова Шафа", - "block.tfg.mv_food_oven": "§bУдосконалена Електрична Духова Шафа§r", - "block.tfg.hv_food_oven": "§6Удосконалена Електрична Духова Шафа III§r", - "block.tfg.ev_food_oven": "§6Удосконалена Електрична Духова Шафа III§r", + "block.tfg.mv_food_oven": "§bВдосконалена Електрична Духова Шафа§r", + "block.tfg.hv_food_oven": "§6Вдосконалена Електрична Духова Шафа III§r", + "block.tfg.ev_food_oven": "§5Вдосконалена Електрична Духова Шафа III§r", "block.tfg.iv_food_oven": "§9Елітна Електрична Піч§r", "block.tfg.luv_food_oven": "§dЕлітна Електрична Піч II§r", "block.tfg.zpm_food_oven": "§cЕлітна Електрична Піч III§r", - "block.tfg.uv_food_oven": "§3Абсолютна Електрична Піч§r", + "block.tfg.uv_food_oven": "§3Ультимативна Електрична Піч§r", "block.tfg.lv_food_refrigerator": "Базовий Холодильник", - "block.tfg.mv_food_refrigerator": "§bУдосконалений Холодильник§r", - "block.tfg.hv_food_refrigerator": "§6Удосконалений Холодильник II§r", - "block.tfg.ev_food_refrigerator": "§5Удосконалений Холодильник III§r", + "block.tfg.mv_food_refrigerator": "§bВдосконалений Холодильник§r", + "block.tfg.hv_food_refrigerator": "§6Вдосконалений Холодильник II§r", + "block.tfg.ev_food_refrigerator": "§5Вдосконалений Холодильник III§r", "block.tfg.iv_food_refrigerator": "§9Елітний Холодильник§r", "block.tfg.lv_gas_pressurizer": "Базовий газовий пресуризатор", - "block.tfg.mv_gas_pressurizer": "§bПокращений газовий пресуризатор§r", - "block.tfg.hv_gas_pressurizer": "§bПокращений газовий пресуризатор II§r", - "block.tfg.ev_gas_pressurizer": "§bПокращений газовий пресуризатор III§r", + "block.tfg.mv_gas_pressurizer": "§bВдосконалений Газовий Пресуризатор§r", + "block.tfg.hv_gas_pressurizer": "§6Вдосконалений Газовий Пресуризатор II§r", + "block.tfg.ev_gas_pressurizer": "§5Вдосконалений Газовий Пресуризатор III§r", "block.tfg.iv_gas_pressurizer": "§9Елітний Газовий Пресуризатор§r", "block.tfg.luv_gas_pressurizer": "§dЕлітний Газовий Пресуризатор II§r", "block.tfg.zpm_gas_pressurizer": "§dЕлітний Газовий Пресуризатор III§r", - "block.tfg.uv_gas_pressurizer": "§3Абсолютний Газовий Пресуризатор III§r", + "block.tfg.uv_gas_pressurizer": "§3Ультимативний Газовий Пресуризатор§r", "block.tfg.fluid.semiheavy_ammoniacal_water": "Термохімічно збагачена амоніачна напівважка вода", "block.tfg.grass.mars_dirt": "Марсіанський ґрунт", + "block.tfg.grass.mars_clay_dirt": "Марсіанський Глиняний Ґрунт", "block.tfg.grass.mars_farmland": "Марсіанське поле", "block.tfg.grass.amber_mycelium": "Бурштиновий міцелій", + "block.tfg.grass.amber_clay_mycelium": "Бурштиновий Глиняний Міцелій", + "block.tfg.grass.amber_kaolin_mycelium": "Бурштиновий Каоліновий Міцелій", "block.tfg.grass.rusticus_mycelium": "Міцелій Rusticus", + "block.tfg.grass.rusticus_clay_mycelium": "Глиняний Міцелій Рустікус", + "block.tfg.grass.rusticus_kaolin_mycelium": "Каоліновий Міцелій Рустікус", "block.tfg.grass.sangnum_mycelium": "Сангнумний міцелій", + "block.tfg.grass.sangnum_clay_mycelium": "Глиняний Міцелій Сангнум", + "block.tfg.grass.sangnum_kaolin_mycelium": "Каоліновий Міцелій Сангнум", + "block.tfg.spice": "Поклад Острому", "block.tfg.saplings.crimson": "Багряний гриб", "block.tfg.saplings.warped": "Покручений гриб", "block.tfg.saplings.alphacene": "Альфаценовий гриб", "block.tfg.saplings.aeronos": "Аеронський гриб", "block.tfg.saplings.strophar": "Строфарський гриб", "block.tfg.saplings.glacian": "Глаціанський гриб", + "block.tfg.groundcover.glider_feather": "Перо Планера", + "block.tfg.groundcover.wraptor_feather": "Перо Враптора", + "block.tfg.groundcover.aeronos_stick": "Пагінець Аероносу", + "block.tfg.groundcover.strophar_stick": "Пагінець Строфару", + "block.tfg.groundcover.glacian_stick": "Пагінець Ґлації", + "block.tfg.groundcover.alphacene_stick": "Пагінець Альфацену", "block.tfg.electromagnetic_accelerator": "Електромагнітний прискорювач", "block.tfg.superconductor_coil_large": "Велика надпровідна котушка", "block.tfg.superconductor_coil_small": "Мала надпровідна котушка", @@ -279,17 +307,27 @@ "block.tfg.rapeseed": "Канола", "block.tfg.rapeseed_wild": "Дика канола", "block.tfg.rapeseed_dead": "Мертва канола", + "block.tfg.flax": "Льон", + "block.tfg.flax_wild": "Дикий льон", + "block.tfg.flax_dead": "Мертвий льон", "block.tfg.casings.machine_casing_iron_desh": "Обшивка машини з дешу", "block.tfg.casings.machine_casing_stainless_evaporation": "Корпус випарної машини з нержавіючої сталі", + "block.tfg.casings.machine_casing_vacuum_engine_intake": "Корпус Машини Впуску Вакуумного Двигуна", + "block.tfg.casings.machine_casing_mars": "Міцний Пилозахисний Корпус Машини", "block.tfg.casings.machine_casing_blue_solar_panel": "Корпус базової сонячної панелі", - "block.tfg.casings.machine_casing_green_solar_panel": "Корпус вдосконаленої сонячної панелі", + "block.tfg.casings.machine_casing_green_solar_panel": "Корпус Вдосконаленої Сонячної Панелі", "block.tfg.casings.machine_casing_red_solar_panel": "Корпус елітної сонячної панелі", "block.tfg.machine_casing_aluminium_plated_steel": "Корпус зі сталі й алюмінієвим покриттям", + "block.tfg.casings.machine_casing_ultraviolet": "§dУльтрафіолетовий §fМашинний Корпус", + "block.tfg.casings.machine_casing_bioculture": "Біокультурний Машинний Корпус", + "block.tfg.casings.machine_casing_bioculture_glass": "Біокультурне Скло", + "block.tfg.casings.bioculture_rotor_primary": "Первинний Біокультурний Ротор", + "block.tfg.casings.bioculture_rotor_secondary": "Вторинний Біокультурний Ротор", "block.tfg.sand.fluorapatite.blue": "Синій флуорапатитовий пісок", - "block.tfg.sandstone.raw.fluorapatite.blue": "Сирий пісковик із синього флуорапатиту", - "block.tfg.sandstone.wall.raw.fluorapatite.blue": "Стіна з необробленого синього флуорапатитового пісковику", - "block.tfg.sandstone.slab.raw.fluorapatite.blue": "Плита з необробленого синього флуорапатитового пісковику", - "block.tfg.sandstone.stairs.raw.fluorapatite.blue": "Сходи з необробленого синього флуорапатитового пісковику", + "block.tfg.sandstone.raw.fluorapatite.blue": "Необроблений Синій Флуорапатитовий Пісковик", + "block.tfg.sandstone.wall.raw.fluorapatite.blue": "Стіна з Необробленого Синього Флуорапатитового Пісковику", + "block.tfg.sandstone.slab.raw.fluorapatite.blue": "Плита з Необробленого Синього Флуорапатитового Пісковику", + "block.tfg.sandstone.stairs.raw.fluorapatite.blue": "Сходи з Необробленого Синього Флуорапатитового Пісковику", "block.tfg.sandstone.smooth.fluorapatite.blue": "Гладкий синій флуорапатитовий пісковик", "block.tfg.sandstone.wall.smooth.fluorapatite.blue": "Стіна з гладкого синього флуорапатитового пісковику", "block.tfg.sandstone.slab.smooth.fluorapatite.blue": "Плита з гладкого синього флуорапатитового пісковику", @@ -297,10 +335,10 @@ "block.tfg.sandstone.fluorapatite.blue": "Тесаний синій флуорапатитовий пісковик", "block.tfg.sandstone.smooth.chiseled.fluorapatite.blue": "Різьблений синій флуорапатитовий пісковик", "block.tfg.sand.fluorapatite.green": "Зелений флуорапатитовий пісок", - "block.tfg.sandstone.raw.fluorapatite.green": "Сирий пісковик із зеленого флуорапатиту", - "block.tfg.sandstone.wall.raw.fluorapatite.green": "Стіна з необробленого зеленого флуорапатитового пісковику", - "block.tfg.sandstone.slab.raw.fluorapatite.green": "Плита з необробленого зеленого флуорапатитового пісковику", - "block.tfg.sandstone.stairs.raw.fluorapatite.green": "Сходи з необробленого зеленого флуорапатитового пісковику", + "block.tfg.sandstone.raw.fluorapatite.green": "Необроблений Зелений Флуорапатитовий Пісковик", + "block.tfg.sandstone.wall.raw.fluorapatite.green": "Стіна з Необробленого Зеленого Флуорапатитового Пісковику", + "block.tfg.sandstone.slab.raw.fluorapatite.green": "Плита з Необробленого Зеленого Флуорапатитового Пісковику", + "block.tfg.sandstone.stairs.raw.fluorapatite.green": "Сходи з Необробленого Зеленого Флуорапатитового Пісковику", "block.tfg.sandstone.smooth.fluorapatite.green": "Гладкий зелений флуорапатитовий пісковик", "block.tfg.sandstone.wall.smooth.fluorapatite.green": "Стіна з гладкого зеленого флуорапатитового пісковику", "block.tfg.sandstone.slab.smooth.fluorapatite.green": "Плита з гладкого зеленого флуорапатитового пісковику", @@ -308,10 +346,10 @@ "block.tfg.sandstone.fluorapatite.green": "Тесаний зелений флуорапатитовий пісковик", "block.tfg.sandstone.smooth.chiseled.fluorapatite.green": "Різьблений зелений флуорапатитовий пісковик", "block.tfg.sand.fluorapatite.brown": "Коричневий флуорапатитовий пісок", - "block.tfg.sandstone.raw.fluorapatite.brown": "Сирий пісковик із коричневого флуорапатиту", - "block.tfg.sandstone.wall.raw.fluorapatite.brown": "Стіна з необробленого коричневого флуорапатитового пісковику", - "block.tfg.sandstone.slab.raw.fluorapatite.brown": "Плита з необробленого коричневого флуорапатитового пісковику", - "block.tfg.sandstone.stairs.raw.fluorapatite.brown": "Сходи з необробленого коричневого флуорапатитового пісковику", + "block.tfg.sandstone.raw.fluorapatite.brown": "Необроблений Коричневий Флуорапатитовий Пісковик", + "block.tfg.sandstone.wall.raw.fluorapatite.brown": "Стіна з Необробленого Коричневого Флуорапатитового Пісковику", + "block.tfg.sandstone.slab.raw.fluorapatite.brown": "Плита з Необробленого Коричневого Флуорапатитового Пісковику", + "block.tfg.sandstone.stairs.raw.fluorapatite.brown": "Сходи з Необробленого Коричневого Флуорапатитового Пісковику", "block.tfg.sandstone.smooth.fluorapatite.brown": "Гладкий коричневий флуорапатитовий пісковик", "block.tfg.sandstone.wall.smooth.fluorapatite.brown": "Стіна з гладкого коричневого флуорапатитового пісковику", "block.tfg.sandstone.slab.smooth.fluorapatite.brown": "Плита з гладкого коричневого флуорапатитового пісковику", @@ -319,10 +357,10 @@ "block.tfg.sandstone.fluorapatite.brown": "Тесаний коричневий флуорапатитовий пісковик", "block.tfg.sandstone.smooth.chiseled.fluorapatite.brown": "Різьблений коричневий флуорапатитовий пісковик", "block.tfg.sand.fluorapatite.orange": "Помаранчевий флуорапатитовий пісок", - "block.tfg.sandstone.raw.fluorapatite.orange": "Сирий пісковик із помаранчевого флуорапатиту", - "block.tfg.sandstone.wall.raw.fluorapatite.orange": "Стіна з необробленого помаранчевого флуорапатитового пісковику", - "block.tfg.sandstone.slab.raw.fluorapatite.orange": "Плита з необробленого помаранчевого флуорапатитового пісковику", - "block.tfg.sandstone.stairs.raw.fluorapatite.orange": "Сходи з необробленого помаранчевого флуорапатитового пісковику", + "block.tfg.sandstone.raw.fluorapatite.orange": "Необроблений Помаранчевий Флуорапатитовий Пісковик", + "block.tfg.sandstone.wall.raw.fluorapatite.orange": "Стіна з Необробленого Помаранчевого Флуорапатитового Пісковику", + "block.tfg.sandstone.slab.raw.fluorapatite.orange": "Плита з Необробленого Помаранчевого Флуорапатитового Пісковику", + "block.tfg.sandstone.stairs.raw.fluorapatite.orange": "Сходи з Необробленого Помаранчевого Флуорапатитового Пісковику", "block.tfg.sandstone.smooth.fluorapatite.orange": "Гладкий помаранчевий флуорапатитовий пісковик", "block.tfg.sandstone.wall.smooth.fluorapatite.orange": "Стіна з гладкого помаранчевого флуорапатитового пісковику", "block.tfg.sandstone.slab.smooth.fluorapatite.orange": "Плита з гладкого помаранчевого флуорапатитового пісковику", @@ -330,10 +368,10 @@ "block.tfg.sandstone.fluorapatite.orange": "Тесаний помаранчевий флуорапатитовий пісковик", "block.tfg.sandstone.smooth.chiseled.fluorapatite.orange": "Різьблений помаранчевий флуорапатитовий пісковик", "block.tfg.sand.fluorapatite.white": "Білий флуорапатитовий пісок", - "block.tfg.sandstone.raw.fluorapatite.white": "Сирий пісковик із білого флуорапатиту", - "block.tfg.sandstone.wall.raw.fluorapatite.white": "Стіна з необробленого білого флуорапатитового пісковику", - "block.tfg.sandstone.slab.raw.fluorapatite.white": "Плита з необробленого білого флуорапатитового пісковику", - "block.tfg.sandstone.stairs.raw.fluorapatite.white": "Сходи з необробленого білого флуорапатитового пісковику", + "block.tfg.sandstone.raw.fluorapatite.white": "Необроблений Білий Флуорапатитовий Пісковик", + "block.tfg.sandstone.wall.raw.fluorapatite.white": "Стіна з Необробленого Білого Флуорапатитового Пісковику", + "block.tfg.sandstone.slab.raw.fluorapatite.white": "Плита з Необробленого Білого Флуорапатитового Пісковику", + "block.tfg.sandstone.stairs.raw.fluorapatite.white": "Сходи з Необробленого Білого Флуорапатитового Пісковику", "block.tfg.sandstone.smooth.fluorapatite.white": "Гладкий білий флуорапатитовий пісковик", "block.tfg.sandstone.wall.smooth.fluorapatite.white": "Стіна з гладкого білого флуорапатитового пісковику", "block.tfg.sandstone.slab.smooth.fluorapatite.white": "Плита з гладкого білого флуорапатитового пісковику", @@ -341,10 +379,10 @@ "block.tfg.sandstone.fluorapatite.white": "Тесаний білий флуорапатитовий пісковик", "block.tfg.sandstone.smooth.chiseled.fluorapatite.white": "Різьблений білий флуорапатитовий пісковик", "block.tfg.sand.fluorapatite.yellow": "Жовтий флуорапатитовий пісок", - "block.tfg.sandstone.raw.fluorapatite.yellow": "Сирий пісковик із жовтого флуорапатиту", - "block.tfg.sandstone.wall.raw.fluorapatite.yellow": "Стіна з необробленого жовтого флуорапатитового пісковику", - "block.tfg.sandstone.slab.raw.fluorapatite.yellow": "Плита з необробленого жовтого флуорапатитового пісковику", - "block.tfg.sandstone.stairs.raw.fluorapatite.yellow": "Сходи з необробленого жовтого флуорапатитового пісковику", + "block.tfg.sandstone.raw.fluorapatite.yellow": "Необроблений Жовтий Флуорапатитовий Пісковик", + "block.tfg.sandstone.wall.raw.fluorapatite.yellow": "Стіна з Необробленого Жовтого Флуорапатитового Пісковику", + "block.tfg.sandstone.slab.raw.fluorapatite.yellow": "Плита з Необробленого Жовтого Флуорапатитового Пісковику", + "block.tfg.sandstone.stairs.raw.fluorapatite.yellow": "Сходи з Необробленого Жовтого Флуорапатитового Пісковику", "block.tfg.sandstone.smooth.fluorapatite.yellow": "Гладкий жовтий флуорапатитовий пісковик", "block.tfg.sandstone.wall.smooth.fluorapatite.yellow": "Стіна з гладкого жовтого флуорапатитового пісковику", "block.tfg.sandstone.slab.smooth.fluorapatite.yellow": "Плита з гладкого жовтого флуорапатитового пісковику", @@ -360,6 +398,7 @@ "fluid.tfg.enriched_ender_slurry": "Збагачений ендерський шлам", "fluid.tfg.semiheavy_ammoniacal_water": "Термохімічно збагачена амоніачна напівважка вода", "fluid.tfg.heavy_water": "Важка вода", + "fluid.tfg.semiheavy_water": "Напівважка Вода", "fluid.tfg.sulfur_fumes": "Сірчані випари", "fluid.tfg.super_heated_slurry": "Супернагрітий шлам", "item.tfg.antipoison_pill": "Антиотруйна Пілюля", @@ -516,10 +555,10 @@ "item.tfg.roasted_sunflower_seeds": "Смажене насіння соняшника", "item.tfg.sunflower_seeds": "Насіння соняшника", "item.tfg.sunflower_product": "Соняшнткова Кепка", - "item.tfg.rapeseed_seeds": "Насіння ріпаку", - "item.tfg.rapeseed_product": "Ріпакові Овули", + "item.tfg.rapeseed_seeds": "Насіння Каноли", + "item.tfg.rapeseed_product": "Листя Каноли", "item.tfg.flintlock_mechanism": "Крем’яний ударний механізм", - "item.tfg.advanced_clockwork_mechanism": "Удосконалений годинниковий механізм", + "item.tfg.advanced_clockwork_mechanism": "Вдосконалений Годинниковий Механізм", "item.tfg.certus_mechanism": "Механізм Цертус", "item.tfg.small_bullet_casing": "Малий гільзовий корпус", "item.tfg.large_bullet_casing": "Великий гільзовий корпус", @@ -556,12 +595,20 @@ "item.tfg.wood.lumber.aeronos": "Деревина Аеронос", "item.tfg.wood.lumber.strophar": "Деревина Строфар", "item.tfg.wood.lumber.glacian": "Деревина Глаціан", + "item.tfg.twigs.aeronos": "Пагінець Аероносу", + "item.tfg.twigs.strophar": "Пагінець Строфару", + "item.tfg.twigs.glacian": "Пагінець Ґлації", + "item.tfg.twigs.alphacene": "Пагінець Альфацену", "item.tfg.glacian_wool": "Шерсть гляціанського барана", "item.tfg.sniffer_wool": "Мінералонасичені пучки", + "item.tfg.sniffer_egg": "Яйце Нюхача", + "item.tfg.wraptor_wool": "Мінералонасичене Пухове Пір’я", + "item.tfg.wraptor_egg": "Яйце Враптора", + "item.tfg.wraptor_sugar": "Цукор Враптора", "item.tfg.aes_polyurethane": "Біо-АЕС армована R-поліуретанова піна", "item.tfg.mli_shielding": "Багатошарове ізольоване екранування", - "item.tfg.rocket_cone_t3": "Високотехнологічний носовий обтічник ракети", - "item.tfg.rocket_fin_t3": "Високотехнологічне ракетне оперення", + "item.tfg.rocket_cone_t3": "Вдосконалений Носовий Обтічник Ракети", + "item.tfg.rocket_fin_t3": "Вдосконалений Ракетний Стабілізатор", "item.tfg.elite_power_thruster": "§aЕлітний енергетичний рушій", "item.tfg.silica_aerogel": "Силіковий аерогель", "item.tfg.better_space_suit_fabric": "Адаптивна тканина космічного скафандра", @@ -596,6 +643,17 @@ "item.tfg.large_casing_extruder_mold": "Форма екструдера (гільза великого калібру)", "item.tfg.photo_cell_t1": "Базова фотоелементна капсула", "item.tfg.electric_extendo_grip": "Електричне подовжене руків’я", + "item.tfg.treated_chipboard_composite": "Оброблений Композит із ДСП", + "item.tfg.high_density_treated_fiberboard": "Оброблена ДСП Середньої Щільності", + "item.tfg.flax_seeds": "Насіння льону", + "item.tfg.flax_product": "Стебла Льону", + "item.tfg.flax_line": "Волокна Льняної Пряжі", + "item.tfg.flax_tow": "Волокна Льняної Куделі", + "item.tfg.flax_waste": "Вишкрябаний Льон", + "item.tfg.linen_thread": "Лляна нитка", + "item.tfg.linen_cloth": "Лляна тканина", + "item.tfg.uv_led": "§dУльтрафіолетовий §fСвітлодіод", + "item.tfg.smd_uv_led": "§fSMD §dУльтрафіолетовий §fСвітлодіод", "material.tfg.latex": "Латекс", "material.tfg.vulcanized_latex": "Вулканізований Латекс", "material.tfg.fluix": "Флюс", @@ -633,7 +691,7 @@ "material.tfg.compressed_heliox_3": "Стиснений Геліокс-3", "material.tfg.compressed_trimix": "Стиснений Траймікс 50/30/20", "material.tfg.compressed_trimix_3": "Стиснений Траймікс-3 50/30/20", - "material.tfg.chlorodifluoromethane": "Chlorodifluoromethane", + "material.tfg.chlorodifluoromethane": "Хлородифторметан", "material.tfg.acetylene": "Ацетилен", "material.tfg.1_1_1_2_tetrafluoroethane": "1,1,1,2-Тетрафторетан", "material.tfg.isobutane": "Ізобутан", @@ -658,6 +716,12 @@ "material.tfg.nuclear_residue": "Ядерний залишок", "material.tfg.oxidized_nuclear_residue": "Окислений ядерний залишок", "material.tfg.refined_nuclear_residue": "Перероблене ядерне паливо", + "material.tfg.certus_regolith": "Реголіт Цертусу", + "material.tfg.goethe_regolith": "Реголіт Ґете", + "material.tfg.bright_regolith": "Яскравий Реголіт", + "material.tfg.cassiterite_regolith": "Реголіт Каситериту", + "material.tfg.regolith_mush": "Кашка з Реголіту", + "ore_vein.tfg.deep_sheldonite": "Куперит і Борніт", "ore_vein.tfg.deep_garnet_amethyst": "Аметист і Гранат", "ore_vein.tfg.deep_garnet_opal": "Опал і Гранат", "ore_vein.tfg.deep_gold": "Золото (Глибоке)", @@ -668,13 +732,12 @@ "ore_vein.tfg.deep_pitchblende": "Ураніт & Пітчбленд", "ore_vein.tfg.deep_sapphire": "Сапфір і Альмадін", "ore_vein.tfg.deep_scheelite": "Шеєліт та Вольфрам", - "ore_vein.tfg.deep_sheldonite": "Шелдоніт і Борніт", "ore_vein.tfg.deep_topaz": "Топаз і Халькоцит", "ore_vein.tfg.normal_apatite": "Апатит і Пірохлор", "ore_vein.tfg.normal_basaltic_sands": "Мінеральні піски", "ore_vein.tfg.normal_beryllium": "Смарагд і Берилій", - "ore_vein.tfg.normal_bismuthinite": "Вісмут (Звичайний)", - "ore_vein.tfg.normal_cassiterite": "Каситерит (Звичайний)", + "ore_vein.tfg.normal_bismuthinite": "Бісмут (Звичайний)", + "ore_vein.tfg.normal_cassiterite": "Каситерит (звичайний)", "ore_vein.tfg.normal_coal": "Вугілля", "ore_vein.tfg.normal_copper": "Мідь та Халькопірит", "ore_vein.tfg.normal_garnet_tin": "Гранат і Каситеритові піски", @@ -685,7 +748,7 @@ "ore_vein.tfg.normal_hematite": "Гематит та Лімоніт", "ore_vein.tfg.normal_lapis": "Лапіс, Лазурит та Содаліт", "ore_vein.tfg.normal_limonite": "Лімоніт", - "ore_vein.tfg.normal_lubricant": "Стеатит, Тальк і Трона", + "ore_vein.tfg.normal_lubricant": "Соапостон, Тальк і Трона", "ore_vein.tfg.normal_magnetite": "Магнетит і Ванадій", "ore_vein.tfg.normal_manganese": "Марганець і Тантал", "ore_vein.tfg.normal_mica": "Кіаніт, Слюда та Боксити", @@ -701,69 +764,91 @@ "ore_vein.tfg.normal_spodumene": "Сподумен та Лепідоліт", "ore_vein.tfg.normal_sulfur": "Сірка та Пірит", "ore_vein.tfg.normal_tetrahedrite": "Тетраедрит (Звичайний)", - "ore_vein.tfg.surface_bismuthinite": "Вісмут (Поверхня)", - "ore_vein.tfg.surface_cassiterite": "Каситерит (Поверхнивий)", + "ore_vein.tfg.surface_bismuthinite": "Вісмут", + "ore_vein.tfg.surface_cassiterite": "Касетерит", "ore_vein.tfg.surface_copper": "Халькопірит та Реальгар", "ore_vein.tfg.surface_sphalerite": "Сфалерит і Сірка", - "ore_vein.tfg.surface_tetrahedrite": "Тетраедрит (Поверхня)", - "ore_vein.tfg.mars_hematite": "(Placeholder Vein)", + "ore_vein.tfg.surface_tetrahedrite": "Тетраедрит (Поверхневий)", + "ore_vein.tfg.deep_mars_chromite": "Редстоун і Хроміт", + "ore_vein.tfg.deep_mars_pitchblende": "Настуран, Торій і Уранініт", + "ore_vein.tfg.deep_mars_sheldonite": "Борніт і Куперит", + "ore_vein.tfg.mars_almandine": "Альмандин і Сапфір", + "ore_vein.tfg.mars_apatite": "Апатит і Пірохлор", + "ore_vein.tfg.mars_beryllium": "Смарагд і Берилій", + "ore_vein.tfg.mars_coal": "Вугілля і Гкматит", + "ore_vein.tfg.mars_copper": "Мідь та Халькопірит", + "ore_vein.tfg.mars_galena": "Срібло, Гален і Свинець", + "ore_vein.tfg.mars_sapphire": "Золото, Електротин і Боксит", + "ore_vein.tfg.mars_hematite": "Гематит та Лімоніт", + "ore_vein.tfg.mars_lubricant": "Стеатит, Тальк і Глауконіт", + "ore_vein.tfg.mars_neodynium": "Бастнезит і Монацит", + "ore_vein.tfg.mars_nickel": "Гарнієрит і Кобальтит", + "ore_vein.tfg.mars_pitchblende": "Настуран, Торій і Гематит", + "ore_vein.tfg.mars_quartzite": "Кварцит, Азбест і Барит", + "ore_vein.tfg.mars_salt": "Сіль І Сподумен", + "ore_vein.tfg.mars_stibnite": "Тетраедрит (Звичайний)", + "ore_vein.tfg.mars_sulfur": "Сфалерит і Пірит", + "ore_vein.tfg.mars_tantalite": "Марганець і Тантал", + "ore_vein.tfg.mars_tungsten": "Шеєліт та Вольфрам", + "ore_vein.tfg.surface_hematite": "Гематит та Лімоніт", + "ore_vein.tfg.surface_nickel_galena": "Сфалерит і Галеніт", "ore_vein.tfg.moon_apatite": "Апатит і Пірохлор", "ore_vein.tfg.moon_bauxite": "Боксит і Ільменіт", "ore_vein.tfg.moon_beryllium": "Смарагд і Берилій", "ore_vein.tfg.moon_cassiterite": "Каситерит і Халькопірит", + "ore_vein.tfg.moon_sheldonite": "Куперит і Борніт", "ore_vein.tfg.moon_desh": "Деш і Ільменіт", "ore_vein.tfg.moon_garnet": "Аметист, Опал і Гранат", "ore_vein.tfg.moon_garnierite": "Гарнієрит і Кобальтит", "ore_vein.tfg.moon_gold": "Золото і Магнетит", "ore_vein.tfg.moon_graphite": "Графіт і Діамант", "ore_vein.tfg.moon_gypsum": "Гіпс і Кальцит", - "ore_vein.tfg.moon_lubricant": "Стеатит, Тальк і Трона", + "ore_vein.tfg.moon_lubricant": "Соапостон, Тальк і Трона", "ore_vein.tfg.moon_magnetite": "Хроміт і Магнетит", "ore_vein.tfg.moon_manganese": "Марганець і Тантал", "ore_vein.tfg.moon_mica": "Кіаніт, Слюда та Боксити", "ore_vein.tfg.moon_molybdenum": "Вульфеніт і Молібденіт", "ore_vein.tfg.moon_monazite": "Бастнезит і Монацит", "ore_vein.tfg.moon_pyrolusite": "Піролюзит і Кобальт", - "ore_vein.tfg.moon_quartz": "Істинний Кварц", + "ore_vein.tfg.moon_quartz": "Істинний кварц", "ore_vein.tfg.moon_redstone": "Редстоун, Кіновар і Рубін", "ore_vein.tfg.moon_saltpeter": "Селітра та Електротин", "ore_vein.tfg.moon_sapphire": "Сапфір і Альмадін", "ore_vein.tfg.moon_scheelite": "Шеєліт та Вольфрам", - "ore_vein.tfg.moon_sheldonite": "Шелдоніт і Борніт", "ore_vein.tfg.moon_silver": "Срібло, Гален і Свинець", "ore_vein.tfg.moon_sphalerite": "Сфалерит і Пірит", - "ore_vein.tfg.moon_tetrahedrite": "Тетраедрит і Халькоцит", + "ore_vein.tfg.moon_tetrahedrite": "Тетраедрит і Халькозин", "ore_vein.tfg.moon_topaz": "Топаз і Халькоцит", "ore_vein.tfg.nether_anthracite": "Антрацит", "ore_vein.tfg.nether_apatite": "Апатит і Пірохлор", "ore_vein.tfg.nether_basaltic_sands": "Мінеральні піски", "ore_vein.tfg.nether_beryllium": "Смарагд і Берилій", - "ore_vein.tfg.nether_cassiterite": "Каситерит", + "ore_vein.tfg.nether_cassiterite": "Касетерит", + "ore_vein.tfg.nether_sheldonite": "Куперит і Борніт", "ore_vein.tfg.nether_copper": "Мідь та Халькопірит", "ore_vein.tfg.nether_garnet": "Аметист, Опал і Гранат", "ore_vein.tfg.nether_garnet_tin": "Гранат і Каситеритові піски", "ore_vein.tfg.nether_garnierite": "Гарнієрит і Кобальтит", "ore_vein.tfg.nether_goethite": "Гетит", - "ore_vein.tfg.nether_gold": "Золото та Гематит", + "ore_vein.tfg.nether_gold": "Золото і Гематит", "ore_vein.tfg.nether_graphite": "Графіт і Діамант", "ore_vein.tfg.nether_gypsum": "Гіпс і Кальцит", "ore_vein.tfg.nether_hematite": "Гематит та Лімоніт", "ore_vein.tfg.nether_lapis": "Лапіс, Лазурит та Содаліт", - "ore_vein.tfg.nether_lubricant": "Стеатит, Тальк і Трона", + "ore_vein.tfg.nether_lubricant": "Соапостон, Тальк і Трона", "ore_vein.tfg.nether_magnetite": "Хроміт", "ore_vein.tfg.nether_manganese": "Марганець і Тантал", "ore_vein.tfg.nether_mica": "Кіаніт, Слюда та Боксити", "ore_vein.tfg.nether_molybdenum": "Вульфеніт і Молібденіт", "ore_vein.tfg.nether_monazite": "Бастнезит і Монацит", - "ore_vein.tfg.nether_naquadah": "Наквадак і Плутоній", + "ore_vein.tfg.nether_naquadah": "Наквада і Плутоній", "ore_vein.tfg.nether_olivine": "Бентоніт та Олівін", "ore_vein.tfg.nether_pitchblende": "Ураніт & Пітчбленд", - "ore_vein.tfg.nether_quartz": "Кварц Нижнього Світу", + "ore_vein.tfg.nether_quartz": "Незерський кварц", "ore_vein.tfg.nether_redstone": "Редстоун, Кіновар і Рубін", "ore_vein.tfg.nether_saltpeter": "Селітра та Електротин", "ore_vein.tfg.nether_sapphire": "Сапфір і Альмадін", "ore_vein.tfg.nether_scheelite": "Шеєліт та Вольфрам", - "ore_vein.tfg.nether_sheldonite": "Шелдоніт і Борніт", "ore_vein.tfg.nether_silver": "Срібло, Гален і Свинець", "ore_vein.tfg.nether_sphalerite": "Сфалерит і Пірит", "ore_vein.tfg.nether_sulfur": "Сірка та Пірит", @@ -789,6 +874,9 @@ "entity.tfg.sniffer.male": "Сніффер", "entity.tfg.sniffer.female": "Сніффер", "tfg.tooltip.attribution.sniffer": "§9§oАвтор: Minecraft", + "entity.tfg.wraptor.male": "Враптор", + "entity.tfg.wraptor.female": "Враптор", + "tfg.tooltip.attribution.wraptor": "§9§oCredit: Species", "item.treetap.tap": "Застарілий предмет, створіть для оновлення", "item.gtceu.zinc_ingot": "Застарілий предмет, створіть для оновлення", "item.gtceu.brass_ingot": "Застарілий предмет, створіть для оновлення", @@ -922,11 +1010,11 @@ "emi.category.tfg.ore_vein_info": "Жили руди", "tfg.toast.ore_prospector_none": "У межах діапазону руд не знайдено.", "tfg.toast.ore_prospector_message": "Руди, знайдені в межах %s §6блоків у цьому напрямку: %s", - "tooltip.tfg.ore_prospector_stats": "Діапазон сканування: %s, Поперечний переріз: %s x %s.", - "tooltip.tfg.ore_prospector_count": "Цей розвідник зображатиме кількість руди.", - "tooltip.tfg.ore_prospector_xray": "Цей розвідник відображатиме %s рентгенівський огляд блоків руди.", - "tooltip.tfg.ore_prospector_mode_vein": "per-vein", - "tooltip.tfg.ore_prospector_mode_block": "per-block", + "tfg.tooltip.ore_prospector_stats": "Діапазон сканування: %s, Поперечний переріз: %s x %s.", + "tfg.tooltip.ore_prospector_count": "Цей розвідник зображатиме кількість руди.", + "tfg.tooltip.ore_prospector_xray": "Цей розвідник відображатиме %s рентгенівський огляд блоків руди.", + "tfg.tooltip.ore_prospector_mode_vein": "per-vein", + "tfg.tooltip.ore_prospector_mode_block": "per-block", "tfg.hangglider.disabled_dimension": "Тут не можна використовувати дельтаплан!", "tfg.tooltip.nametag": "§7Використовується на столі переписування разом із предметом для його іменування або з чорною фарбою для іменування мітки.", "tfg.tooltip.yeast_starter": "§7Створено з сушених фруктів", @@ -956,13 +1044,18 @@ "tfg.tooltip.support.tier2": "§717 x 9 x 17", "tfg.tooltip.support.tier3": "§733 x 13 x 33", "tfg.tooltip.vessels": "§cМакс: 3024mB", - "tfg.tooltip.solar_panel.single": "Виробляє §6128 FE/t§r (32 EU/t) на §6Місяці§r протягом §6дня§r", + "tfg.tooltip.solar_panel.single": "Виробляє §6128 FE/т§r (32 EU/т) на §6Місяці§r протягом §6дня§r", "tfg.tooltip.solar_panel.large_tier1": "Гігантська структура, що виробляє від §61024 до 4096 EU/t§r на §6Місяці§r протягом §6дня§r", "tfg.tooltip.solar_panel.large_tier2": "Гігантська структура, що виробляє від §64096 до 16384 EU/t§r на §6Місяці§r протягом §6дня§r", "tfg.tooltip.solar_panel.large_tier3": "Гігантська структура, що виробляє від §616384 до 65536 EU/t§r на §6Місяці§r протягом §6дня§r", "tfg.tooltip.petrified_egg": "§7Потребує магми для інкубації", + "tfg.tooltip.large_egg": "§7Може бути інкубовано лише у §oВеликому Гнізді", + "tfg.tooltip.sniffer_wool": "§7Зібрано зі спини Нюхача", + "tfg.tooltip.wraptor_wool": "§7Зібрано з пір’я Враптора", + "tfg.tooltip.wraptor_sugar": "§7Не замислюйся над цим занадто", "tfg.tooltip.obsolete.depreciated": "§cЗастаріле, більше не створюється", "tfc.jei.flint_knapping": "Обробка Кременю", + "tfc.jei.straw_knapping": "Вибивання Соломи", "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.black": "Фарбування", "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.gray": "Фарбування", "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.light_gray": "Фарбування", @@ -1111,6 +1204,82 @@ "quests.ae2.ae_guide.title": "Вітаємо в AE2", "quests.ae2.ae_guide.subtitle": "Ще одна безкоштовна книжка для твоєї колекції!", "quests.ae2.ae_guide.desc": "Ось ти і готовий розпочати свою &bAE2&r-інфраструктуру!\n\nЦей розділ переважно пояснює, що ти вже можеш створити, а що — ще ні.\nМи також виділимо найважливіші предмети, на які варто звернути увагу.\n\nОднак, щоб повністю розібратися з Applied Energistics 2, наполегливо радимо скористатися клавішею &bG&r (аналог системи Ponder з Create) або відкрити &bME Guide&r, яку ти отримаєш як нагороду за це завдання. Це найкращий внутрішньоігровий довідник для AE2. Альтернатива — переглянути онлайн-відео про AE2 для версії &61.20.1&r, де знайдеш детальні пояснення — AE2 надзвичайно популярний мод, тому тут безліч гайдів!\n\n&dПорада&r: Багато рецептів з &bAE2&r мають дешевші альтернативи для Місяця. Тож інвестиції в місячну базу щедро окупляться протягом усієї гри.", + "quests.ae2.hv.title": "HV-рівень AE2", + "quests.ae2.hv.desc": "Уся ця гілка повністю доступна для розблокування на &6HV&r!", + "quests.ae2.ae_controller.subtitle": "Серце вашої ME мережі", + "quests.ae2.ae_controller.desc": "Щоб розпочати, вам потрібно підживити вашу &bME Мережу&r. Ось два &bAE2&r блоки, які можуть безпосередньо приймати енергію &bEU&r.\n\nМи наполегливо рекомендуємо виготовити &bME Контролер&r, оскільки у TerraFirmaGreg &bканали&r увімкнені, а &bME Контролер&r — найзручніший спосіб ефективно керувати кількома каналами одночасно.\n\nЦе також чудова нагода скористатися вбудованим гайдом у грі (натисніть &aU&r на &bME Controller&r) або подивитися кілька відео про &bAE2&r версії 1.20.1, щоб дізнатися більше!", + "quests.ae2.drive.subtitle": "Мозок мережі", + "quests.ae2.drive.desc": "Вам потрібно зберігати ваші диски, і завдяки додатку &bMEGA&r у вас з’явилася додаткова опція.\n\nРекомендується почати з &bME Дископриймач&r. Він може зберігати до &e10&r дисків і споживає &e4 EU/t&r. Це буде ваше основне сховище.\n\nІнший варіант — &bДок диска ME&r. Він зберігає лише &e1&r диск, але споживає всього &e1 EU/t&r, і його можна розмістити прямо на кабелі, як кришку. Це робить його дуже корисним для &aПідмережі&r.", + "quests.ae2.cell_housing.desc": "&bКорпус комірки Me&r існує у двох версіях: одна для &aпредметів&r і одна для &9рідини&r.\n\nВи можете витягнути їхній Компонент сховища за допомогою &eПакувальника&r або просто натиснувши Shift + правий клац, тримаючи комірку для зберігання у руці.", + "quests.ae2.cables.subtitle": "Артерії мережі", + "quests.ae2.cables.desc": "Ваші базові кабелі для підключення &bAE2&r інфраструктури.\n\nПам’ятайте, що звичайні кабелі пропускають лише &e8 каналів&r, тоді як &6Щільні кабелі&r можуть пропускати до &a32 каналів&r.\n\nХороша новина: у &2TFG&r ви можете безпосередньо виготовити &9Розумні кабелі&r! Вони дуже корисні, оскільки показують &eвізуальний індикатор&r кількості використаних каналів.", + "quests.ae2.terminals.subtitle": "Емм... пальцем? в мережу?", + "quests.ae2.terminals.desc": "Ці термінали є обов’язковими для доступу до вашої ME мережі та налаштування системи автокрафту.", + "quests.ae2.molecular_assembler.desc": "&9Молекулярний Збирач&r — це, по суті, ваш стіл для автокрафту.\n\nВи можете використовувати його для пасивного крафту або поєднати з &9Постачальником шаблонів&r.\n\nЯк завжди, перегляньте ігровий довідник за допомогою &eG&r, щоб дізнатися більше.", + "quests.ae2.crafting_unit.subtitle": "Другий? мозок мережі", + "quests.ae2.crafting_unit.desc": "&dБлок крафту&r працює так само, як і ваш &bКорпус ME Капсули&r.\n\nВикористайте &6Пакувальник&r, щоб зробити його функціональним — сам по собі він не має призначення, хоча й може використовуватися для складання мультиблоків.\n\nЦе обов’язкова структура для запуску автокрафту в &bAE2&r.\n\nЯк завжди, скористайтеся ігровим довідником з &bAE2&r, щоб дізнатися більше про &dПроцесор крафту&r.", + "quests.ae2.crafting_storage.desc": "Вони обов’язкові для будь-якого автокрафту — що більший обсяг сховища, то довший ланцюжок рецептів можна виконати одним запитом. Також можна розміщувати кілька таких блоків поруч, щоб підсумувати їхній обсяг пам’яті.\n\nСкористайтеся ігровим довідником для докладних пояснень — він розкаже все значно краще, ніж ми змогли б у квесті.\n\nПриділіть час читанню: це чудове джерело інформації!", + "quests.ae2.crafting_storage.task": "Будь-яке сховище складання", + "quests.ae2.pattern_provider.subtitle": "Вони вказують вашим машинам, як складати речі", + "quests.ae2.pattern_provider.desc": "&9Постачальник Шаблонів&r — сучасний блок &bAE2&r. Якщо ви знайомі лише з AE2 у попередніх версіях Minecraft, це той блок, у який тепер поміщають шаблони замість Інтерфейсу.\n\nВін може відправляти предмети до підключеного сховища за запитом крафту, а повернення предметів назад у нього надсилає їх до вашого ME сховища.\n\nЯкщо ви підключаєте його до ваших машин GregTech, обов’язково оберіть опцію «Дозволити ввід з вихідної сторони», щоб можна було одночасно вводити й виводити предмети з одного боку!\n\nЯк завжди, перегляньте ігровий довідник за допомогою &eG&r, щоб дізнатися більше про нього.", + "quests.ae2.pattern_provider.task": "Будь-який Постачальник шаблонів", + "quests.ae2.pattern.subtitle": "Інструкції крафту", + "quests.ae2.pattern.desc": "Кожен із цих блоків повідомляє вашій ME системі, як створювати конкретний предмет. Вам потрібен один для кожного рецепту, тож варто дбати про найбільш ефективний спосіб їх виготовлення.\n\nЩоб очистити шаблон, просто затисніть Shift і клацніть правою кнопкою миші.\n\nДля повної інформації про використання скористайтеся ігровим довідником, і не забудьте встановити тип шаблону на «Обробка», якщо рецепти призначені для машин GregTech.", + "quests.ae2.interface.subtitle": "Я відмовляюся від аналогії з частинами тіла", + "quests.ae2.interface.desc": "&dME Інтерфейс&r — один із ваших основних інструментів для отримання предметів чи рідин з мережі або для їх внесення.\n\nЯкщо ви користувалися AE2 лише в старих версіях Minecraft, зараз ці блоки лише пасивно надають вміст мережі для інших блоків, щоб ті могли його забирати, і не відправляють нічого активно та не зберігають шаблони. Для цього потрібен Постачальник шаблонів.\n\nME Інтерфейс може виконувати забагато функцій, щоб перераховувати їх усі тут, тому перегляньте ігровий довідник за допомогою &eG&r для детальнішої інформації.", + "quests.ae2.interface_automation.title": "Автоматизація Інтерфейсу", + "quests.ae2.interface_automation.desc": "Найкращий спосіб пасивно переміщати предмети та рідини по вашій базі — через &bME Інтерфейс&r. Оскільки Інтерфейси не відправляють свій вміст, вам потрібно встановити покриття на вашу машину або трубу.\n\nНе забудьте ввімкнути опцію &eДозволити ввід&r на вихідній стороні у GUI машини GregTech, щоб одночасно здійснювати ввід і вивід з одного боку.\n\nВикористання фільтрів на покриттях також може бути зручним для кількох машин, щоб вони забирали предмети з одного Інтерфейсу.\n\nЩоб уникнути переповнення слотів вводу предметів у машині, потрібно використовувати покриття Robot Arm у режимі &eЗберігати точно&r разом із фільтром.\n\nДля вводу рідин цієї проблеми немає — слот заповнюється автоматично лише один раз.", + "quests.ae2.crafting_accelerator.desc": "Просто скористайтеся ігровим довідником — він пояснить усе набагато краще, ніж ми змогли б у квесті.\n\nПриділіть час читанню, це чудове джерело інформації!", + "quests.ae2.export_bus.desc": "&dME Вивідний Шлюз&r — потужний інструмент для виведення предметів або рідин із вашої &dME мережі&r.\nЯк тільки ви зможете їх виготовляти, особливо зверніть увагу на &eExtendedAE&r версії, адже вони можуть сильно допомогти в автоматизації.\n\n&cВажлива заувага&r: ці блоки значно більше впливають на &4TPS&r порівняно з ME Інтерфейсами, тому краще використовувати їх економно.", + "quests.ae2.export_bus.task": "Будь-який Вивідний Шлюз", + "quests.ae2.import_bus.desc": "&dME Ввідний Шлюз&r — один зі способів занести предмети та рідини у вашу &dME мережу&r. Ви також можете просто надсилати предмети та рідини в Інтерфейс або Постачальник шаблонів для того самого результату, тож Ввідні Шлюзи більш нішеві.\n\n&cВажлива заувага&r: ці блоки значно більше впливають на &4TPS&r порівняно з ME Інтерфейсами, тому краще використовувати їх економно.", + "quests.ae2.storage_bus.desc": "&bME Шлюз зберігання&r дозволяє повідомити вашу ME мережу про предмети та рідини, що зберігаються поза ME дисками. Вони можуть бути дуже потужними в поєднанні з Супер Резервуаром і Супер Скринею — тільки переконайтеся, що Шлюз зберігання має вищий &eПріоритет&r, ніж ваш Диск, і налаштуйте його на потрібний предмет або рідину, щоб мережа спочатку намагалася поміщати туди речі.\n\nШлюзи зберігання також необхідні для налаштування Підмережі — перегляньте ігровий довідник для детальнішого пояснення, як вони працюють.\n\nКрім того, &aExtendedAE&r пропонує багато варіантів Шлюзів зберігання, які можуть стати в пригоді пізніше. Наприклад, ви можете наказати мережі «зберігати» всі ваші &6гарячі злитки&r у Вакуумній Морозильній Камері.", + "quests.ae2.storage_bus.task": "Будь-який варіант Шлюзу зберігання", + "quests.ae2.cell_component_1k.desc": "&bКомпонент зберігання&r буде ключовою частиною вашого прогресу в &aAE2&r, і вони можуть бути досить дорогими, хоча саме вони потрібні для створення ваших &bСховищних Капсул&r.\n\n&e1k ME Компонент зберігання&r достатньо простий, щоб не мати спеціального рецепту на Місяці, але всі інші мають, і оскільки компоненти зберігання стають експоненційно дорожчими... чи переконали ми вас уже побудувати базу на Місяці?", + "quests.ae2.cell_component_4k.desc": "Зверніть увагу, як &e4k Компонент зберігання&r має набагато дешевший рецепт на &dМісяці&r. Це буде постійна тенденція — рецепти на Місяці завжди використовують на один рівень схем нижче, ніж рецепти поза Місяцем.", + "quests.ae2.cell_component_16k.desc": "&e16k Компонент зберігання&r починає ставати експоненційно дорожчим, тож тепер ви дійсно можете побачити переваги від наявності бази на Місяці.\n\nУ вас же є база на Місяці, правда?", + "quests.ae2.p2p.title": "P2P Тунель", + "quests.ae2.p2p.desc": "Тут канали ввімкнені за замовчуванням, тож варто дізнатися про &dP2P&r. По суті, це спосіб об’єднати кілька каналів в один, дозволяючи передавати сотні каналів через одну трубу по всій вашій базі.\n\nЯк завжди, радимо скористатися ігровим довідником для детальнішої інформації, а також існує безліч відеоуроків, які можуть стати в пригоді.\n\nМи також рекомендуємо якнайшвидше виготовити &bРозширену карту пам’яті&r з &dКращиц P2P&r. Вона дуже допоможе, коли вам доведеться працювати з багатьма різними P2P тунелями. Ви навіть можете заздалегідь розмістити безліч &dME P2P Вводи&r на вашому ME Контролері і підключати їх до виходу коли потрібно.", + "quests.ae2.p2p.task": "Будь-який P2P Тунель", + "quests.ae2.cell_workbench.desc": "&bСтенд для капсул&r використовується для налаштування ваших сховищних капсул.\n\nВи можете додавати до них фільтри або розділення &aБілий список&r / &cЧорний список&r, а також апгрейди, такі як &4Карта знищення переповнення&r — але будьте обережні з цим!\n\n&bI/O Порт&r використовується для «дефрагментації» ваших дисків, якщо однакові предмети розкидані по кількох із них.", + "quests.ae2.requester.desc.1": "&aME Запитувач&r може стати одним із ваших &6найпотужніших інструментів&r, якщо ви хочете будувати автоматизацію навколо &eавтокрафту&r, а не пасивного виробництва.\n\nВін може відправляти пакети запитів на крафт предмета, коли у вашій мережі їх менше, ніж задана кількість.\n\nЯкщо ви використовуєте багато &dКрафт-апгрейдів&r, краще використовувати цю машину, оскільки вона буде значно менше впливати на ваш &cTPS&r.", + "quests.ae2.requester.desc.2": "Також зверніть увагу, що ви можете налаштувати ваші Крафтові CPU так, щоб вони були призначені лише для крафтів, запущених гравцем, для автоматичних запитів крафту, або ж ні для чого. Це може бути корисним, щоб ваші Запитувачі не займали всі CPU.\n\nЯкщо бажаєте, ви також можете зробити спеціалізований &bТермінал&r, щоб мати доступ до всіх ваших Запитувачів з одного місця.", + "quests.ae2.emitters.desc": "&bЕмітери&r та &bШина-перемикач&r — це ваш спосіб керувати сигналами &cРедстоуну&r в &bAE2&r.\n\nЕмітер рівня особливо корисний для налаштування пасивного виробництва в комбінації з Кришкою Контролера Машини GregTech!\n\nДетальнішу інформацію дивіться в ігровому довіднику.", + "quests.ae2.batteries.desc": "Це акумулятори для вашої мережі ME. На початку вони можуть і не знадобитися, але майте їх на увазі — вартість енергії може швидко зрости, а відключення живлення в ME мережі може стати справді небезпечною ситуацією.", + "quests.ae2.cutting_knife.title": "Різальні ножі", + "quests.ae2.cutting_knife.desc": "Це інструменти для зручного перейменування всіх ваших компонентів ME. Навіщо це робити? Якщо ви перейменуєте свої Постачальники шаблонів, їхні назви будуть відображатися в Терминалі шаблонів, що дуже зручно для відстеження, який Постачальник шаблонів підключений до якої машини.\n\nНаприклад, назва Малий екструдер шестерень для Постачальника шаблонів дозволить вам легко зрозуміти, що цей екструдер містить форму для малих шестерень, тож сюди слід класти лише шаблони малих шестерень.", + "quests.ae2.cutting_knife.task": "Будь-який ніж для різання", + "quests.ae2.programmed_circuit_card.desc": "Встав один із цих предметів у свої Постачальники шаблонів, і якщо в рецепті є запрограмоване коло, підключена машина GregTech автоматично змінить свою мікросхему на те, що вказане в рецепті. Наскільки ж це зручно?!", + "quests.ae2.iv.title": "AE2 рівня IV", + "quests.ae2.iv.desc": "Уся ця гілка стане повністю доступною, щойно ти досягнеш &1IV&r.", + "quests.ae2.accumulation_press.desc": "Щоб отримати цей &eНовий Прес для Інскрайбера&r, тобі доведеться трохи вкластися.\n\nСпершу потрібно оновити свій Імплозійний Компресор, додавши до нього &1два IV Енергетичні Люки&r.\n\nДалі — придбай собі новий IV Лазерний Гравер, якщо ще не маєш.\n\nІ нарешті — підготуй багато Промислового TNT, адже це &cєдине, що працює&r для цього процесу.\n\nПлануй уважно, бо цей крок доволі вимогливий!", + "quests.ae2.accumulation_processor.desc": "&eАкумуляційний Процесор&r вимагатиме велику кількість Кремнію для кожного крафту.\n\nСподіваємось, у тебе вже є виділений ЕДП, що виробляє Кремній, або принаймні потужна інфраструктура для його швидкого виготовлення.\n\nГотуйся заздалегідь, адже тобі знадобиться його чимало!", + "quests.ae2.mega_crafting.desc": "Це чудове покращення для твого &bКрафтового CPU&r.\n\nВони допоможуть прискорити автокрафт і дозволять легко обробляти більші завдання.", + "quests.ae2.mega_battery.desc": "&ebБільша батарея&r для більшої мережі. І більше тут додати нічого!", + "quests.ae2.extended_pattern_access.desc": "&eРозширений Шаблонний Термінал&r — чудове оновлення для зручнішого керування всіма вашими шаблонами.\n\nВи отримаєте &6більше параметрів пошуку&r для своїх шаблонів, і зважаючи на те, скільки їх у вас тепер має бути, це стане величезним покращенням якості життя.\n\nСтворіть «оновлену» версію, щоб просто присісти та клацнути ПКМ по вашим наявним постачальникам шаблонів і оновити їх без потреби діставати всі шаблони.", + "quests.ae2.extended_pattern_access.task": "Або саму деталь, або покращення", + "quests.ae2.extended_interface.desc": "Ось вони — ваші збільшені &bІнтерфейси&r з оновленням, тож навіть не доведеться від’єднувати їх для оновлення.\n\nВи будете дуже задоволені ними!", + "quests.ae2.extended_interface.task": "Або саму деталь, або покращення", + "quests.ae2.extended_patprov.desc": "Ось вони — ваші збільшені &bПостачальники шаблонів&r з оновленням, тож навіть не доведеться від’єднувати їх для оновлення.\n\nВи будете дуже задоволені ними!", + "quests.ae2.extended_patprov.task": "Або саму деталь, або покращення", + "quests.ae2.extended_drive.desc": "&dРозширений ME Привід&r дозволяє &6подвоїти&r кількість &eКапсул Зберігання&r, які можна в нього вставити.\n\nТакож ви можете створити &eоновлення&r, щоб просто &aПравим Кліком&r оновити наявні ME приводи без потреби виймати диски — і це не коштуватиме вам більше.", + "quests.ae2.extended_drive.task": "Або саму деталь, або покращення", + "quests.ae2.extended_import_export.desc": "Вони у вісім разів швидші за свої звичайні аналоги. Насолоджуйтесь!", + "quests.ae2.extended_import_export.task": "Або саму деталь, або покращення", + "quests.ae2.extended_io_port.desc": "Це оновлення дозволить вам &aпередавати швидше&r, а також надасть &6більше слотів для оновлень&r у разі потреби.", + "quests.ae2.extended_molecular_assembler.desc": "Вдосконалена версія &bМолекулярного Збирача&r.\n\nВона може виконувати &68 крафтів&r одночасно та працює &62 рази швидше&r.\n\nХоча її можна використовувати лише зі звичайним &bНосієм шаблонів&r, це буде &aчудовим покращенням&r перед тим, як ви отримаєте &dМультиблочну Матрицю&r трохи пізніше.", + "quests.ae2.wireless.desc": "&aME Бездротовий Конектор&r — ваш головний інструмент, якщо ви не хочете прокладати величезні лінії з &bME Кабелів&r. Вони фактично працюють як короткодіапазонні Квантові тунелі, але мають обмежений радіус дії й не працюють між вимірами. Було б занадто просто, правда?\n\nНе забудьте перевірити внутрішньоігровий гід через &eG&r, щоб дізнатися, як вони працюють і які мають обмеження.", + "quests.ae2.mega_cell_housing.desc": "Ці &bКорпуси для Капсул&r працюють так само, як базові, але вони потрібні для створення більших дисків із &dMEGA&r.", + "quests.ae2.cell_component_64k.desc": "Тепер, коли у вас є &1IV&r Мікросхеми, ви можете створити цей величезний &5Компонент Зберігання&r. Хіба ви не раді, що зробили базу на Місяці?", + "quests.ae2.cell_component_256k.desc": "&c256k Компонент Зберігання ME&r — це останній, який можна створити за допомогою звичайного Збирача, і він настільки великий, що вам, можливо, ніколи не знадобляться більші розміри.\n\nЗвісно, якщо тільки ви не приймаєте виклик.", + "quests.ae2.luv.title": "LuV Рівень AE2", + "quests.ae2.luv.desc": "Ця гілка стає доступною для розблокування, щойно ви досягнете &dLuV&r.", + "quests.ae2.cell_component_1m.desc": "&3Компоненти Зберігання Mega&r потребуватимуть &bЛінії Збирання&r. Зверніть увагу, що рецепт для Землі має виготовлятися в Чистій кімнаті, або ви можете використати Чистий Люк Обслуговування, якщо маєте доступ до нього.\n\nНа Місяці це не потрібно.", + "quests.ae2.cell_component_4m.desc": "Просто більший та дорожчий.", + "quests.ae2.cell_component_16m.desc": "Цей можна виготовити лише на &cМісяці&r і ніде більше. Також знадобиться середовище Чистої кімнати, тож якщо ви не хочете морочитися з Чистою кімнатою на &cМісяці&r, слід створити &7Чистий Люк Обслуговування&r.\n\nТакож потрібні деякі дослідження. Зверніться до розділу &cZPM&r, якщо не знаєте, що це означає.", + "quests.ae2.cell_component_64m.desc": "&c64M Компонент Зберігання MEGA&r — це найбільший, який можна створити у &8TerraFirmaGreg&r. Чесно кажучи, ми вважаємо, що він вам ніколи не знадобиться, але він існує для тих, хто прагне завершити колекцію.", + "quests.ae2.oversize_interface.desc": "&dME Надвеликий Інтерфейс&r — це &dРозширений Me Інтерфейс&r, але кожен слот може вміщувати у 16 разів більше предметів або рідин. Якщо у вас є процеси, що потребують величезних кількостей, це може стати вашим основним інструментом.", + "quests.ae2.assembler_matrix.desc": "&6Матриця Збирача&r — це, по суті, настроюваний мультиблок Молекулярного Збирача. Вимоги для цього квесту дозволяють зібрати версію, яку ми вважаємо достатньо потужною. За бажанням ви можете додати більше шарів &bЯдра Шаблону&r або &aЯдра Крафту&r.\n\nЯк завжди, зверніться до внутрішньоігрового гіда для детальної інформації.", "quests.tasktype.checkmark": "Натисніть тут, щоб завершити це завдання/квест", "quests.tasktype.item.any": "Будь-який тип предмету:", "quests.tasktype.lookat": "Погляньте на:", @@ -1154,14 +1323,14 @@ "quests.create_logistics.rose_quartz.desc": "Переміщення упаковок — це, звісно, добре, але хіба на цьому все закінчується? І справді — можливостей набагато більше! Упаковки можна використовувати для &aЗчитування вмісту інвентарів&r, &aДистанційної доставки&r, а згодом навіть для &aАвтоматичної відправки інгредієнтів на обробку&r, коли їх кількість опускається нижче певного порогу!\n\nАле перш ніж занурюватися в &2Високу логістику&r, слід трохи підготуватись.\n\nДля створення відповідного обладнання знадобляться &dПередавачі&r, які реально виготовити лише за допомогою світла високої енергії, заломленого через дуже особливий мінерал — &dРожевий кварц&r. Інакше кажучи, нам потрібні і &7Базовий &3Лазерний гравер&r, і спосіб отримати &dЛінзу з рожевого кварцу&r — тож час братися до справи, га?", "quests.create_logistics.cold_rose_quartz.title": "Джерело рожевого кварцу: Холодні регіони", "quests.create_logistics.cold_rose_quartz.subtitle": "Північ пам’ятає", - "quests.create_logistics.cold_rose_quartz.desc.1": "Єдине природне джерело &dРожевого кварцу&r достатньої якості для зручного створення &dЛінзи&r розташоване далеко на півночі, в умовах лютих морозів (нижче &b-10°C&r). Маєш флешбеки з каоліновою глиною?\n\nРожевий кварц утворюється лише в ядрах давніх льодовиків, тож шукати його слід там, де ці льодовики зрештою зупиняються — на пляжах, біля озер, у рівнинах і навіть під водою в океанах. Хоча це й нечасте явище, ядро льодовика легко впізнати за зовнішньою оболонкою з &bСинього льоду&r. Усередині ти знайдеш &dРожевий кварц&r — спершу у вигляді руди, а в самому центрі — як стиснені блоки необробленої руди.\n\nНам потрібен саме &dВишуканий рожевий кварц&r, який можна отримати шляхом &3дроблення, промивання та просіювання&r добутої руди. Ймовірність випадіння вишуканого самоцвіту — 3 відсотки, але тобі вистачить лише одного, щоб просунутись далі.\n\n&c&lНе виплавляй руду — отримаєш лише звичайний рожевий кварц!&r!", + "quests.create_logistics.cold_rose_quartz.desc.1": "Єдине природне джерело &dРожевого кварцу&r достатньої якості для зручного створення &dЛінзи&r розташоване далеко на півночі, в умовах лютих морозів (нижче &b-10°C&r). Маєш флешбеки з каоліновою глиною?\n\nРожевий кварц утворюється лише в ядрах давніх льодовиків, тож шукати його слід там, де ці льодовики зрештою зупиняються — на пляжах, біля озер, у рівнинах і навіть під водою в океанах. Хоча це й нечасте явище, ядро льодовика легко впізнати за зовнішньою оболонкою з &bСинього льоду&r. Усередині ти знайдеш &dРожевий кварц&r — спершу у вигляді руди, а в самому центрі — як стиснені блоки Сировинної руди.\n\nНам потрібен саме &dВишуканий рожевий кварц&r, який можна отримати шляхом &3дроблення, промивання та просіювання&r добутої руди. Ймовірність випадіння вишуканого самоцвіту — 3 відсотки, але тобі вистачить лише одного, щоб просунутись далі.\n\n&c&lНе виплавляй руду — отримаєш лише звичайний рожевий кварц!&r!", "quests.create_logistics.cold_rose_quartz.desc.2": "Ті самі приготування, які ти, можливо, вже робив для каолінової глини, знадобляться й тут: запасися великою кількістю їжі, джерелом питної води та транспортом (човни — це добре, але &3Літальні апарати&r на цьому етапі вже мають бути тобі доступні).\n\nТакож варто прихопити &3Мідне спорядження для занурення&r. &3Шолом&r дозволить тобі &aДихати під водою&r у парі з &3Мідним балоном&r (його потрібно наповнити стисненим повітрям, розмістивши на землі та подавши обертальний рух від Create), а &3Чоботи&r допоможуть &aЛегше пересуватись під водою&r. Ядра льодовиків часто трапляються в океані, і без цих приготувань їх видобуток може стати справжнім випробуванням (хоча іноді вони трапляються й на суші).", "quests.create_logistics.fabricate_rose_quartz.title": "Джерело рожевого кварцу: MV", "quests.create_logistics.fabricate_rose_quartz.subtitle": "Так само добре, як і справжнє", - "quests.create_logistics.fabricate_rose_quartz.desc": "Оскільки високорівнева логістика не є критичною для просування, ти можеш відкласти виготовлення Лінзи до етапу &bMV&r, коли зможеш зробити це вдома. &dРожевий кварц&r можна кристалізувати з його порошкової форми (суміш 8 частин редстоуну та 1 частини кварцу з Незеру) за допомогою &bПокращеного &3Автоклава&r, замінивши звичайну (дистильовану) воду на &bКрижану воду&r, щоб імітувати природні умови. Так само, на рівні &bMV&r саму &dЛінзу з рожевого кварцу&r можна вирізати з &dПластини рожевого кварцу&r, яку, своєю чергою, потрібно виготовити з повного блока кварцу (оскільки це пластина з самоцвіту, її слід обробляти в &3Різаку&r).", + "quests.create_logistics.fabricate_rose_quartz.desc": "Оскільки високорівнева логістика не є критичною для просування, ти можеш відкласти виготовлення Лінзи до етапу &bMV&r, коли зможеш зробити це вдома. &dРожевий кварц&r можна кристалізувати з його порошкової форми (суміш 8 частин редстоуну та 1 частини кварцу з Незеру) за допомогою &bВдосконаленого &3Автоклава&r, замінивши звичайну (дистильовану) воду на &bКрижану воду&r, щоб імітувати природні умови. Так само, на рівні &bMV&r саму &dЛінзу з рожевого кварцу&r можна вирізати з &dПластини рожевого кварцу&r, яку, своєю чергою, потрібно виготовити з повного блока кварцу (оскільки це пластина з самоцвіту, її слід обробляти в &3Різаку&r).", "quests.create_logistics.rose_quartz_lens.title": "Рожеві окуляри", "quests.create_logistics.rose_quartz_lens.subtitle": "ПЛО (Потрібен Лише Один)", - "quests.create_logistics.rose_quartz_lens.desc": "Яким би способом ти не здобув потрібні матеріали, для створення Лінзи тобі знадобиться &3Токарний верстат&r. &7Базового &3Токарного верстата&r буде достатньо, щоб виготовити лінзу з &dВишуканого рожевого кварцу&r, але якщо ти хочеш зробити її зі звичайної пластини, знадобиться краща техніка — &bПокращений &3Токарний верстат&r.\n\nЩойно лінза буде готова, її можна використати в &7Базовому &3Лазерному гравері&r разом із &dПодвійною пластиною з червоного сплаву&r для створення модуля &dПередавача&r — і при цьому лінза не буде витрачена.", + "quests.create_logistics.rose_quartz_lens.desc": "Яким би способом ти не здобув потрібні матеріали, для створення Лінзи тобі знадобиться &3Токарний верстат&r. &7Базового &3Токарного верстата&r буде достатньо, щоб виготовити лінзу з &dВишуканого рожевого кварцу&r, але якщо ти хочеш зробити її зі звичайної пластини, знадобиться краща техніка — &bВдосконалений &3Токарний верстат&r.\n\nЩойно лінза буде готова, її можна використати в &7Базовому &3Лазерному гравері&r разом із &dПодвійною пластиною з червоного сплаву&r для створення модуля &dПередавача&r — і при цьому лінза не буде витрачена.", "quests.create_logistics.stock_link.title": "Посилання на запаси", "quests.create_logistics.stock_link.subtitle": "У нас є шини зберігання вдома", "quests.create_logistics.stock_link.desc": "Першою машиною з &2Високої логістики&r, яку ти можеш створити, є &3Зв’язок із запасами&r (Stock Link) — він дозволяє створити &dЛогістичну мережу&r. Якщо розмістити його на будь-якому боці &3Упаковника&r, він &aЗробить інвентар, до якого підключено Упаковник, видимим для мережі&r! Сам по собі Зв’язок не надто корисний, але він є ключовим компонентом усіх майбутніх машин...\n\nНе забудь клацнути Пкм по вже існуючому Зв’язку перед тим, як розмістити новий — це налаштує їх на спільну мережу. Щоб скинути налаштування, просто скрафти Зв’язок окремо — це очистить його прив’язку.", @@ -1193,7 +1362,7 @@ "quests.development.explanation.task": "Гаразд, я прочитав цілих три сторінки", "quests.development.ulv.title": "&8ULV&r Схеми", "quests.development.ulv.subtitle": "", - "quests.development.ulv.desc": "На цій лінії ти можеш побачити парові, або &8&8ULV&r, еквіваленти.", + "quests.development.ulv.desc": "На цьому рядку ви можете побачити еквіваленти Пару або &8ULV&r.", "quests.development.lv.title": "&7LV&r Схеми", "quests.development.lv.subtitle": "", "quests.development.lv.desc": "Схеми вздовж цієї лінії — це &7LV&r, і вони взаємозамінні в рецептах.\n\n&cЕлектронні схеми&r є &oнайгіршим&r варіантом з точки зору витрат і зусиль, необхідних для виробництва, але десь потрібно починати.\n\n&eБазові інтегровані процесори&r виступають проміжною ланкою між &cЕлектронними схемами&r і &2Мікросхемними процесорами.&r\n\nНарешті, &2Мікросхемні процесори&r стануть найкращим варіантом для решти проходження.", @@ -1236,7 +1405,7 @@ "quests.development.hull_ev.desc": "Це лінія &9Нано&r схем.\n\nМожливо, тобі доведеться відправитися у &bкосмос&r для їх створення.\n\nПочинаючи з цього моменту, прогресія схем буде слідувати такому шаблону:\n\n&9-&r Процесор \n&9-&r Асамблер \n&9-&r Суперкомп'ютер \n&9-&r Основний модуль", "quests.development.hull_iv.title": "Створення на &1IV&r", "quests.development.hull_iv.subtitle": "GregTech отримує Quantum", - "quests.development.hull_iv.desc": "Ласкаво просимо до лінії &9Квантових&r схем.\n\nНа цьому етапі тобі варто інвестувати в &aPBI&r, оскільки &dРозширені SMD&r значно прискорять виробництво схем.", + "quests.development.hull_iv.desc": "Ласкаво просимо до лінії &9Квантових&r схем.\n\nНа цьому етапі тобі варто інвестувати в &aPBI&r, оскільки &dВдосконалені SMD&r значно прискорять виробництво схем.", "quests.development.hull_luv.title": "Створення на &dLuV&r", "quests.development.hull_luv.subtitle": "Кристалізація", "quests.development.hull_luv.desc": "Це лінія &9Кристалічних&r схем.\n\nВона заблокована за &3Фузією&r.", @@ -1336,7 +1505,7 @@ "quests.gregtech_energy.large_solar_t3.subtitle": "Максимальна потужність", "quests.gregtech_energy.large_solar_t3.desc": "Останній рівень — це &6Велика сонячна матриця MK III&r. Вона працює так само, як MK II, але її новий охолоджувач потребує додавання &aАргону&r та &bСилікатного аерогелю&r.\n\nТи вже знайомий із &bСилікатним аерогелем&r — ти використовував його у своєму &dРакетному рівні 3&r. \nВтім, на Місяці його набагато складніше виробляти, і тобі, можливо, доведеться постійно доставляти його з &aЗемлі&r.\n\nЯк вирішити цю логістичну задачу — автоматизацією чи міжпланетним транспортом — вирішувати тобі.\n\n&eВисокотехнологічна енергія&r потребує &cінфраструктури високого рівня&r. Плануй мудро!", "quests.gregtech_energy.solar_panel.subtitle": "Світло в темряві", - "quests.gregtech_energy.solar_panel.desc": "Сонячна панель стане твоїм першим джерелом енергії на Місяці.\n\nВона генерує 64 EU/t протягом дня, але варто пам’ятати, що насправді виробляє RF — тому тобі знадобиться Конвертер для перетворення енергії в EU.\n\nМожна використовувати один &bMV-конвертер&r для двох Сонячних панелей або &6HV-конвертер&r — для чотирьох.", + "quests.gregtech_energy.solar_panel.desc": "Сонячна Панель буде вашим першим джерелом енергії на Місяці.\n\nВдень вона виробляє 32 EU/t, але пам’ятайте, що фактично генерує RF, тож знадобиться Конвертер, щоб перетворити його на EU.\n\nВи можете використати один &bMV Конвертер&r для до 2 Сонячних Панелей або &6HV Конвертер&r для до 4 Панелей.", "quests.gregtech_energy.storage.title": "Збереження Енергії", "quests.gregtech_energy.storage.subtitle": "Треба ж десь подіти всю цю енергію", "quests.gregtech_energy.storage.desc": "Зберігання енергії — одна з фундаментальних засад енергетичної системи в GregTech.\n\nЧому це так? Бо навіть найпотужніші генератори не здатні підтримувати стабільну подачу при запуску великого крафту — особливо на пізніх етапах гри.\n\nЩоб впоратися з цим, GregTech пропонує низку рішень для зберігання астрономічних обсягів EU. Такі сховища працюють як буфер між генерацією енергії та машинами, які її поглинають під час складних операцій.\n\nЧи то ти готуєшся до запуску реактора термоядерного синтезу, ВХР чи ланцюга крафтів масштабу HV–IV, резервний запас енергії стане ключем до стабільності.\n\nНе недооцінюй силу хорошої батареї — саме вона може врятувати твою базу від блекауту у критичний момент.", @@ -1441,14 +1610,14 @@ "quests.high_voltage.circuit_assembler.title": "HV Збирач схем", "quests.high_voltage.circuit_assembler.desc": "Наступний &3Збирач схем&r. Цей рівень Збирача схем потрібен лише для одного типу схем — твого першого &aМейнфрейму&r. Можливо, ти використаєш його лише один раз, перед переходом до &5EV Збирача схем&r.\n\nМожеш відкласти його до &5EV&r або просто використати для пришвидшеного складання схем.", "quests.high_voltage.microprocessor_mainframe.title": "Мейнфрейми — це перші IV схеми!", - "quests.high_voltage.microprocessor_mainframe.desc": "Перша &1IV&r схема. Вітаємо з досягненням цього етапу!\n\nВона знадобиться, коли ти перейдеш до &5EV&r, або ж можеш використати її вже зараз для створення &aПокращеного нагрудника нанокостюма&r — значного апгрейду твого реактивного ранця!\n\n&l&3Лор:&r&o Оригінальна текстура для Мейнфреймів була взята з зображення IBM zEnterprise mainframe.", + "quests.high_voltage.microprocessor_mainframe.desc": "Перша &1IV&r схема. Вітаємо з досягненням цього етапу!\n\nВона знадобиться, коли ти перейдеш до &5EV&r, або ж можеш використати її вже зараз для створення &aВдосконаленого нагрудника нанокостюма&r — значного апгрейду твого реактивного ранця!\n\n&l&3Лор:&r&o Оригінальна текстура для Мейнфреймів була взята з зображення IBM zEnterprise mainframe.", "quests.high_voltage.cleanroom.title": "Чиста кімната", "quests.high_voltage.cleanroom.subtitle": "Вони посадили мене в кімнату... в чисту кімнату", "quests.high_voltage.cleanroom.desc.1": "&3Чиста кімната&r — це порожній багатоблок без забруднень. Надалі більшість нових &aрецептів, пов’язаних зі схемами&r, а також деякі унікальні блоки, як-от &3Обшивка для термоядерного реактора&r, потрібно буде запускати в машинах всередині чистої кімнати.\n\nЇї створення стане справжнім випробуванням для твоєї автоматизації &aПоліетилену&r — адже доведеться виготовити багато &dПласкриту&r та/або &dСкла для чистої кімнати&r.\n\nМи почнемо з &a5x5x5&r чистої кімнати, але варто збільшити її розмір, щойно відчуєш тісноту.", "quests.high_voltage.cleanroom.desc.2": "&l&3Лор:&r&o Чиста кімната походить з GregTech 5, але, як це часто буває, реалізація в GT5 була значно жорсткішою. Рецепти запускались незалежно від рівня чистоти, але мали %% шанс завершення, що дорівнював чистоті кімнати. Це призводило до численних випадкових втрат предметів.\n\n&oБільше того, якщо в Чистій кімнаті виникала проблема з обслуговуванням, рівень чистоти обмежувався 90%%, що означало втрату 10%% предметів.\n\n&oУ GTCEu Чиста кімната &6ніколи не анулює&f результати рецептів.", "quests.high_voltage.prospector.title": "HV Розвідник", "quests.high_voltage.prospector.desc.1": "Цей Розвідник має &6більший радіус дії&r, ніж його &7LV&r-версія.\n\nЯкщо ти зробиш присідання та клацнеш правою кнопкою миші з Розвідником у руці, його режим зміниться на &6Режим пошуку рідин&r. У цьому режимі буде показано базовий &dвихід&r рідинних жил, а також рівень їх заповнення.\n\nЦе буде надзвичайно корисно для пошуку &9Гелію-3&r та &9Жил у корінній породі&r на Місяці.", - "quests.high_voltage.prospector.desc.2": "&9Нагадування:&r Вихід &3Рідинної бурової установки&r прямо пропорційний “заповненості” жили. Якщо вона занадто низька, вихід за замовчуванням буде визначено в конфігурації CEu.\n\n&9Порада:&r Коли заповненість падає нижче 30%% (груба оцінка), варто розглянути можливість переходу до іншої жили задля ефективності витрат енергії. Можливо, тобі буде цікаво перейти на &3Покращену рідинну бурову установку&r на рівні &5EV&r — вона не лише значно підвищує вихід, але й зменшує швидкість виснаження жили!\n\n&cУвага:&r Через баг відображення в Розвіднику може бути зміщене на один чанк, тому уникай розміщення установки в кутах рідинної жили — інакше можеш почати качати не ту рідину!", + "quests.high_voltage.prospector.desc.2": "&9Нагадування:&r Вихід &3Рідинної бурової установки&r прямо пропорційний “заповненості” жили. Якщо вона занадто низька, вихід за замовчуванням буде визначено в конфігурації CEu.\n\n&9Порада:&r Коли заповненість падає нижче 30%% (груба оцінка), варто розглянути можливість переходу до іншої жили задля ефективності витрат енергії. Можливо, тобі буде цікаво перейти на &3Вдосконалену рідинну бурову установку&r на рівні &5EV&r — вона не лише значно підвищує вихід, але й зменшує швидкість виснаження жили!\n\n&cУвага:&r Через баг відображення в Розвіднику може бути зміщене на один чанк, тому уникай розміщення установки в кутах рідинної жили — інакше можеш почати качати не ту рідину!", "quests.high_voltage.fluorine.title": "Фтор", "quests.high_voltage.fluorine.subtitle": "Чи почистив ти зуби сьогодні?", "quests.high_voltage.fluorine.desc": "Фтор — це найрідкісніший газ, який можна отримати шляхом електролізу в цій грі.\n\nЙого можна добути з &aЛепідоліту&r, &aБастназіту&r та &aСлюди&r, але найкращим джерелом є &aТопаз&r.", @@ -1488,7 +1657,7 @@ "quests.high_voltage.smd_components_2.desc": "&aПлатина&r (потрібна для SMD Діодів) має власний квест у вкладці &5EV&r. Але ти також можеш отримати Платину безпосередньо з платинового жилкового родовища або через обробку в &3Хімічній промивачці&r.\n\n&l&3Лор:&r&o SMD Індуктори вперше з’являються в GTCEu. Це робить систему компонентів схем більш узгодженою та зручною — тепер кожен тип має SMD-аналог.", "quests.high_voltage.hv_macerator.title": "Універсальний Подрібнювач", "quests.high_voltage.hv_macerator.subtitle": "Подрібнення руд із побічними продуктами", - "quests.high_voltage.hv_macerator.desc.1": "&3HV Подрібнювач&r нарешті відкриває більше слотів, які видно в JEI. Тепер доступні &9усі&r слоти.\nЦе також дозволяє отримувати &6унікальні побічні продукти&r при подрібненні &dТермально &dЦентрифугованої Руди&r.\n\nПодрібнення руд коштує &a32 EU/t&r з &5двома оверклоками&r, що дозволяє використовувати цю машину на &7LV&r лініях — дуже, дуже зручно.\n\nПопри значні покращення, які ця машина забезпечує, все одно не завжди варто налаштовувати розширену обробку для кожної руди. Енергія та час — усе ще важливі фактори!", + "quests.high_voltage.hv_macerator.desc.1": "&3HV Подрібнювач&r нарешті відкриває більше слотів, які видно в JEI. Тепер доступні &9усі&r слоти.\nЦе також дозволяє отримувати &6унікальні побічні продукти&r при подрібненні &dТермально &dЦентрифугованої Руди&r.\n\nПодрібнення руд коштує &a32 EU/t&r з &5двома розгонами&r, що дозволяє використовувати цю машину на &7LV&r лініях — дуже, дуже зручно.\n\nПопри значні покращення, які ця машина забезпечує, все одно не завжди варто налаштовувати розширену обробку для кожної руди. Енергія та час — усе ще важливі фактори!", "quests.high_voltage.hv_macerator.desc.2": "&l&3Лор:&r&o У GregTech 5u &6HV&r&o Подрібнювач мав лише два слоти. Ех... ми й не збиралися використовувати той Кам’яний пил, якщо чесно...", "quests.high_voltage.ammonia.title": "Аміак", "quests.high_voltage.ammonia.desc": "&aАмоніак&r є &dнеобов’язковим&r на рівні &6HV&r.\n\nЙого можна використати для виробництва:\n&9-&r Азотної кислоти, хоча ми цього не рекомендуємо. \n&9-&r Ракетного пального, необхідного для покидання цієї планети. \n&9-&r Полібензімідазолу (оце вже скоромовка!) на рівні &1IV&r.\n\n\"Найменш болючий\" рецепт — у &3HV Хімічному Реакторі&r. Переконайся, що твоя &aВиробка Гідрогену&r (здебільшого з &aЕлектролізу води&r) достатня для покриття потреб.\n\n&aАмоніак&r також можна отримати як побічний продукт при обробці &dШламу Платинової Групи&r.", @@ -1524,7 +1693,7 @@ "quests.high_voltage.linked_quest_energy.task": "Переглянь розділ про енергетику", "quests.high_voltage.ev_machine_hull.title": "&5EV&r Машинний корпус", "quests.high_voltage.ev_machine_hull.subtitle": "Це вже половина всіх енергетичних рівнів у GregTech", - "quests.high_voltage.ev_machine_hull.desc": "Ну й досвід! Між &9Обробкою рутилу&r, &5Вакуумною камерою&r та &5Чистою кімнатою&r ти відкрив чимало нових механік.\n\nІ це чудово — бо, ймовірно, ти лише на півдорозі крізь модпак.\n\nЧи ступав ти вже на &fМісяць&r? Якщо ні — ми наполегливо радимо вирушити. Там ти зустрінеш &dключові механіки&r для пізніх етапів модпаку, відкриєш &bAE2&r і отримаєш доступ до &aбагатших жил руди&r.\n\nА якщо місячна подорож уже позаду — сподіваємось, твоя інфраструктура готова, бо настав час увійти в &5EV&r. Цей складний розділ познайомить тебе з &7ще більш просунутими системами&r і піднесе твою фабрику на новий рівень.", + "quests.high_voltage.ev_machine_hull.desc": "Ну й досвід! Між &9Обробкою рутилу&r, &5Вакуумною камерою&r та &5Чистою кімнатою&r ти відкрив чимало нових механік.\n\nІ це чудово — бо, ймовірно, ти лише на півдорозі крізь модпак.\n\nЧи ступав ти вже на &fМісяць&r? Якщо ні — ми наполегливо радимо вирушити. Там ти зустрінеш &dключові механіки&r для пізніх етапів модпаку, відкриєш &bAE2&r і отримаєш доступ до &aбагатших жил руди&r.\n\nА якщо місячна подорож уже позаду — сподіваємось, твоя інфраструктура готова, бо настав час увійти в &5EV&r. Цей складний розділ познайомить тебе з &7ще більш вдосконалими системами&r і піднесе твою фабрику на новий рівень.", "quests.high_voltage.250_iq.title": "250IQ", "quests.high_voltage.250_iq.subtitle": "Перестань обпалювати руки!", "quests.high_voltage.250_iq.desc.1": "Це гайд про те, як автоматично направити &lвсі&r твої Гарячі Злитки до &3Хімічної ванни&r, зберігаючи повну автоматизацію в ідеальному стані.\n\nДешевий варіант — використовувати фільтри та вручну додавати Гарячі Злитки по одному... але це ж так нудно! Давай краще оберемо веселий варіант.\n\nВстанови &aФільтр за тегом предмета&r на бік &3Хімічної ванни&r, відкрий його та встанови режим whitelist на -&e&l*hot_ingots*&r-.\n\nЗвідси ти можеш прокладати маршрути через &9будь-яку логістичну систему&r на свій вибір.", @@ -1563,6 +1732,29 @@ "quests.high_voltage.space_survival.title": "Затишок далеко від дому", "quests.high_voltage.space_survival.subtitle": "Більше, ніж просто шахтарський вимір", "quests.high_voltage.space_survival.desc": "Якщо ти ще не ознайомився, обов’язково переглянь розділ завдань &3Поради — Космічне виживання&r! У ньому є вся необхідна інформація для створення повноцінної колонії на Місяці.", + "quests.high_voltage.hypertubes.title": "Гіперканал", + "quests.high_voltage.hypertubes.subtitle": "Майбутнє вже тут, старий", + "quests.high_voltage.hypertubes.desc": "Шукаєте крутіший спосіб швидко пересуватися по базі? Спробуйте &3Гіпертруби&r! Просто станьте біля одного кінця, і вас затягне та перенесе на інший, при цьому вони можуть йти в будь-якому напрямку!\n\nДля роботи потрібні Стрес Одиниці, але якщо у вас більше немає установки Create, можна перетворити EU в SU за допомогою GregTech Конвертера Енергії та Електродвигуна з &9&oCreate Crafts and Additions&r.", + "quests.high_voltage.wand.title": "Чарівна Паличка Нескінченності", + "quests.high_voltage.wand.subtitle": "Ультимативний інструмент Skyblock", + "quests.high_voltage.wand.desc": "Ця паличка робить те саме, що й інші, але з &3без зносу&r. Любите будувати високі будівлі або покривати акри первозданної трави? Тоді це саме ваш інструмент!\n\nМайте на увазі, що Building Gadgets з’явиться незабаром у &5EV&r, пропонуючи ще потужніші інструменти для завзятих будівельників.", + "quests.high_voltage.moon_harvester.title": "Місячний Жнивар", + "quests.high_voltage.moon_harvester.subtitle": "Пам’ятаєте Глибинний Бур?", + "quests.high_voltage.moon_harvester.desc": "&7Місяць&r — ваш перший крок у світ &eнескінченних руд&r, але він повільний.\nВам доведеться збирати різні види &bПилу Реголіту&r, кожен з яких можна отримати лише в певному біомі.\nДля цього ви будете використовувати &6Місячний Жнивар&r. Є два важливих моменти, про які слід пам’ятати при його використанні:\n\n• Потрібен &9Ввідний Люк&r, щоб встановити правильну & мікросхему&r.\n• Підтримує &eкотушки&r так само, як &6Cracker&r — чим вищий рівень котушок, тим більша економія енергії.\nЦе особливо корисно при зборі Реголіту далеко від вашої бази.\n\nЗвісно, необробленого пилу недостатньо.\nПотрібна &aневелика лінія обробки&r, щоб витягти ресурси з пилу Реголіту. Тож обов’язково привезіть їх на вашу &7Місячну базу&r для обробки.", + "quests.high_voltage.regolith_vapor.title": "Випарний Реголіт", + "quests.high_voltage.regolith_vapor.subtitle": "Невеликий пристрій, щоб перетворювати пил у руди", + "quests.high_voltage.regolith_vapor.desc": "Щоб переробити ваш &bПил Реголіту&r, вам знадобиться &bВипарний Реголіт&r — і його налаштування трохи складніше.\n\nОсь що вам буде потрібно:\n\n• &7Місячний Пісок&r — можна отримати нескінченно за допомогою &6Глибинного Бура&r.\n• &eДіоксид Карбону&r — виробляється з &9Кисню&r та &8Вугільного Пилу&r (легко, завдяки нескінченному &bАлмазному Пилу&r, який ви отримаєте).\n• &9Азот&r — добувається через вирощування &dПлодів Хоруса&r.\n\nПорада: можна пропускати ваш &9Кисень&r через &bДіоксид Кремнію&r, що також дає постійний бонус у вигляді &eПилу Кремнію&r — дуже корисний побічний продукт.", + "quests.high_voltage.regolith_vapor.task": "Зрозуміло", + "quests.high_voltage.regolith_dust.title": "Реголіт у кожному біомі", + "quests.high_voltage.regolith_dust.subtitle": "Три мушкетери", + "quests.high_voltage.regolith_dust.desc": "Ви можете отримати &b4 різні типи Пилу Реголіту&r, кожен з яких дає унікальні ресурси.\n\nКожен тип прив’язаний до певного &7глибокого біому&r на &7Місяці&r. Майте на увазі: ці біоми не з’єднані між собою, тож доведеться трохи досліджувати територію.\n\nЗнайти потрібний біом значно легше за допомогою &aXaero Map&r — використовуйте його, щоб швидко визначити, де можна збирати кожен тип пилу.", + "quests.high_voltage.dusty_ores.title": "Пилові Руди", + "quests.high_voltage.dusty_ores.subtitle": "Ви говорите про подальшу переробку руди?", + "quests.high_voltage.dusty_ores.desc": "&7Пилова Руда&r — це ексклюзивний тип руди з &dTerraFirmaGreg&r. Усі &cнескінченні руди&r, які ти здобудеш на &7Місяці&r — а згодом і на &4Марсі&r — з’являтимуться у вигляді Пилових Руд.\n\nНа цьому етапі єдиний спосіб їх обробки — використання &6Центрифуги&r для вилучення пилу.\n\nДосить обмежено, правда? Не хвилюйся — після прибуття на &eВенеру&r ти відкриєш значно &eкращі варіанти обробки&r!\n\nПорада: вже зараз можна пришвидшити процес за допомогою &6Великого Хімічного Реактора&r. Завдяки &bІдеальному Розгону&r він обробляє Пилові Руди набагато швидше, ніж базовий рецепт.", + "quests.high_voltage.dusty_ores.task": "Усі Пилові Руди Місяця", + "quests.high_voltage.final_dust.title": "Нескінченні Пили", + "quests.high_voltage.final_dust.subtitle": "Нарешті нескінченні ресурси", + "quests.high_voltage.final_dust.desc": "Це всі &cнескінченні ресурси&r, які ти можеш отримати на &7Місяці&r до відкриття більш вдосконалої обробки, доступної на &eВенері&r.\n\nЗ ними в тебе буде все необхідне, щоб продовжувати прогрес у &dGregTech&r — особливо для забезпечення &aобслуговування&r своєї Місячної Бази.\n\nЦі ресурси необхідні для:\n• Створення &dкомпонентів AE2&r\n• Виробництва &cнескінченного&r запасу &6Боєприпасів для Рельсотрона&r\n\nПасивна автоматизація тепер у твоїх руках — зроби крок і втіль це в життя!", "quests.low_voltage": "&7LV&r – Низька напруга", "quests.low_voltage.subtitle": "Приборкай електрику та розпочни свою подорож у GregTech", "quests.low_voltage.lv_machine_hull.title": "Твій другий корпус машини", @@ -1583,14 +1775,14 @@ "quests.low_voltage.lv_steam_turbine.subtitle": "Ви повинні сконструювати додаткові турбіни", "quests.low_voltage.lv_steam_turbine.desc.1": "&3Парова турбіна&r — один із небагатьох генераторів, які ти можеш реально використовувати на рівні &7LV&r. &2Пізніше ти відкриєш цікавіші варіанти енергії&r, такі як природний газ або паливо. \n\nПри подачі пари турбіна вироблятиме EU у співвідношенні &d2 пари = 1 EU&r.", "quests.low_voltage.lv_steam_turbine.desc.2": "Якщо ти використовуєш одну &3Парову Турбіну&r, тобі потрібен лише &a1x Олов’яний Кабель&r. З іншого боку, якщо ти переходиш на &32 Парові Турбіни&r, тобі слід використовувати &a2x Олов’яні Кабелі&r — інакше вони можуть &cзгоріти&r. \n\nЦе відбувається через механіку &9Амперажу&r... але це буде пояснено пізніше, щоб ти міг насолоджуватися грою. Не хвилюйся!", - "quests.low_voltage.lbb.title": "Великий бронзовий котел", + "quests.low_voltage.lbb.title": "Великий Бронзовий Котел", "quests.low_voltage.lbb.subtitle": "Бум, бум, бум, бум", - "quests.low_voltage.lbb.desc.1": "&3Великий котел&r — це &6необов’язковий&r потужний варіант Малих котлів. Він працює на твердому або рідкому паливі. \n\nЯкщо ти хочеш виробляти енергію на основі пари, це альтернатива паровому двигуну Create. Майбутні варіанти енергопостачання описані в розділі &bMV&r. \n\nНа даний момент, через баг у GTCEu, ця машина ніколи не вибухає, але тобі варто налаштувати її так, щоб вона ніколи не залишалася без води, як і твої Малі котли, щоб вона не вибухнула, коли баг буде виправлений.", + "quests.low_voltage.lbb.desc.1": "&3Великий Котел&r — це &6необов’язковий&r варіант для справжніх велетнів, альтернатива Малим Котлам. Працює на твердому або рідкому паливі.\n\nЯкщо ви хочете виробляти енергію на основі Пари — це альтернатива до парового двигуна з Create. Подальші варіанти генерації енергії наведені в розділі &bMV&r.\n\nОбов’язково налаштуйте його так, щоб він ніколи не залишався без води, як і ваші Малі Котли, інакше він &cвибухне&r!.", "quests.low_voltage.lbb.desc.2": "Після повного нагрівання &3LBB&r виробляє 800 пари за тик, що після конверсії дає &d400EU/t&r, або 12,5 базових парових турбін. Ця (відносно!) величезна потужність має ціну у вигляді &lвеликої&r кількості пального. &5З огляду на це&r, GUI дозволяє тобі &9знизити потужність&r котла до 25 відсотків, що дає 200 пари за тик. Це &d100EU/t&r, або трохи більше 3 базових парових турбін. \n\nМи рекомендуємо відкласти створення цього котла, поки ти не будеш готовий живити свою ЕДП.", - "quests.low_voltage.lbb.desc.3": "У TerraFirmaGreg у тебе є кілька варіантів палива. Можна використати Шланговий Шків, щоб витягнути лаву з глибокого підземного озера, або створити ферму дерев для отримання деревного вугілля та креозоту. Нарешті, існують величезні поверхневі поклади кам’яного вугілля, які можна добувати за допомогою автоматичних шахтарських машин і перетворювати на кокс, отримуючи значно більше креозоту, ніж із деревного вугілля.", + "quests.low_voltage.lbb.desc.3": "У TerraFirmaGreg у вас є кілька варіантів палива. Ви можете використати Шланговий Шків, щоб відкачати лаву з глибокого підземного озера, або організувати лісопосадку з подачею деревини в коксову піч для отримання деревного вугілля та креозоту. Нарешті, існують величезні вугільні жили на поверхні, які можна розробляти за допомогою автоматизованих бурів і переробляти в кокс, отримуючи значно більше креозоту, ніж із деревного вугілля. \n\nЯкщо ви оберете шлях із лісопосадкою, вам знадобиться три коксові печі, щоб забезпечити роботу ВБК на повній потужності.", "quests.low_voltage.lv_polariser.title": "Базовий поляризатор", "quests.low_voltage.lv_polariser.subtitle": "Поляризатор поляризує!", - "quests.low_voltage.lv_polariser.desc": "Одна з найдешевших — якщо не найдешевша — &7LV&r машина. Використовуй її для створення &6Магнітних Стрижів без Редстоуна&r для своїх моторів. Щоразу, коли ти починаєш масове виробництво моторів, ця машина зекономить тобі цілі стопки Редстоуна.", + "quests.low_voltage.lv_polariser.desc": "Одна з найдешевших — якщо не найдешевша — &7LV&r машина. Використовуй її для створення &6Магнітних Стержнів без Редстоуна&r для своїх моторів. Щоразу, коли ти починаєш масове виробництво моторів, ця машина зекономить тобі цілі стопки Редстоуна.", "quests.low_voltage.link_chapter.title": "Поясніть мені енергію", "quests.low_voltage.link_chapter.subtitle": "Є цілий розділ, присвячений енергії", "quests.low_voltage.link_chapter.desc": "Ознайомитися з розділом можна, натиснувши тут", @@ -1738,7 +1930,7 @@ "quests.low_voltage.1_mv_circuit.desc": "Ну що... вже маєш Алюмінієві Злитки? \n\nКожна Електрична Епоха має Схеми, що відповідають її рівню. Гарна Електронна Схема — це &dперша MV Схема&r, яку ти можеш створити з трьох рівнів &bMV&r Схемотехніки. \n\nЗавжди шукай дешевші способи створення схем — нові набори рецептів стають доступними щоразу, коли ти створюєш новий рівень &2Збирача Схем&r. Зручно, що цей рівень Схем відкриває один прямо зараз! Його рецепти набагато дешевші, ніж у Деплойерів. \n\n&6Маючи це та Алюміній, ти отримаєш доступ до MV Машин.&r \n\nЯкщо тобі складно розібратися у хаосі схем GregTech, переглянь розділ &6Таблиця Прогресу&r.", "quests.low_voltage.lv_circuit_assembler.title": "Збирач Схем", "quests.low_voltage.lv_circuit_assembler.subtitle": "Сподіваюся, твоя перша витрата на MV Схему", - "quests.low_voltage.lv_circuit_assembler.desc.1": "Відтепер усі Схеми слід створювати у &3Збирачі Схем&r. Використовуй його зараз, щоб насолодитися &6набагато дешевшими LV та MV схемами&r. \n\nКожного разу, коли ти оновлюєш рівень &3Збирача Схем&r, ти зможеш створювати більш &dпросунуті&r варіанти схем. Вони використовуватимуть &cскладні&r та &mіноді&r незнайомі інгредієнти, але загалом будуть ефективнішими у створенні.", + "quests.low_voltage.lv_circuit_assembler.desc.1": "Відтепер усі Схеми слід створювати у &3Збирачі Схем&r. Використовуй його зараз, щоб насолодитися &6набагато дешевшими LV та MV схемами&r. \n\nКожного разу, коли ти оновлюєш рівень &3Збирача Схем&r, ти зможеш створювати більш &dдосконалі&r варіанти схем. Вони використовуватимуть &cскладні&r та &mіноді&r незнайомі інгредієнти, але загалом будуть ефективнішими у створенні.", "quests.low_voltage.lv_circuit_assembler.desc.2": "&l&3Лор:&r&o Збирач Схем з'являвся і зникав у різних версіях GregTech. У GT5 його не було, але він був повторно доданий у GT5 Unofficial. GTCE вирішив не переносити його, і боротьба за його включення триває у GTCEu.", "quests.low_voltage.lv_greenhouse.title": "Електрична теплиця", "quests.low_voltage.lv_greenhouse.subtitle": "Сила KubeJS", @@ -1756,7 +1948,7 @@ "quests.low_voltage.lv_glue.desc": "Тепер ти можеш &3центрифугувати&r &aЛипку Смолу&r, що дасть тобі &aКлей&r у рідкій формі (та менш корисний Plantball, &6поки що&r). Почни виробництво Клею заздалегідь! Ти можеш використовувати його для створення &6дешевших Резисторів&r, а також &6дешевших Друкованих Плат&r у &3Збирачі&r (і він буде особливо корисним &oв найближчому майбутньому&r). \n\n&eПримітка:&r Ти також можеш центрифугувати TFC's &aКлей&r або &aСмолу Хвойних&r, що буде простішим варіантом!", "quests.low_voltage.lv_cutter.title": "Базовий Різак", "quests.low_voltage.lv_cutter.subtitle": "Різак... ріже...", - "quests.low_voltage.lv_cutter.desc": "Поки що тобі слід використовувати &9Воду&r для його рецептів, замість того щоб намагатися отримати Мастило. \n\n&3Різальна Машина&r також відкриває можливість перетворення &6Стержнів у чотири Болти&r. \n\nЦя машина — єдиний спосіб отримати &dПластини з Каменів&r, які потрібні для створення Фільтрів, а отже, і &3Збирача Газу&r.", + "quests.low_voltage.lv_cutter.desc": "Поки що варто використовувати &9Воду&r для її рецептів замість спроб отримати Мастило.\n\nЯкщо в тебе ще немає цієї машини, вона також розрізає &6Стержні на чотири Болти&r.\n\nЦя машина — єдиний спосіб отримати &dПластини з Коштовного Каменю&r, які потрібні для створення Фільтрів, а отже й &3Газозбирача&r.", "quests.low_voltage.lv_cutter.task": "Будь-який Різак", "quests.low_voltage.lv_gas_collector.title": "Базовий Газовий Колектор", "quests.low_voltage.lv_gas_collector.subtitle": "Це захопить твій подих", @@ -1793,7 +1985,7 @@ "quests.low_voltage.mold_plate.desc": "Припини марнувати час із &6сплавною плавильною піччю&r. Тобі знадобиться багато &6гумових листів&r, а пізніше ти також використовуватимеш їх для інших видів пластмас. \n\nМожливо, ти думаєш, що можна використовувати екструдер для створення гумових листів, але &6твердотільний рідинний формувач&r може набагато більше, \nтоді як екструдер майже не має сенсу до &bMV&r.", "quests.low_voltage.cupronickel_ingot.title": "Злитки мідно-нікелевого сплаву", "quests.low_voltage.cupronickel_ingot.subtitle": "Це сплав", - "quests.low_voltage.cupronickel_ingot.desc": "&7Велика частина прогресу в GregTech обертається навколо отримання нових матеріалів,\nякі ти використовуватимеш для покращення своїх машин або розблокування вдосконалених компонентів.&r\n\nПершим сплавом, з яким ти зіткнешся, буде &bмідно-нікелевий&r — початок довгої подорожі.\nЦей матеріал використовується для покращення твоєї &6електричної доменної печі&r — важливого кроку в індустріальному розвитку.\n\nНа щастя, цей перший етап досить простий: базовий &7сплавоплавильник Lv&r впорається із завданням.\nТож навіть якщо рецепт вимагає &b128 мідно-нікелевого&r — не хвилюйся, це простіше, ніж здається!&r\n\nЗгодом їхні аналоги стануть набагато складнішими, тож насолоджуйся простотою, поки вона триває!", + "quests.low_voltage.cupronickel_ingot.desc": "&7Велика частина прогресу в GregTech обертається навколо отримання нових матеріалів,\nякі ти використовуватимеш для покращення своїх машин або розблокування вдосконалених компонентів.&r\n\nПершим сплавом, з яким ти зіткнешся, буде &bМідно-нікелевий&r — початок довгої подорожі.\nЦей матеріал використовується для покращення твоєї &6Електричної Доменної Печі&r — важливого кроку в індустріальному розвитку.\n\nНа щастя, цей перший етап досить простий: базова &7Плавильня Сплавів LV&r впорається із завданням.\nТож навіть якщо рецепт вимагає &b128 Мідно-нікелевого&r — не хвилюйся, це простіше, ніж здається!&r\n\nЗгодом їхні аналоги стануть набагато складнішими, тож насолоджуйся простотою, поки вона триває!", "quests.low_voltage.cupronickel_coil.title": "Купронікелеві котушки", "quests.low_voltage.cupronickel_coil.subtitle": "Перша нагрівальна спіраль", "quests.low_voltage.cupronickel_coil.desc": "Підготуй &a128 мідно-нікелевого&r, &a32 бронзи&r та &a16 олов’яного сплаву&r, щоб створити нагрівальні котушки для своєї першої електричної доменної печі.\n\nЦе все ще менше половини (!) вартості всієї ЕДП у сировині. Тобі також знадобиться приблизно стак інвару та сталі, тож вирушай на видобуток.\n\nМідно-нікелеві котушки дозволять ЕДП виконувати рецепти до &d1 800K&r (без урахування бонусів напруги). Це досить гаряче, якщо нас запитати.\n\n&6Підручник про котушки в вкладці &lЕнергія GregTech&r&6 — зазирни, щоб дізнатися більше!&r", @@ -1842,19 +2034,19 @@ "quests.medium_voltage.electrolyzer.subtitle": "Ми дісталися до MV, і, ну...", "quests.medium_voltage.electrolyzer.desc.1": "&bЦей предмет має вигляд знайомого&r — ти вже бачив його раніше.\n&2Ми наполегливо рекомендуємо скрафтити його якомога швидше,&r адже він відкриє широкий спектр нових джерел &7Алюмінію&r.\n\nДо цього моменту єдиним способом було &9електролізувати сапфір&r, щоб отримати &7Алюмінієвий пил&r.\nАле з &bMV&r Електролізером відкривається цілий новий світ ресурсів.", "quests.medium_voltage.electrolyzer.desc.2": "&6Ось кілька ключових матеріалів, на які варто звернути увагу:&r\n&9Рубін&r — дає і &7Алюміній&r, і &5Хром&r.\n&9Піроп&r — часто трапляється поруч із жилами сапфіру.\n&9Лепідоліт&r — пропонує щедрий набір цінних побічних продуктів.\n&9Содаліт&r — містить &3Хлор&r і &bКремній&r.\n&9Топаз&r — дає і &3Фтор&r, і &7Алюміній&r у значних кількостях.\n\n&2І це лише початок!&r Використовуй &aEMI&r, щоб дослідити ще більше варіантів — обіцяємо, там є що відкривати.\n\n&cДо речі:&r електроліз глини тепер доступний лише після &6HV&r.\n&8І ми не шкодуємо.&r", - "quests.medium_voltage.mv_extruder.title": "Розширений Екструдер", + "quests.medium_voltage.mv_extruder.title": "Вдосконалений Екструдер", "quests.medium_voltage.mv_extruder.subtitle": "Найбільше оновлення, яке ти зробиш", "quests.medium_voltage.mv_extruder.desc": "Ми &lЩИРО&r сподіваємося, що ти &cніколи&r не створював &7LV&r Екструдер, тому що тільки &bMV&r Екструдер справді корисний. Якщо ти все ж зробив це, негайно &aперероби його&r через Дугопіч. \n\nЕкструдер формує тверді матеріали в (майже!) будь-яку форму, використовуючи &aЗлитки&r. Це чудовий спосіб зменшити кількість мікрокрафту, а також зберегти високий коефіцієнт перетворення. \n\nЕкструдер може створювати &6Болти&r, &6&6Малі Шестерні&r, &6Шестерні&r та &6&6Кільця&r з максимальною ефективністю в один крок! \n\nТобі також може сподобатися використовувати його для &dТруб&r, &dДовгих Стержнів&r та &dРоторів&r.", - "quests.medium_voltage.mv_chemical_reactor.title": "Розширений Хімічний Реактор", + "quests.medium_voltage.mv_chemical_reactor.title": "Вдосконалений Хімічний Реактор", "quests.medium_voltage.mv_chemical_reactor.subtitle": "Сильніше, краще, швидше", "quests.medium_voltage.mv_chemical_reactor.desc": "Ти вже знаєш про &dХімічний Реактор&r з &7LV Глави&r—але ось коротке нагадування. \n\nНа рівні &bMV&r ти відкриваєш &aнові рецепти&r і також отримуєш можливість &aперевищувати швидкість LV рецептів&r. Це означає, що вони можуть працювати &aвдвічі швидше&r, але споживатимуть &eв 4 рази більше енергії&r. Тобі вирішувати, чи варта така угода. \n\nАле це не єдина причина для створення &bMV Хімічного Реактора&r. Якщо ти обрав &dорганічну хімію&r, тобі знадобиться цей реактор для запуску рецепту &dЕтилену&r, який використовує &dСірчану Кислоту&r та &dЕтанол&r—цей процес потребує &bMV енергії&r. \n\nУ будь-якому випадку, це надійна машина, і вона не надто дорога. Побудуй її, коли матимеш трохи вільного часу.", - "quests.medium_voltage.mv_mixer.title": "Розширений Змішувач", + "quests.medium_voltage.mv_mixer.title": "Вдосконалений Змішувач", "quests.medium_voltage.mv_mixer.subtitle": "Змішування більш складних сплавів", "quests.medium_voltage.mv_mixer.desc": "Якщо ти хочеш зануритися в &bMV&r, почни тут. \n\nПил, створений у &3MV Змішувачі&r, має велику корисність.", "quests.medium_voltage.mv_energy.title": "Генерація електроенергії в MV", "quests.medium_voltage.mv_energy.subtitle": "Скоро стане жорстко", "quests.medium_voltage.mv_energy.desc.1": "Привіт і ласкаво просимо до &bMV Виробництва Енергії&r. \n\nУ цьому завданні ми розглянемо різні варіанти, які допоможуть підтримувати роботу твоїх &bMV машин&r безперебійно. \n\nМи не будемо розглядати це в кожному розділі, тому настійно рекомендуємо тобі &aпрочитати спеціальний розділ про Енергію GregTech&r, щоб глибше зрозуміти, як усе працює. \n\nА поки що ось твої &aтри основні варіанти&r: \n\n&8- &bВикористовуй MV Генератор&r для прямого виробництва &bMV-рівня енергії&r. \n\n&8- &bПідвищуй потужність &7LV&r за допомогою трансформаторів&r, з &e4:1 співвідношенням&r між &7LV&r та &bMV&r. \n\n&8- &bКонвертуй RF&r за допомогою &dАльтернатора&r, щоб отримати &bMV енергію&r безпосередньо\n\n", - "quests.medium_voltage.mv_energy.desc.2": "Генератори вищого рівня збільшуватимуть споживання палива пропорційно до їхньої швидкості генерації, зберігаючи тривалість використання палива та конкретну кількість енергії від нього незмінними. &3Розширена Парова Турбіна&r використовуватиме &d5,120 мБ Пара&r за секунду, що еквівалентно &d256 мБ/т&r. \n\nОтримай &eбудь-який&r з генераторів, щоб завершити це завдання, але тобі може бути зручніше почати з &3Розширеної Парової Турбіни&r.", + "quests.medium_voltage.mv_energy.desc.2": "Генератори вищого рівня збільшуватимуть споживання палива пропорційно до їхньої швидкості генерації, зберігаючи тривалість використання палива та конкретну кількість енергії від нього незмінними. &3Вдосконалена Парова Турбіна&r використовуватиме &d5,120 мБ Пара&r за секунду, що еквівалентно &d256 мБ/т&r. \n\nОтримай &eбудь-який&r з генераторів, щоб завершити це завдання, але тобі може бути зручніше почати з &3Вдосконалої Парової Турбіни&r.", "quests.medium_voltage.mv_energy.desc.3": "Є кілька нових варіантів енергопостачання для &bMV&r. Вибери Генератори та натисни &4U&r, щоб побачити, які палива належать до &aЗгоряння&r або &aГазу&r. \n\nЗавдання у верхньому лівому куті цього розділу присвячені цінним варіантам енергопостачання. \n\nЯкщо ти залишишся на &9Парі&r для генерації енергії, тобі, ймовірно, знадобиться &3Великий Котел&r.", "quests.medium_voltage.mv_energy.desc.4": "&3Трансформатори&r дозволяють безпечно підвищувати та знижувати напругу між рівнями. Вони перетворюють отриману енергію в еквівалентну кількість енергії на 1 рівень напруги вище або нижче від вхідної напруги. \n\nОкрім роботи машин на різних рівнях напруги, Трансформатори корисні для передачі енергії на великі відстані, оскільки втрати в кабелях менші при вищих напругах. Як і в реальному житті!", "quests.medium_voltage.mv_energy.desc.5": "Трансформатори мають 5 сторін низької напруги та 1 сторону високої напруги. \n\n&9Звичайний&r Трансформатор може виконувати лише перетворення 1A <-> 4A, але &9Регульовані&r Трансформатори можна змінювати між 1A <-> 4A, 2A <-> 8A, 4A <-> 16A та 16A <-> 64A. \n\nВикористовуй &aМ'який Молот&r, щоб змінювати напрямок перетворення, та &aВикрутку&r на Регульованих Трансформаторах, щоб змінювати ампераж. \n\nТрансформатори вищого рівня потребуватимуть &9Котушки&r.", @@ -1884,7 +2076,7 @@ "quests.medium_voltage.mv_oilsands.title": "Симулятор Америки", "quests.medium_voltage.mv_oilsands.subtitle": "Цей квест був спонсорований Збройними Силами США", "quests.medium_voltage.mv_oilsands.desc": "Під землею ти можеш натрапити на чисті рудні жили нафтових пісків. Ти можеш &3центрифугувати&r пил, щоб отримати &aНафту&r. \n\n&9&lПримітка:&r&l Нафтовий шлях — один із варіантів отримання &9&lЕтилену&r&l. Інші шляхи включають використання Етанолу.&r \n\nНафта поки що є &dнеобов’язковою&r. Вона стане обов’язковою набагато пізніше, коли ти досягнеш рівня &5EV&r. \n\nНафта також може бути очищена у формі &aЛегкого Палива&r, &aДизеля&r або навіть &aБензину&r, які є чудовими варіантами для енергії. \n\nЯкщо ти обрав цей шлях, тобі варто використовувати його як для Енергії, так і для Етилену. \n\nНафтові піски — це &6відмінна стартова точка&r, яка допоможе тобі до моменту розблокування Рідинних Бурових Установок.", - "quests.medium_voltage.mv_lpg.title": "Церква Природних Газів", + "quests.medium_voltage.mv_lpg.title": "Царство Природних Газів", "quests.medium_voltage.mv_lpg.subtitle": "Хто перший відчув запах...", "quests.medium_voltage.mv_lpg.desc.1": "&aРафінований Газ&r, &aLPG&r та &aМетан&r — це &9Газові Палива&r. LPG (Зріджений Нафтогаз) — це суміш вуглеводнів, яка зазвичай використовується в опалювальних пристроях. \n\nРафінований Газ отримується або з &dПриродного Газу&r, або з &dЛегкої Нафти&r, причому останній варіант дає більший вихід, але вимагає додаткового етапу дистиляції. \n\nВикористання &3Центрифуги&r для розділення на &aLPG&r та &aМетан&r завжди варто проводити, оскільки це практично безкоштовно.", "quests.medium_voltage.mv_lpg.desc.2": "&a&aLPG&r та &aМетан&r спалюються в &3Газовій Турбіні&r. Серед інших варіантів палива вони найпростіші у налаштуванні, що робить їх чудовими для старту. \nЇхній недолік у тому, що їх не можна додатково очищати, тому оновлення &3Рідинної Бурової Установки&r може стати пріоритетом, якщо ти вирішиш використовувати цей тип палива. \n\n&aМетан&r також можна отримати з кількох &aприродних джерел&r. &eМіж нами&r, це меми, але ти можеш дослідити їх, якщо хочеш. Врешті-решт, вибір джерела енергії — твій.", @@ -1903,16 +2095,16 @@ "quests.medium_voltage.mv_distillery.desc.2": "Все зрозуміло? &6Гаразд&r! Давай обговоримо складну тему: &9Дистиляція&r. Ми спробуємо допомогти тобі зрозуміти, як і чому рецепти &aEMI&r працюють саме так, тож залишайся з нами. \n\nМайже всі рецепти &3Дистилярні&r є копіями рецептів &3Дистиляційної Вежі&r, за винятком того, що вони мають лише один вихідний потік рідини, а все інше просто зникає. \n\nІншими словами, можна сказати, що &3Дистилярня&r — це &dспрощена&r версія &3Дистиляційної Вежі&r.", "quests.medium_voltage.mv_distillery.desc.3": "Це не означає, що &3Дистилярня&r гірша з двох. Вона відкривається раніше, і вона &dменша&r, &dдешевша&r та &dенергоефективніша&r на рецепт. \n\nЧесно кажучи, у багатьох випадках ти навіть не звернеш увагу на втрату інших рідин. \n\n&3Дистилярні&r — це ключовий компонент для генерації енергії, незалежно від того, чи обереш &aДизель&r або &aБензол&r. \n\nТобі, ймовірно, знадобиться багато таких установок на якомога нижчому рівні, щоб уникнути втрат енергії через Перевищення Тактової Частоти.", "quests.medium_voltage.mv_distillery.task": "Або LV, або MV Дистилярня", - "quests.medium_voltage.mv_benzene.title": "Церква Бензолу", + "quests.medium_voltage.mv_benzene.title": "Царство Бензолу", "quests.medium_voltage.mv_benzene.subtitle": "Зрештою, це завжди Бензол", "quests.medium_voltage.mv_benzene.desc.1": "&aБензол&r — це &9Газове Паливо&r. Щоб уникнути зайвих труднощів, давай розглянемо два найкращі способи його отримання. \n\nПерший варіант зазвичай &dзаснований на деревині&r. Поклади колоди в &3Піролізну Піч&r, щоб отримати &9Деревний Дьоготь&r. Отримане Вугілля можна обробити в &3Екстракторах&r для ще більшої кількості &9Деревного Дьогтю&r, який потім &3дистилюється&r у &aБензол&r. \n\nДругий варіант &dзаснований на Важкій Нафті&r. Поклади Важку Нафту в &3Дистилярню&r, щоб отримати &9Важке Паливо&r, яке потім &aінтенсивно паро-крекінгується&r і &3дистилюється&r знову для отримання &aБензолу&r.", "quests.medium_voltage.mv_benzene.desc.2": "Щоб отримати інформацію про обробку Нафти, переглянь квести про Легке Паливо та Нафту. \n\nЗагалом, краще пріоритизувати розміщення більшої кількості машин (&dпаралелізація&r), ніж розгін рецептів. Таким чином ти втратиш менше енергії під час обробки ресурсів. \n\n&aБензол&r спалюється в &3Газовій Турбіні&r. Це джерело енергії спочатку слабше, ніж його &eДизельний&r аналог, але отримує значний приріст при очищенні до &6Нітробензолу&r на рівні &6HV&r. Врешті-решт, вибір джерела енергії — твій.", "quests.medium_voltage.mv_light_fuel.title": "Легке Паливо", "quests.medium_voltage.mv_light_fuel.subtitle": "Збільш яскравість світла тут, малятко", "quests.medium_voltage.mv_light_fuel.desc": "Дистиляція &aНафти&r дасть тобі Паливо, яке потрібно десульфуризувати. \n\n&aСірководень&r ідеально &dпереробляється&r в &3Електролізері&r. \n\nЩоб автоматизувати цей процес, просто розмісти &3Хімічний Реактор&r та &3Електролізер&r поруч один з одним. Не забудь скористатися &5Викруткою&r, щоб &4увімкнути введення з вихідного боку&r. \n\n&aЛегке Паливо&r — це хороший &9варіант для Енергії&r, але є дещо ще краще... перевір Квест ліворуч.", - "quests.medium_voltage.mv_diesel.title": "Церква Дизеля", + "quests.medium_voltage.mv_diesel.title": "Царство Дизеля", "quests.medium_voltage.mv_diesel.subtitle": "Мамо, як виробляється дизель?", - "quests.medium_voltage.mv_diesel.desc.1": "&aДизель&r — це &dНафтозалежне &9Паливо для Горіння&r. \n\nЩоб змішати &aЛегке Паливо&r та &aВажке Паливо&r, правильне співвідношення для &3Дистилярень&r — &63:2&r з &dНафти&r або &dСирої Нафти&r. \n\nЦе вимагатиме 3 Дистилятні для Легкого Палива або 2 Дистилятні для Важкого Палива.", + "quests.medium_voltage.mv_diesel.desc.1": "&aДизель&r — це &dНафтозалежне &9Паливо для Горіння&r. \n\nЩоб змішати &aЛегке Паливо&r та &aВажке Паливо&r, правильне співвідношення для &3Дистилярень&r — &63:2&r з &dНафти&r або &dСирої Нафти&r. \n\nЦе вимагатиме 3 Дистилятори для Легкого Палива або 2 Дистилятора для Важкого Палива.", "quests.medium_voltage.mv_diesel.desc.2": "Ти можеш &6значно&r скоротити кількість &dНафти&r, необхідної для виробництва &aВажкого Палива&r, використовуючи &dВажку Нафту&r. &dНафтові Піски&r — чудовий варіант, якщо ти вирішиш піти цим шляхом! \n\n&o(Для любителів математики: замість 8.33 Нафти -> 6 Дизеля, ти отримуєш 5 Нафти + 0.4 Важкої Нафти -> 6 Дизеля)&r \n\n&eПримітка:&r &cНе намагайся&r використовувати Нафту в &3Дистиляційній Вежі&r. Може здатися, що це гарна ідея, адже вона дає і Легке Паливо, і Важке Паливо. Однак цей процес вимагає значного розгону, щоб бути ефективним, і ти втратиш більше енергії, ніж варті побічні продукти.", "quests.medium_voltage.mv_diesel.desc.3": "Загалом, краще пріоритизувати розміщення більшої кількості машин (&dпаралелізація&r), ніж розгін рецептів. Таким чином ти втратиш менше енергії під час обробки ресурсів. \n\n&aДизель&r спалюється в &3Генераторі Горіння&r. Його можна додатково очистити до &6Цетан-Підсиленого Дизеля&r на рівні &6HV&r. У порівнянні з іншими джерелами енергії, він загалом ефективніший, але вимагає складнішої обробки. Якщо ти обираєш &eНафтовий&r шлях для &aПоліетилену&r, це може добре працювати з наявною інфраструктурою. Врешті-решт, вибір джерела енергії — твій.", "quests.medium_voltage.mv_jetpack.title": "Я Вірю, Що Можу Літати", @@ -1921,7 +2113,7 @@ "quests.medium_voltage.mv_ethanol.title": "Етанол", "quests.medium_voltage.mv_ethanol.subtitle": "Йо, зачекай - це ж алкоголь!", "quests.medium_voltage.mv_ethanol.desc": "Поклади свою раніше створену &aБіомасу&r в &3MV Дистилярню&r, щоб отримати &aЕтанол&r. \n\nТобі знадобиться він для &dЕтилену&r, реагуючи з &aСірчаною Кислотою&r у &3MV Хімічному Реакторі&r... якщо тільки ти не обрав Нафтовий шлях. \n\nЯкщо у тебе вже є значний запас Етанолу, подумай про створення та дистиляцію &9Ферментованої Біомаси&r у &3Дистиляційній Вежі&r (коли дійдеш до цього!) для отримання додаткових хімікатів. \n\n&cНе намагайся&r використовувати Етанол як джерело енергії... це, мабуть, найгірше його застосування. Якщо тобі потрібна органічна &9Енергія&r, краще зверни увагу на &dБензол&r!", - "quests.medium_voltage.mv_bio_diesel.title": "Церква Біо-Дизелю", + "quests.medium_voltage.mv_bio_diesel.title": "Царство Біо-Дизелю", "quests.medium_voltage.mv_bio_diesel.subtitle": "Сила квітів", "quests.medium_voltage.mv_bio_diesel.desc": "Хочеш спробувати щось рослинного походження, але без лісових ферм? Спробуй &3Біо-Дизель&r! Найкращий спосіб його отримання — через &dОлію з Насіння&r, яку можна добути з Соняшників або Каноли. Просто змішай її з невеликою кількістю Етанолу та Гідроксиду Натрію (отриманого з Морської Води!) у Хімічному Реакторі — і все готово! Бонусом цей метод також дає Гліцерин, який можна перетворити на &dЕтилен&r!", "quests.medium_voltage.mv_mutli_channel.title": "Багатоканальні Труби", @@ -2027,7 +2219,7 @@ "quests.medium_voltage.mv_kanthal_ingot.subtitle": "Цей гарячий", "quests.medium_voltage.mv_kanthal_ingot.desc.1": "Ох, боже, тут потрібно так багато &cКанталу&r... І що це за &cгарячий злиток&r знову? &cТак, знову!&r \n\nОсь ми й повернулися до механіки, яку ти маєш пам’ятати з &aTerrafirmaCraft&r—не так давно ж це було, правда? \n\n&cГарячі злитки&r будуть &cобпалювати тебе&r, якщо ти носиш їх без &cбудь-якого способу&r захиститися за допомогою Щипців... \n\nІ, на відміну від &aTFC&r, &cвони не охолоджуються природним шляхом&r! Тобі доведеться &aактивно охолоджувати їх&r.", "quests.medium_voltage.mv_kanthal_ingot.desc.2": "Щоб зробити це, помісти їх у &dХімічну Ванну&r з &9Водою&r—або ще краще, &9Дистильованою Водою&r для &e50 відсотків швидшого&r охолодження. \n\nНастійно рекомендуємо &aавтоматизувати&r цей процес, щоб уникнути носіння гарячих злитків вручну. Використовуй &aтруби&r, щоб відправляти їх безпосередньо з &dЕДП&r до &dХімічної Ванни&r. \n\nТакож можна налаштувати &aФільтр Тегів&r для сортування гарячих злитків &7#forge:hot_ingots*&r.", - "quests.medium_voltage.mv_assembler.title": "Розширений Асемблер", + "quests.medium_voltage.mv_assembler.title": "Вдосконалений Асемблер", "quests.medium_voltage.mv_assembler.subtitle": "Ассенджери, Авемблюйтесь", "quests.medium_voltage.mv_assembler.desc": "&3Асемблер&r — це основа для кожного рівня; важлива ціль для розблокування нових рецептів і подальшого прогресу в Епоху. Багато хто в спільноті вважає створення Асемблера певного рівня напруги ознакою &oсправжнього&r досягнення цього рівня. \n\nОтже, вітаємо в &bMV&r! \n\n&bMV &3Асемблер&r відкриває доступ до &eТранзисторів&r, &eКонденсаторів&r та &eІндукторів&r, які використовуються для наступних рівнів схем.", "quests.medium_voltage.mv_cells.title": "Великі Капсули", @@ -2036,7 +2228,7 @@ "quests.medium_voltage.mv_jetpack_2.title": "Я вірю, що можу літати II", "quests.medium_voltage.mv_jetpack_2.subtitle": "...ще не зовсім там.", "quests.medium_voltage.mv_jetpack_2.desc": "Цей реактивний ранець дозволяє літати та потребує енергії. \n\nЗаряджай його так само, як і батарею. \n\nНатисни &4H&r (за замовчуванням), щоб увімкнути Режим Зависання. \n\n&o&8(Так, так, реактивний ранець має працювати на пропелентах. Ви завжди тут, щоб прискіпуватися.)&r", - "quests.medium_voltage.mv_cutter.title": "Розширений Різак", + "quests.medium_voltage.mv_cutter.title": "Вдосконалений Різак", "quests.medium_voltage.mv_cutter.subtitle": "Оновлення, люди, оновлення!", "quests.medium_voltage.mv_cutter.desc": "&3MV Різак&r необхідний для нарізання &7Силіконових Буль&r, щоб підготувати їх до &aЛазерного Гравіювання&r. \n\nРекомендуємо забезпечити цю машину стабільним потоком &dМастила&r, щоб скоротити час обробки. \n\nМастило можна &3зварити&r з &eНафти&r та &aТальку&r, &2Стеатиту&r або &cРедстоуну&r. \n\n&7Примітка: Ти можеш використовувати &6Велику&r &7версію, вона тепер має бак для заповнення рідиною&r&r", "quests.medium_voltage.mv_cutter.task": "Будь-яка Броварня", @@ -2049,7 +2241,7 @@ "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.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_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": "Збираючи Чіпи", "quests.medium_voltage.mv_ulpic.desc": "Використовуючи Сапфірову Лінзу, гравіюй Силіконову Вафлю у ULPIC Вафлю. \n\nЦе можна обробити в Різаку для отримання ULPIC Чіпів, які важливі для деяких багатоблокових компонентів! \n\nБільш конкретно ", @@ -2237,8 +2429,8 @@ "quests.ore_proc.iv_tier.desc": "З IV з’являються величезні мультиблоки, які справді прискорюють обробку руди.", "quests.ore_proc.luv_tier.title": "&dLuV&r Обробка руди", "quests.ore_proc.luv_tier.desc": "На LuV's лінія обробки наквади — справжнє випробування для твоєї системи обробки руди. Чи витримають твої машини?", - "quests.ore_proc.raw_ore.title": "Сира руда", - "quests.ore_proc.raw_ore.desc": "Цей стовпчик показує способи обробки сирої руди — перший крок у процесі її перероблення!", + "quests.ore_proc.raw_ore.title": "Сировинна Руда", + "quests.ore_proc.raw_ore.desc": "Цей стовпчик показує способи обробки сировинної руди — перший крок у процесі її перероблення!", "quests.ore_proc.crushed_ore.title": "Подрібнена руда", "quests.ore_proc.crushed_ore.desc": "Цей стовпчик показує, як обробляти подрібнену руду — це майже завжди другий етап.", "quests.ore_proc.purified_ore.title": "Очищена руда", @@ -2330,10 +2522,10 @@ "quests.space_survival.rover.desc": "Довелося залишити модний реактивний ранець вдома: атмосфери для літаків тут нема, коні не витримують — тож як пересуватись? &bРовер&r — твій вірний транспорт! Він вміщує до двох пасажирів, працює на горючих паливних сумішах (дизель, бензин і ракетне паливо), а ще має власний інвентар і радіо, що відтворює реальні радіостанції!", "quests.space_survival.solar_panels.title": "Сонячні Панелі", "quests.space_survival.solar_panels.subtitle": "Слава сонцю!", - "quests.space_survival.solar_panels.desc": "На Місяці дуже мало джерел енергії, зате ці &eСонячні Панелі&r мають чудовий вид на Сонце звідси!\n\nКожна Сонячна Панель тут генерує еквівалент &964 EU/t&r упродовж дня — без пального і без обслуговування. Але на поверхні Землі вона дає лише одну восьму від цієї потужності. Тож бери з собою якомога більше!", + "quests.space_survival.solar_panels.desc": "На Місяці доступно дуже мало джерел енергії, але ці &eСонячні Панелі&r мають чудовий вид на Сонце звідси!\n\nНа Місяці кожна Сонячна Панель забезпечує еквівалент &932 EU/t&r вдень без потреби у паливі чи обслуговуванні, але на поверхні Землі вони виробляють лише восьму частину цієї потужності. Візьми з собою якомога більше!", "quests.space_survival.stone_dust_centrifuging.title": "Гелій-3", "quests.space_survival.stone_dust_centrifuging.subtitle": "Клоунський газ", - "quests.space_survival.stone_dust_centrifuging.desc.1": "Місяць багатий на &eГелій-3&r — ще один важливий ресурс, але він захований у камені! Є два способи добути його:\n\n1) Якщо ти ще не налаштовував автоматизацію центрифугування кам’яного пилу, ось короткий вступ: каменедробарка може виробляти нескінченну кількість необробленого каменю, який подрібнюється в пил за допомогою дробильника, а потім обробляється в центрифузі.\n\nТут, на Місяці, анортозит, норит і фоноліт можна переробляти в нескінченне джерело гелію-3!", + "quests.space_survival.stone_dust_centrifuging.desc.1": "Місяць багатий на &eГелій-3&r — ще один важливий ресурс, але він захований у камені! Є два способи добути його:\n\n1) Якщо ти ще не налаштовував автоматизацію центрифугування кам’яного пилу, ось короткий вступ: каменедробарка може виробляти нескінченну кількість Необробленого каменю, який подрібнюється в пил за допомогою дробильника, а потім обробляється в центрифузі.\n\nТут, на Місяці, анортозит, норит і фоноліт можна переробляти в нескінченне джерело гелію-3!", "quests.space_survival.stone_dust_centrifuging.desc.2": "2) Викачати його з ґрунту за допомогою &9Рідинної бурової установки&r. Цей метод простіший, але не дає жодних корисних побічних продуктів.\n\nГелій-3 використовується для кількох речей, найважливіша з яких — виробництво додаткового повітря для дихання через &6Геліокс-3&r! Його також можна використовувати як «добриво» для плодів хорусу в електричній теплиці, а згодом — як ще одне паливо для термоядерної енергетики.", "quests.space_survival.stone_dust_centrifuging.task": "Будь-яке ", "quests.space_survival.compressed_gases.title": "Стиснені гази, придатні для дихання", @@ -2350,9 +2542,6 @@ "quests.space_survival.oxygen_info.title": "Більше машин для місячної бази", "quests.space_survival.oxygen_info.subtitle": "Домашній затишок", "quests.space_survival.oxygen_info.desc": "Детектор кисню — це проста машина, яка випромінює сигнал редстоуну, коли перебуває в зоні з киснем.\n\nВентиляційний блок — це суцільний блок, який також пропускає придатне для дихання повітря, не створюючи вихору.\n\nГравітаційний нормалізатор може змінювати гравітацію в межах замкненого простору, подібно до розподілювача повітря, але наразі він трохи надто дорогий.", - "quests.space_survival.bedrock_mining.title": "Видобуток корінної породи", - "quests.space_survival.bedrock_mining.subtitle": "Тепер тобі ніколи не бракуватиме міді!", - "quests.space_survival.bedrock_mining.desc": "Якщо ти коли-небудь качав нафту — &9 у корінні жили&r це аналогічне, але для руд. А якщо ні? Уяви собі процес видобутку нафти.\n\nЖарти вбік — ці багатоблоки можуть забезпечити постійне, &cнескінченне&r джерело деяких руд на решту гри. Звучить надто добре, щоб бути правдою, так? У чому підступ? У пошуку самих жил.\n\nВони розташовані далеко одна від одної та не існують на Землі, тож тобі знадобиться спосіб транспортувати руду назад на основну базу. (&aПотяги&r тут просто чудові!)\n\nПеревір JEI, щоб побачити, які руди доступні на Місяці, а потім знайди жили за допомогою HV-пошуковця руди в режимі &oBedrock Ore Mode&r (шифт + ПКМ)!", "quests.space_survival.railgun.title": "Міжпланетна логістика", "quests.space_survival.railgun.subtitle": "Ендер-скриня? Вперше чую!", "quests.space_survival.railgun.desc.1": "&7У &bTerraFirmaGreg&r транспортування предметів між вимірами або на великі відстані потребує побудови спеціальних &6багатоблочних структур&r.\n\nЦя система є &aпотужною та гнучкою&r — вона пропонує безліч налаштувань, які дозволяють адаптувати логістику під твої потреби.\n\nІдеальне рішення для доставки всіх твоїх &aпасивно добутих&r ресурсів саме туди, де вони потрібні — навіть на інших планетах! \nДо того ж вона має потужну &dсистему конфігурації&r, яка дозволяє керувати всім із одного місця.", @@ -2379,7 +2568,7 @@ "quests.space_survival.redstone_railgun.subtitle": "Правила редстоуна в Minecraft", "quests.space_survival.redstone_railgun.desc": "&6Правило редстоуна&r просте — але неймовірно потужне, якщо використовувати його правильно.\n\nУ інтерфейсі правил &6Відправника&r активація цього правила означає, що на &9Вхідній шині&r має бути &cсигнал редстоуна&r, щоб відправити предмети.\n\nУ інтерфейсі правил &3Приймача&r ти можеш налаштувати правило так, щоб &9Вихідна шина&r приймала предмети лише за наявності сигналу редстоуна на цьому блоці.\n\nЧас застосувати свої навички логіки редстоуна! \nЧи то через &dAE2 Емітер рівня&r, чи з &aCreate редстоун-утиліт&r, чи за допомогою ванільних механізмів — це правило дозволяє синхронізувати логістику зі станом фабрики як справжній профі.", "quests.space_survival.redstone_railgun.task": "Розумію", - "quests.space_survival.robot_arm_railgun.title": "Точна поставка", + "quests.space_survival.robot_arm_railgun.title": "Точна постача", "quests.space_survival.robot_arm_railgun.subtitle": "Це ж пак на GregTech, ти ж знаєш", "quests.space_survival.robot_arm_railgun.desc": "&6Правило предметів&r працює подібно до &9Роботизованої руки GregTech&r з режимом &eТочна поставка&r. \nЙого можна налаштувати лише через інтерфейс правил &6Відправника&r.\n\nПри активному правилі &9Рейкотрон&r надсилатиме лише &aточну кількість&r предметів, якщо вона доступна у &9Вхідній шині&r.\n\n&2Як налаштувати:&r \n→ Перетягни предмети у фільтр через інтерфейс &dEMI&r \n→ Використовуй &aліві та праві кліки&r для зміни кількості \n→ Можна також додати предмети в закладки для швидкого доступу та конфігурації\n\nЦе правило ідеально підходить для точної автоматизації — чудово для пакетного крафту або обмежень на ресурси.", "quests.space_survival.robot_arm_railgun.task": "Розумію", @@ -2438,7 +2627,7 @@ "quests.steam_age.mechanical_harvester.desc": "Занадто ліниво збирати врожай і пересаджувати свої культури? Ці механізми зроблять це за вас! Розмістіть їх на обертовій конструкції й спостерігайте за роботою. Вони не працюють на культурах, посаджених всередині теплиці.\n\nПорада: На рівні корінної породи температура завжди постійна — 15°C, тому це чудове місце для ферми, яка може вирощувати культури протягом усього року!", "quests.steam_age.mechanical_saw.title": "Механічна пилка", "quests.steam_age.mechanical_saw.subtitle": "Ефективне різання деревини, каменю та ваших пальців", - "quests.steam_age.mechanical_saw.desc": "Втомилися рубати дерева? Ці механізми зроблять це за вас! Розмістіть їх на обертовій конструкції й спостерігайте за роботою. На жаль, вам все одно доведеться самостійно пересаджувати саджанці, доки ви не отримаєте доступ до Встановлювача.\n\nМеханічна пилка також може бути використана як каменеріз, забезпечуючи легший доступ до різноманітних видів кам'яної кладки. Використовувати її для нарізання колод на пиломатеріали також більш ефективно!", + "quests.steam_age.mechanical_saw.desc": "Втомився рубати дерева? Ці пристрої зроблять це за тебе! Встанови їх на обертовий механізм і спостерігай за роботою. На жаль, саджанці доведеться висаджувати самостійно, доки не отримаєш доступ до Встановлювача.\n\nМеханічна Пила також може працювати як каменеріз, забезпечуючи легший доступ до різних видів кам’яної кладки. Використання її для розпилювання колод на дошки також ефективніше!\n\nЇї можна використовувати й для розрізання Стержнів на чотири Болти!", "quests.steam_age.chute.title": "Ранній Логістичний Етап", "quests.steam_age.chute.subtitle": "Громадська інфраструктура для ваших предметів", "quests.steam_age.chute.desc": "Тепер ви маєте доступ до способів переміщення ваших предметів! Жолоби схожі на вирви, але дешевші й можуть переміщувати предмети тільки вниз. Обидва ці механізми також можуть штовхати предмети з контейнера до Труб для Предметів.\n\nЛійки схожі, але краще поєднуються зі Стрічковими Конвеєрами, ніж із Трубами для Предметів.", @@ -2497,7 +2686,7 @@ "quests.steam_age.steam_grinder.desc": "Як і Парова Духовка, &3Паровий Подрібнювач&r є вдосконаленою версією одноблокової версії, яка може обробляти кілька предметів одночасно. Чи варто його будувати? Це повністю залежить від вас.", "quests.steam_age.rock_crusher.title": "Парова Дробарка Каменю", "quests.steam_age.rock_crusher.subtitle": "Дробарка Каменю копіює блоки... хвилинку, що?", - "quests.steam_age.rock_crusher.desc": "Дробарка Каменю фактично є генератором бруківки в коробці. Вона може взяти будь-який необроблений камінь або бруківку і генерувати їх більше за низьку вартість лише трохи пару. Це зовсім не допоможе в прогресі, але якщо ви хочете створити багато цегли, ця машина ідеальна.", + "quests.steam_age.rock_crusher.desc": "Дробарка Каменю фактично є генератором бруківки в коробці. Вона може взяти будь-який Необроблений камінь або бруківку і генерувати їх більше за низьку вартість лише трохи пару. Це зовсім не допоможе в прогресі, але якщо ви хочете створити багато цегли, ця машина ідеальна.", "quests.steam_age.forge_hammer.title": "Паровий Кувальний Молот", "quests.steam_age.forge_hammer.subtitle": "Кувальний Молот кує...", "quests.steam_age.forge_hammer.desc": "Завдяки створенню цієї машини багато рецептів, які раніше вимагали використання молота, тепер можна виконати тут!\n\nВона може переробляти &bБруківку в Гравій&r, а &dГравій у Пісок&r — і робить це дуже швидко.\n\nНарешті, вона створює &aПластини&r за кращим співвідношенням: &6три Злитки на дві Пластини&r. Варте інвестицій!\n\nБа більше, Кувальний Молот дозволяє (хоч і повільно) працювати з проміжними злитками, такими як Сирі Заготовки в Коване Залізо або Чавун у Сталь, якщо вам потрібна компактніша версія Таранного Молота!", @@ -2539,13 +2728,13 @@ "quests.steam_age.centrifuge.desc": "Переробка руди завжди буде важливою частиною цього модпаку, і ця машина є ще одним (необов’язковим) її елементом. Дотримуючись іншого шляху переробки руди (перевірте вкладку Схема Переробки Руди у JEI), ви можете використовувати цю центрифугу для отримання додаткових побічних продуктів із вашої руди! Наступне покращення для переробки руди з'явиться лише з LV Термальною Центрифугою, тому чи варта ця інвестиція залежить від вас.", "quests.steam_age.steam_engine.title": "Парова Машина", "quests.steam_age.steam_engine.subtitle": "Час для справжньої сили пару", - "quests.steam_age.steam_engine.desc": "Водяні колеса та вітряки вже не справляються? Яка ж це парова епоха без справжнього парового двигуна! Кожен паровий двигун може видавати цілих 256 ОД (Одиниць Потужності), надаючи тобі значно більше енергії для експериментів.\n\nПалаючі Пальники можна створити, не виходячи з дому, а за допомогою Механічної Руки їх можна автоматично заправляти твердим паливом або рідким паливом у відрі (наприклад, креозотом). Також для перегріву можна використовувати Вугільні Самоцвіти, Антрацит і Кокс.", + "quests.steam_age.steam_engine.desc": "Водяні колеса та вітряки вже не справляються? Яка ж епоха пари без справжнього парового двигуна! Кожен паровий двигун може видавати цілих 256 SU, надаючи тобі значно більше потужності для роботи.\n\nПалаючі Пальники можна створити, не виходячи з дому, а за допомогою Механічної Руки їх можна автоматично живити твердим паливом або напряму подавати рідке паливо (наприклад, креозот). Також для їх перегріву можна використовувати Вугільні Самоцвіти, Антрацит і Кокс.", "quests.steam_age.fuel_sources.title": "Додаткові Джерела Пального", "quests.steam_age.fuel_sources.subtitle": "Впроваджуємо силу в парову силу", "quests.steam_age.fuel_sources.desc": "Парова машина може працювати з ширшим набором рідинних палив, ніж Котел Високого Тиску. Хоча Креозот або Лава — це найпростіші варіанти на даному етапі, ти можеш зацікавитися й рослинними оліями, такими як &eОлія з Насіння&r з Соняшників або Каноли.\n\nКреозот і Лава погано масштабуються на пізніх рівнях, натомість Біопальне може бути перетворене в Дизель, а потім — у Дизель з Цетановим Підсиленням. Тож якщо тобі до душі ця ідея — почни закладати великі поля для вирощування рослин на олію!", - "quests.steam_age.straw.title": "Автоматизація Рідкого Палива", - "quests.steam_age.straw.subtitle": "Горючі поїльники", - "quests.steam_age.straw.desc": "Якщо клацнути ПКМ по Пекельному Пальнику з &aСоломинкою&r, то можна легко подавати пальне прямо в нього через будь-яку трубу! Під’єднай його до виходу креозоту з Коксової Печі — і твої Парові Двигуни не зупиняться.\n\nУ JEI доступний повний список можливих палив із їхньою ефективністю.", + "quests.steam_age.straw.title": "Значення Рідкого Палива", + "quests.steam_age.straw.subtitle": "Тому що в моді відсутня вкладка JEI", + "quests.steam_age.straw.desc": "Подавання рідкого палива дасть приблизно стільки ж енергії, скільки й використання парової турбіни або генератора згоряння GregTech, але ось точні значення, оскільки їх не видно в JEI:\n\n- Пара: 128 мB за тик\n- Креозот: 25 мB за 88 тиків\n- Лава: 1 мB за 20 тиків\n\n- Біомаса: 5 мB за 70 тиків\n- Олія з насіння, сої, оливок та риб’ячий жир: 25 мB за 88 тиків\n\n- Важке паливо: 2 мB за 210 тиків\n- Сірчане важке паливо: 5 мB за 80 тиків\n- Нафта: 32 мB за 90 тиків\n- Важка нафта: 5 мB за 88 тиків", "quests.steam_age.deployers.title": "Деплойєри", "quests.steam_age.deployers.subtitle": "Примітивна Лінія Збірки", "quests.steam_age.deployers.desc": "Хоча ви могли б використовувати один деплойєр протягом усього цього розділу, ми &3дійсно&r не рекомендуємо цього. Налаштування лінії деплойєрів уздовж конвеєрної стрічки збереже вам купу часу та нервів, і це не марна трата матеріалів, оскільки ви завжди зможете повторно використати їх для оновлення вашої ферми деревини згодом.\n\nКрім того, це зробить Електронні Трубки значно дешевшими!", @@ -2566,7 +2755,7 @@ "quests.steam_age.circuit_boards.desc": "Поєднайте ці Смолою Покриті Плати з кількома Мідними Проводами, і у вас буде основа для вашої першої &aСхеми&r!", "quests.steam_age.vacuum_chamber.title": "Вакуумна Камера", "quests.steam_age.vacuum_chamber.subtitle": "Додаємо Вакуум у Вакуумні Трубки", - "quests.steam_age.vacuum_chamber.desc": "Ця машина є фінальним етапом у виготовленні ваших перших Вакуумних Трубок. Розмістіть її над Басейном, подайте трохи енергії та переконайтеся, що машина налаштована на режим Вакуумування.\n\nБонусом є те, що ця машина також може зварювати злитки й пластини, а ще розплавляти клей і гуму, якщо її нагрівати за допомогою Вугільного Горна або Жаровні Blaze.", + "quests.steam_age.vacuum_chamber.desc": "Цей механізм — фінальний крок у виготовленні ваших перших Вакуумних трубок. Розмістіть його над Чаном, подайте живлення та переконайтеся, що він налаштований на режим Вакуумування.\n\nВін також може розріджувати клей та гуму, якщо його нагрівати за допомогою Вугільної кузні або Палаючі Пальники.", "quests.steam_age.vacuum_tubes.title": "Електроніка #3: Вакуумні Трубки", "quests.steam_age.vacuum_tubes.subtitle": "Складніший компонент для схем", "quests.steam_age.vacuum_tubes.desc": "Створення Вакуумних Трубок може змусити вас замислитись про своє існування. Зараз вони дуже дорогі, але незабаром стануть дешевшими—це загальна філософія GregTech!\n\nВакуумні Трубки технічно є вашою першою Ультра Низьковольтною (&8ULV&r) Схемою! Вітаю! Звідси ви можете або перейти до створення LV Схем, або провести ще трохи часу в Епосі Пару, виготовляючи інші машини з тільки-но створених Вакуумних Трубок.", @@ -2584,14 +2773,14 @@ "quests.steam_age.vibrating_table.desc": "&3Вібраційний Стіл&r може обробляти руду дорогоцінного каміння (включаючи вугілля) іншим способом, забезпечуючи набагато більший вихід, ніж будь-що інше, до чого ви маєте доступ на даний момент. Бонусом є те, що він також може обробляти будь-які гравійні родовища, які у вас ще залишилися. Ніякого більше промивання!", "quests.steam_age.lathe.title": "Токарний Верстат", "quests.steam_age.lathe.subtitle": "Ви не повірите, з якою LV машиною це однаково", - "quests.steam_age.lathe.desc": "&3Токарний Верстат&r може автоматично перетворювати один злиток на два стрижні, а один болт на гвинти. Якщо ви плануєте виготовляти їх у великій кількості (а так і буде), ця машина стане гарною інвестицією.", + "quests.steam_age.lathe.desc": "&3Токар&r може автоматично перетворювати один злиток на два стержні, а один болт на гвинти. Якщо ви плануєте виготовляти їх у великій кількості, а так і буде, ця машина стане гарною інвестицією.", "quests.steam_age.steel_saw.title": "Сталева Механічна Пилка", "quests.steam_age.steel_saw.subtitle": "Кам'яна Пилка та LV Різак в одному!", - "quests.steam_age.steel_saw.desc": "Це вдосконалення для вашої базової механічної пилки, яке також може обробляти деякі металеві рецепти — наприклад, перетворювати стрижні на чотири болти або різати блоки на пластини. Для всіх цих рецептів потрібна рідина, але наразі можна просто використовувати воду.\n\nТрохи алюмінію для кобальтової латуні можна отримати як побічний продукт обробки руди! Заглянь у відповідну главу завдання для детальнішої інформації.", + "quests.steam_age.steel_saw.desc": "Це покращення твоєї Базової Механічної Пили, яке також може виконувати деякі металеві рецепти, наприклад, перетворювати стержні на чотири болти та різати блоки на пластини. Для всіх цих рецептів потрібна рідина, але наразі можна просто використовувати воду.\n\nТакож її можна застосувати для отримання дешевших Гумових Листів, якщо спочатку за допомогою Плавильної Печі Сплавів перетворити масу на блок.", "quests.steam_age.rolling_mill.title": "Вальцювальний Станок", "quests.steam_age.rolling_mill.subtitle": "Друга половина LV Згинального Верстата", "quests.steam_age.rolling_mill.desc.1": "З усіх машин парової епохи, які ви могли б створити, &3Вальцювальний Станок&r є одним з найкращих, з простої причини: він виготовляє одинарні пластини з одинарних злитків. Бонусом є те, що він також може виготовляти тонкі листи дешевше, ніж вручну!", - "quests.steam_age.rolling_mill.desc.2": "&l&3Лор:&r &oЦя машина існувала в старіших версіях TFG, але вона виготовляла стрижні замість пластин, і вашим найкращим варіантом виготовлення пластин до появи LV Згинального Верстата був варіант з шансом невдачі у 20 відсотків!&r", + "quests.steam_age.rolling_mill.desc.2": "&l&3Лор:&r &oЦя машина існувала в старіших версіях TFG, але вона виготовляла стержні замість пластин, і вашим найкращим варіантом виготовлення пластин до появи LV Згинача був варіант з шансом невдачі у 20 відсотків!&r", "quests.steam_age.steel_mixer.title": "Сталевий Механічний Міксер", "quests.steam_age.steel_mixer.subtitle": "Попередній LV Міксер", "quests.steam_age.steel_mixer.desc": "&3Сталевий Механічний Міксер&r — це друга найкраща машина парової епохи, яку ви можете створити. Він може змішувати ваші кольорові сталеві пилки набагато ефективніше, ніж Тигель! Крім того, він підтримує велику кількість інших рецептів, включаючи деякі, які вимагають газів... краще про це не замислюйтесь.\n\nДля рецептів, що вимагають нагрівання, ви можете використовувати або Вугільний Горн, або Палаючий Пальник, а Механічна Рука може автоматично заправляти будь-який з них.", @@ -2782,26 +2971,26 @@ "quests.stone_age.mining_prep.desc.2": "&Кайло&r: Досить очевидно, для чого вона потрібна. Вам потрібен інструмент, щоб ламати каміння та добувати руду. Молоти не підходять!\n\n&lДрабини та смолоскипи&r: Вам знадобиться спосіб вибратися назад із ями та освітлювати те, що ви робите!\n\n&lПідпірки та планки&r: Видобуток у TFG набагато небезпечніший — під землею не лише з'являються монстри, а й необережне копання може спричинити обвал! Квест вище цього пояснює, як зменшити ризики під час видобутку.\n\nА тепер йдіть і копайте свою яму, копай-копай яму!", "quests.stone_age.hazards.title": "Небезпеки видобутку", "quests.stone_age.hazards.subtitle": "Думали, що поверхня була складною? Помилково думали.", - "quests.stone_age.hazards.desc.1": "Окрім монстрів, найбільшим викликом при видобутку є обвали. Якщо під необробленим каменем або блоком руди є повітря, він вважається «непідтримуваним» і має шанс спричинити обвал кожного разу, коли поруч з ним добувається інший блок. Стелі печер вкриті загартованим каменем, який не спричиняє обвалів. \nЩоб зменшити ризик, найбезпечніше — добувати лише підлогу, але якщо ви хочете безпечно добувати щось інше, вам доведеться навчитися використовувати підпірки! Вони створюються з колод та пилки.", + "quests.stone_age.hazards.desc.1": "Окрім монстрів, найбільшим викликом при видобутку є обвали. Якщо під Необробленим каменем або блоком руди є повітря, він вважається «непідтримуваним» і має шанс спричинити обвал кожного разу, коли поруч з ним добувається інший блок. Стелі печер вкриті загартованим каменем, який не спричиняє обвалів. \nЩоб зменшити ризик, найбезпечніше — добувати лише підлогу, але якщо ви хочете безпечно добувати щось інше, вам доведеться навчитися використовувати підпірки! Вони створюються з колод та пилки.", "quests.stone_age.hazards.desc.2": "Польовий довідник має більше деталей та діаграм про те, як саме працюють підпірки, але коротка версія: вам потрібно розташовувати їх ось так на відстані в чотири блоки одна від одної. Тільки верхні вертикальні підпірки фактично підтримують конструкцію, і вони мають невеликий радіус.", "quests.stone_age.copper_for_anvil.title": "Мідь для ковадла", "quests.stone_age.copper_for_anvil.subtitle": "Вам краще звикнути до того, що потрібно здобувати 14 зливків чогось.", "quests.stone_age.copper_for_anvil.desc": "Ковадла недешеві! Для кожного ковадла потрібно 14 зливків, які потім зварюються у 7 подвійних зливків.\n\nЯкщо ви ще не почали видобуток, зараз саме час розпочати. Зібрати 126 шматків малої міді — це непросте завдання.", - "quests.stone_age.get_raw_rock.title": "Сирий камінь", + "quests.stone_age.get_raw_rock.title": "Необроблений Камінь", "quests.stone_age.get_raw_rock.subtitle": "Ні, це не просто \"камінь\"", - "quests.stone_age.get_raw_rock.desc": "Щоб створити мідну ковадлу, вам знадобляться як базова кам'яна ковадла, так і кузня на деревному вугіллі. Для створення кам'яної ковадли потрібен блок сирого магматичного каменю.\n\nЩоб добути сирий камінь, обережно розбийте блоки &laround&r навколо потрібного вам каменю. Як тільки всі 6 сторін сирого каменю будуть відкриті до повітря, він випаде у вигляді предмета. Нарешті, клацніть правою кнопкою миші блок сирого магматичного каменю, щоб перетворити його на вашу кам'яну ковадлу.", + "quests.stone_age.get_raw_rock.desc": "Щоб створити мідну ковадлу, вам знадобляться як базова кам'яна ковадла, так і кузня на деревному вугіллі. Для створення кам'яної ковадли потрібен блок Необробленого магматичного каменю.\n\nЩоб добути Необроблений камінь, обережно розбийте блоки &laнавколо&r потрібного вам каменю. Як тільки всі 6 сторін Необробленого каменю будуть відкриті до повітря, він випаде у вигляді предмета. Нарешті, клацніть правою кнопкою миші блок сирого магматичного каменю, щоб перетворити його на вашу кам'яну ковадлу.", "quests.stone_age.create_forge.title": "Кузня", "quests.stone_age.create_forge.subtitle": "Тканина, до речі, не існує.", - "quests.stone_age.create_forge.desc": "Кузня — це сучасна станція для створення, яка використовується для нагрівання матеріалів до високих температур. Час нагрівання матеріалів у кузні значно швидший, ніж у ямі для обпалювання, і набагато легше контролюється.\n\nДля створення кузні вам знадобиться щонайменше 7 одиниць деревного вугілля та 5 блоків кам'яного типу, таких як сирий камінь або бруківка. \nКузня не використовує колоди, натомість вона споживає деревне вугілля, кам'яне вугілля або кокс.\n\nПерегляньте польовий довідник, щоб знайти покрокові інструкції зі створення ями для деревного вугілля та кузні.", + "quests.stone_age.create_forge.desc": "Кузня — це сучасна станція для створення, яка використовується для нагрівання матеріалів до високих температур. Час нагрівання матеріалів у кузні значно швидший, ніж у ямі для обпалювання, і набагато легше контролюється.\n\nДля створення кузні вам знадобиться щонайменше 7 одиниць деревного вугілля та 5 блоків кам'яного типу, таких як Необроблений камінь або бруківка. \nКузня не використовує колоди, натомість вона споживає деревне вугілля, кам'яне вугілля або кокс.\n\nПерегляньте польовий довідник, щоб знайти покрокові інструкції зі створення ями для деревного вугілля та кузні.", "quests.stone_age.rock_anvil.title": "Кам'яна ковадла", "quests.stone_age.rock_anvil.subtitle": "Це не протримається довго", - "quests.stone_age.rock_anvil.desc": "Ковадла є основою всього металооброблення на ранніх етапах гри. Щоб створити справжню металеву ковадлу, вам потрібно зварити зливки, використовуючи ковадлу попереднього рівня. Оскільки мідь є першим рівнем, ви повинні використовувати кам'яну ковадлу для їх зварювання. Ви можете створити кам'яну ковадлу, клацнувши правою кнопкою миші по блоку сирого магматичного каменю за допомогою молота. На жаль, зварювання зливків — це єдине, що вона може робити, вам знадобиться металева ковадла, щоб надавати їм форму.", + "quests.stone_age.rock_anvil.desc": "Ковадла є основою всього металооброблення на ранніх етапах гри. Щоб створити справжню металеву ковадлу, вам потрібно зварити зливки, використовуючи ковадлу попереднього рівня. Оскільки мідь є першим рівнем, ви повинні використовувати кам'яну ковадлу для їх зварювання. Ви можете створити кам'яну ковадлу, клацнувши правою кнопкою миші по блоку Необробленого магматичного каменю за допомогою молота. На жаль, зварювання зливків — це єдине, що вона може робити, вам знадобиться металева ковадла, щоб надавати їм форму.", "quests.stone_age.quern.title": "Жорна та ручний камінь", "quests.stone_age.quern.subtitle": "Ваш перший крок до обробки руди", - "quests.stone_age.quern.desc": "Жорна та ручний камінь — це два великих камені, що труться один об одного для подрібнення матеріалів. Нижня частина називається жорнами, а верхня — ручним каменем. Жорна можна використовувати для подрібнення сирої руди у подрібнену руду, що забезпечує трохи більший обсяг mB при плавці.\n\nТакож жорна можна використовувати для створення інших порошків, таких як флюс, борошно та кісткове борошно.", + "quests.stone_age.quern.desc": "Жорна та ручний камінь — це два великих камені, що труться один об одного для подрібнення матеріалів. Нижня частина називається жорнами, а верхня — ручним каменем. Жорна можна використовувати для подрібнення сировинної руди у подрібнену руду, що забезпечує трохи більший обсяг mB при плавці.\n\nТакож жорна можна використовувати для створення інших порошків, таких як флюс, борошно та кісткове борошно.", "quests.stone_age.crush_ore.title": "Раннє оброблення руди — Частина 1", "quests.stone_age.crush_ore.subtitle": "Більше користі з вашої руди", - "quests.stone_age.crush_ore.desc": "Жорна — це лише перший крок в обробці ваших руд! Правильна обробка руди є складним і масштабним процесом, про який ви дізнаєтеся більше з часом. Вона дозволяє отримати набагато більше придатного металу та побічних продуктів з кожної руди, яку ви добуваєте.\nОднак для початку ми перетворимо сиру руду, яку ви видобули, у подрібнену руду за допомогою жорен. Уже цей перший крок дозволяє збільшити обсяг mB, який ваша руда переплавиться у метал.", + "quests.stone_age.crush_ore.desc": "Жорна — це лише перший крок в обробці ваших руд! Правильна обробка руди є складним і масштабним процесом, про який ви дізнаєтеся більше з часом. Вона дозволяє отримати набагато більше придатного металу та побічних продуктів з кожної руди, яку ви добуваєте.\nОднак для початку ми перетворимо сировинну руду, яку ви видобули, у подрібнену руду за допомогою жорен. Уже цей перший крок дозволяє збільшити обсяг mB, який ваша руда переплавиться у метал.", "quests.stone_age.crush_crushed_ore.title": "Раннє оброблення руди — Частина 2", "quests.stone_age.crush_crushed_ore.subtitle": "Розбийте це молотом", "quests.stone_age.crush_crushed_ore.desc": "Об'єднайте подрібнену руду з молотом у сітці для крафту, щоб перетворити її на нечистий пил, що ще більше збільшує її обсяг mB.\n\nХоча зараз це може бути повільним і виснажливим процесом, незабаром ви відкриєте способи виконувати це швидше та автоматично!", @@ -2848,6 +3037,21 @@ "quests.tfg_tips.maxed_out_toolbelt.subtitle": "Цей пояс, мабуть, уже дуже важкий...", "quests.tfg_tips.maxed_out_toolbelt.desc": "&dToolbelt&r може вмістити 7 додаткових сумок, тобто 9 інструментів в одному поясі!", "quests.tfg_tips.maxed_out_toolbelt.task": "Отримай повністю покращений пояс для інструментів.", + "quests.tfg_tips.straw_basket.title": "Солом'яний кошик", + "quests.tfg_tips.straw_basket.subtitle": "Простіше не буває", + "quests.tfg_tips.straw_basket.desc": "&6Солом’яний кошик&r — простий, але надзвичайно корисний спосіб керувати своїм інвентарем, доки не з’являться кращі варіанти.\n\nПросто сформуй трохи соломи, і ти отримаєш власний &6Солом’яний кошик&r!", + "quests.tfg_tips.toolbox.title": "Ящик для інструментів", + "quests.tfg_tips.toolbox.subtitle": "Мрія будівельника", + "quests.tfg_tips.toolbox.desc": "&dЯщик для інструментів&r має 8 слотів інвентаря, у кожному з яких можна зберігати 4 стаки предметів. Додатково, ви можете використати &cгарячу клавішу&r, щоб отримати доступ до встановленого &dЯщика для інструментів&r з кількох блоків відстані. Ви навіть можете &bпофарбувати&r свій &dЯщик для інструментів&r, щоб персоналізувати його!", + "quests.tfg_tips.first_sacks.title": "Мішки для зберігання", + "quests.tfg_tips.first_sacks.subtitle": "Наступний крок після глечиків", + "quests.tfg_tips.first_sacks.desc": "&6Шкіряний мішок&r та &3Мішок з мішковини&r — це два варіанти портативного сховища з власними перевагами та недоліками. Корисно переглянути інформацію про кожен контейнер, щоб дізнатися, скільки &dслотів для предметів&r, &dрозмір стеку&r та максимальний &dрозмір предмета&r у кожному мішку.\n\n&l&3Порада:&r &4&oПольовий Посібник&r містить більш детальну інформацію про деякі особливі функції мішків.", + "quests.tfg_tips.special_sacks.title": "Спеціалізовані мішки", + "quests.tfg_tips.special_sacks.subtitle": "Ага, а скільки воно може вмістити?", + "quests.tfg_tips.special_sacks.desc": "&2Мішечок для насіння&r та &9Мішок для руди&r — це два мішки, які можуть зберігати лише певні типи предметів, але компенсують це набагато більшими &dрозмірами стеків&r.\n\n&2Мішечок для насіння&r може вмістити до &c128&r з &327&r різних видів насіння.\n\n&9Мішок для руди&r може вмістити до &c512&r з &39&r різних видобутих ресурсів. Це означає, що він може зберігати предмети, як-от руди, каміння, порошки та глини!", + "quests.tfg_tips.frame_pack.title": "Фреймовий Мішок", + "quests.tfg_tips.frame_pack.subtitle": "Варіанти можуть бути корисними!", + "quests.tfg_tips.frame_pack.desc": "&5Фреймовий Мішок&r дає вам &318&r слотів, кожен з яких може вміщувати до &c64&r предметів. Перевага &5Фреймовоно Мішку&r у тому, що він ігнорує стандартний розмір стеку предметів, які ви в нього поклали. Це означає, що всього можна вмістити до &c1152&r предметів!", "quests.tfg_tips.vessels.title": "Великі та Малі Корчаги", "quests.tfg_tips.vessels.subtitle": "Глина може бути досить корисною", "quests.tfg_tips.vessels.desc": "&dМалі Корчаги&r мають 4 слоти інвентарю, а &6Великі Корчаги&r — 9! \n&dМала Корчага&r не лише для зберігання предметів, але й необхідне для виплавки та сплавлення базових металів. \n&6Велика Корчага&r важче переносити, але чудово підходить для збереження їжі. \n\n&l&3Порада:&r&o Великі Корчаги також можуть слугувати ранніми рюкзаками!", @@ -2859,10 +3063,10 @@ "quests.tfg_tips.256m_portable_cells.desc": "З &dМЕГА Комірки&r ти можеш створювати Комірки з &lНеймовірним&r обсягом зберігання даних! \n\n&l&3Цікавий факт:&r&o Одна 256M Переносна Комірка для Предметів може зберігати до одного мільярда одиниць одного типу! Це достатньо, щоб заповнити понад 58 тисяч скринь!", "quests.tfg_tips.backpack_materials.title": "Матеріали для Рюкзака", "quests.tfg_tips.backpack_materials.subtitle": "Спальний мішок не входить у комплект", - "quests.tfg_tips.backpack_materials.desc": "A &3Sophisticated Backpack&r — це основний спосіб розширити твій переносний інвентар. \nПерший рівень подвоює звичайний інвентар, а наступні рівні збільшують його ще більше! \nВін також має широкий вибір &aфункціональних покращень&r, а різні його частини можна фарбувати в різні кольори!", + "quests.tfg_tips.backpack_materials.desc": "Є два варіанти рюкзаків: &5Фреймовий Мішок&r або &3Складний Рюкзак&r\n\n&5Фреймовий Мішок&r — це щільний рюкзак, який дозволяє зберігати до &c64&r предметів у кожному слоті, &oнезалежно від їх стандартного розміру стеку&r.\n\n&3Складний Рюкзак&r — основний спосіб розширити обсяг вашого переносного інвентарю. Перший рівень більше ніж подвоює ваш звичайний інвентар, а наступні рівні збільшують його ще більше! Він також має широкий вибір &aфункціональних оновлень&r, а різні частини можна фарбувати в різні кольори!", "quests.tfg_tips.first_backpack.title": "Твій Перший Рюкзак", "quests.tfg_tips.first_backpack.subtitle": "Ні, карта не з'явиться магічним чином.", - "quests.tfg_tips.first_backpack.desc": "Це твій перший &3Sophisticated Backpack.&r Він має загалом &c27&r слотів інвентарю та може вміщувати &aодне покращення.&r Переглянь дві наступні гілки, щоб дізнатися більше про інвентар та покращення рюкзака.", + "quests.tfg_tips.first_backpack.desc": "Це ваш перший &3Складний Рюкзак.&r Він має всього &c36&r слотів інвентарю та може містити &aодне покращення.&r Перегляньте два наступні розділи, щоб дізнатися про покращення інвентарю та рюкзака.", "quests.tfg_tips.red_steel_backpack.title": "Рюкзак з Червоної Сталі", "quests.tfg_tips.red_steel_backpack.subtitle": "Крутіший за Рюкзак з Синьої Сталі", "quests.tfg_tips.red_steel_backpack.desc": "&4Рюкзак з Червоної Сталі&r — це твоє перше повноцінне покращення інвентарю рюкзака. \nВін має загальну кількість слотів &c54&r та може вміщувати &aдва покращення.&r", @@ -2881,9 +3085,9 @@ "quests.tfg_tips.crafting_upgrade.title": "Покращення Створення", "quests.tfg_tips.crafting_upgrade.subtitle": "Верстак на ходу!", "quests.tfg_tips.crafting_upgrade.desc": "&aПокращення Створення&r дозволяє тобі носити &3Верстак&r у своєму рюкзаку, куди б ти не пішов. \nТи будеш дивуватися, як раніше обходився без нього!", - "quests.tfg_tips.advanced_upgrades.title": "Розширені Покращення", - "quests.tfg_tips.advanced_upgrades.subtitle": "Покращення, але жовті", - "quests.tfg_tips.advanced_upgrades.desc": "Деякі покращення рюкзака мають версії &eРозширені Покращення&r. \nВони мають більше функціональності, наприклад, дозволяють додаткові типи фільтрів або є більш налаштовуваними. \n\nСпробуй створити &aФільтр&r та &eРозширений Фільтр&r, щоб завершити цей квест.", + "quests.tfg_tips.advanced_upgrades.title": "Вдосконалені Модифікації", + "quests.tfg_tips.advanced_upgrades.subtitle": "Модифікація, але жовта", + "quests.tfg_tips.advanced_upgrades.desc": "Деякі модифікації рюкзака мають &eВдосконалені модифікації&r. Вони дають більше функцій, наприклад дозволяють додаткові типи фільтрів або кращу конфігурацію.\nСпробуй створити &aФільтр&r та &eВдосконалений фільтр&r, щоб виконати це завдання.", "quests.tfg_tips.all_backpack_upgrades.title": "ВСІ ПОКРАЩЕННЯ", "quests.tfg_tips.all_backpack_upgrades.subtitle": "Ти навіть не зможеш вмістити все це в один рюкзак...", "quests.tfg_tips.all_backpack_upgrades.desc": "Це всі покращення рюкзака, які пропонує &3Sophisticated Backpacks&r. \nЧи зможеш ти створити їх усі?", @@ -2906,6 +3110,10 @@ "quests.tfg_tips.cane.subtitle": "Ти навіть можеш бити людей ними!", "quests.tfg_tips.cane.desc": "&dХодилиці&r дозволяє тобі повністю ігнорувати будь-який блок, що уповільнює рух, наприклад &aсніг&r, якщо ти тримаєш його в &cосновній&r або &cдопоміжній&r руці. \nЯк бонус, він &bзбільшує висоту кроку.&r \nІншими словами, дозволяє тобі підніматися на один блок без стрибка. \nА &dЗалізна Ходилиця&r навіть дозволяє ходити по парканах!", "quests.tfg_tips.cane.task": "Будь-яка Ходилиця", + "quests.tfg_tips.hiking.title": "Похідні чоботи", + "quests.tfg_tips.hiking.subtitle": "&oЦі чоботи створені для ходьби", + "quests.tfg_tips.hiking.desc": "&dПохідні чоботи&r дозволяють легше досліджувати ваш світ! Всі &dПохідні чоботи&r дозволяють проходити крізь високу траву без опору. Крім того, кожен рівень &dПохідних чобіт&r поступово дає більше &9броні&r, &9швидкості ходьби&r та &9опору до падіння&r разом з іншими бонусами.", + "quests.tfg_tips.hiking.task": "Будь-які Похідні Чоботи", "quests.tfg_tips.glassblowing.title": "Склодувне ремесло", "quests.tfg_tips.glassblowing.subtitle": "Реалістична робота зі склом!", "quests.tfg_tips.glassblowing.desc": "Щоб створити будь-яку &dСкляну Панель&r або &dБлок&r, тобі знадобиться &3склодувна&r установка. \n\n&3Склодувне ремесло&r потребує &aДухову трубку&r та платформу з відповідних блоків для заливання розплавленого скла. \nПереглянь &2Польовий Посібник&r, щоб дізнатися більше про форму платформи та допустимі блоки. Ти отримаєш доступ до склодувного ремесла, щойно зможеш обробляти &aЛатунь!&r", @@ -3144,7 +3352,7 @@ "quests.tfg_tips.find_rosin_tree.desc": "&aСмоляні Дерева&r можна знайти в &9холодних&r районах світу, які отримують помірну або значну кількість опадів. Їх можна використовувати для збору &bСмоли.&r Ця смола може бути перетворена на &dЛипку Смолу&r та &dХвойну Смолу.&r \n\nЩоб завершити цей квест, тобі потрібно &cподивитися&r на блок, \nякий має тег &o#tfg:rosin_logs&r. Ти можеш скористатися EMI, щоб дізнатися, які блоки мають цей тег, запустивши пошук за цим хештегом.", "quests.tfg_tips.find_latex_tree.title": "Латексні дерева", "quests.tfg_tips.find_latex_tree.subtitle": "Шукай тропіки", - "quests.tfg_tips.find_latex_tree.desc": "&aЛатексні Дерева&r можна знайти в &2помірних&r районах світу, \nякі отримують велику кількість опадів. Їх можна використовувати для збору &bЛатексу&r, який застосовується для створення &dЛипкої Смоли&r та &dВулканізованого Латексу.&r Останній використовується для виробництва &3Гуми&r та &aГумових Рукавичок&r, що захищають тебе від &4отруйних матеріалів&r при контакті. \n\nЩоб завершити цей квест, тобі потрібно &cподивитися&r на блок, \nякий має тег &o#tfg:latex_logs&r. Ти можеш скористатися EMI, щоб дізнатися, які блоки мають цей тег, запустивши пошук за цим хештегом.", + "quests.tfg_tips.find_latex_tree.desc": "&aЛатексні Дерева&r можна знайти в &2помірних&r районах світу, які отримують велику кількість опадів. Їх можна використовувати для збору &bЛатексу&r, який застосовується для створення &dЛипкої Смоли&r та &dВулканізованого Латексу.&r Останній використовується для виробництва &3Гуми&r та &aГумових Рукавичок&r, що захищають тебе від &4отруйних матеріалів&r при контакті. \n\nЩоб завершити цей квест, тобі потрібно &cподивитися&r на блок, \nякий має тег &o#tfg:latex_logs&r. Ти можеш скористатися EMI, щоб дізнатися, які блоки мають цей тег, запустивши пошук за цим хештегом.", "quests.tfg_tips.find_syrup_tree.title": "Сиропні дерева", "quests.tfg_tips.find_syrup_tree.subtitle": "Цукровий діабет стрімко зростає", "quests.tfg_tips.find_syrup_tree.desc": "&aСиропні Дерева&r можна знайти в &2помірних&r районах світу, \nякі отримують помірну кількість опадів. Їх можна використовувати для збору &bСиропу.&r Сироп застосовується для створення &dДеревних Цукрів&r, які є альтернативним видом цукру та мають інші корисні застосування. \n\nЩоб завершити цей квест, тобі потрібно &cподивитися&r на блок, \nякий має тег &o#tfg:syrup_logs&r. Ти можеш скористатися EMI, щоб дізнатися, які блоки мають цей тег.", @@ -3160,7 +3368,7 @@ "quests.tfg_tips.create_tree_sugar.task": "Кленовий або Березовий Цукор", "quests.tfg_tips.create_rubber_ingot.title": "Гумовий злиток", "quests.tfg_tips.create_rubber_ingot.subtitle": "Ізолюй ці кабелі", - "quests.tfg_tips.create_rubber_ingot.desc": "Використовуючи &bВакуумну Камеру&r та додаткове нагрівання, ти можеш обробити &aЛатекс&r з різних дерев у &dСиру Гумову Масу&r через спеціальний процес. Потім можна переплавити 3 &dСирі Гумові Мас&r з невеликою кількістю &eСірчаного Пилу&r \nв &bСплавному Плавильнику&r, щоб створити &dГумові Злитки&r. Вони ідеально підходять для ізоляції кабелів і є необхідними для прогресу \nв &2Епоху Вольтаїки&r та далі...", + "quests.tfg_tips.create_rubber_ingot.desc": "Використовуючи &bВакуумну Камеру&r та додаткове нагрівання, ти можеш обробити &aЛатекс&r з різних дерев у &dНеоброблену Гумову Масу&r через спеціальний процес. Потім можна переплавити 3 &dНеоброблені Гумові Маси&r з невеликою кількістю &eСірчаного Пилу&r \nв &bСплавному Плавильнику&r, щоб створити &dГумові Злитки&r. Вони ідеально підходять для ізоляції кабелів і є необхідними для прогресу \nв &2Епоху Вольтаїки&r та далі...", "quests.tfg_tips.transportation.title": "Транспортування", "quests.tfg_tips.transportation.subtitle": "Для подорожей цим величезним світом", "quests.tfg_tips.transportation.desc": "Світ — дуже велике місце, і тобі, можливо, доведеться подорожувати на великі відстані, \nщоб знайти конкретні ресурси для виживання та розвитку. Моди в цьому розділі нададуть тобі різноманітні варіанти транспорту.", @@ -3283,6 +3491,10 @@ "quests.tfg_tips.plow.title": "Плуг", "quests.tfg_tips.plow.subtitle": "Великомасштабне землеробство", "quests.tfg_tips.plow.desc": "Якщо коли-небудь виникне потреба обробити великі ділянки землі для мегаферм, то &dПлуг&r стане незамінним помічником.", + "quests.tfg_tips.horseshoes.title": "Підкови", + "quests.tfg_tips.horseshoes.subtitle": "Модне кінське взуття", + "quests.tfg_tips.horseshoes.desc": "&aПідкови&r — це аксесуар для ваших кінських компаньйонів, який підвищує їх &9швидкість&r, &dстійкість до падінь&r та &cвисоту кроку&r на вищих рівнях.", + "quests.tfg_tips.horseshoes.task": "Будь-які Підкови", "quests.tfg_tips.firmalife.title": "Firmalife", "quests.tfg_tips.firmalife.subtitle": "Процвітай у TerraFirmaCraft", "quests.tfg_tips.firmalife.desc": "&2Firmalife&r — це мод, який розширює аграрний та гастрономічний досвід у TerraFirmaCraft, \nдодаючи різноманітні додаткові функції. Він включає такі елементи, як декорації, нові методи збереження продуктів, нові види їжі, бджільництво та безліч корисних пристроїв!", @@ -3313,7 +3525,7 @@ "quests.tfg_tips.candles.desc": "Свічки можна створювати з &aПарафінового воску, Бджолиного воску&r або &aРозину.&r \nСвічки є кращим джерелом світла порівняно з факелами, оскільки вони горять протягом 1 місяця та 2 днів.", "quests.tfg_tips.oven.title": "Піч", "quests.tfg_tips.oven.subtitle": "Обережно, гаряче", - "quests.tfg_tips.oven.desc": "&3Піч&r — це багато блокова структура, яка дозволяє легко готувати їжу та виконувати унікальні рецепти. &dНижня піч, Верхня піч&r та &aДимар&r є обов’язковими компонентами. І не забудь про &dЛопатку&r, яка використовується для діставання їжі з &aВерхньої печі.&r Детальніше про створення &3Печі&r можна знайти у &2Польовому путівнику.&r \n\n&3&lПорада:&r&o Єдина їжа, яка задовольняє всі 5 груп поживних речовин, &cПіца&f, повинна бути приготовлена в печі.", + "quests.tfg_tips.oven.desc": "&3Піч&r — це багатоблочна структура, яку можна використовувати для зручного приготування їжі, а також виконання ексклюзивних рецептів. &aНижня Піч, Верхня Піч&r та &aДимар&r є обов’язковими компонентами. І не забудь використовувати &dЩипці&r, щоб діставати їжу з &aВерхньої Печі.&r\nБільше інформації про те, як збудувати &3Піч&r, можна знайти у &2Польовому Посібнику.&r\n\n&3&lПорада:&r&o: Єдина страва, що може задовольнити всі 5 груп поживних речовин, &cПіца&f, повинна бути приготована в печі.", "quests.tfg_tips.oven_appliances.title": "Прилади для духових шаф", "quests.tfg_tips.oven_appliances.subtitle": "Отримай більше від своїх печей", "quests.tfg_tips.oven_appliances.desc": "&3Прилади для печі&r — це додаткові компоненти, які потрібно розміщувати на &aНижніх печах&r, щоб отримувати тепло. Пам’ятай, що в одному багатоблоковому механізмі можна мати &cдекілька&r &aНижніх печей&r. \n\n&dКований залізний гриль&r: Дозволяє готувати їжу набагато швидше та надає &cбонус&r до терміну зберігання. \n&dЧан&r: Дозволяє обробляти рецепти в горщиках оптом! Надзвичайно корисний для створення &eЛатексу&r та &aДжему.&r \n&dСтанція для наповнення банок&r: Повинна бути розміщена поруч із &bЧаном&r, заповнює банки &aДжемом.&r \n&dГорщик&r: Якщо тобі потрібно готувати супи.", @@ -3382,7 +3594,7 @@ "quests.tfg_tips.get_fruit.desc": "&aФрукти&r здебільшого зустрічаються в дикій природі, їх збирають з &bДерев, Кущів&r або отримують шляхом нарізання &bДинь&r та &bГарбузів.&r На відміну від овочів, фрукти мають унікальний модифікатор консервації: &dсушіння&r, крім &bмаринування.&r \n\n&cСушені фрукти необхідні&r для створення першої порції &dДріжджів.&r", "quests.tfg_tips.dry_fruit.title": "Консервація фруктів: Сушіння", "quests.tfg_tips.dry_fruit.subtitle": "Вміст води практично нульовий", - "quests.tfg_tips.dry_fruit.desc": "Використовуючи &3Сушильний килимок&r, ти можеш сушити фрукти, збільшуючи їх термін зберігання. &3Сонячна сушарка&r — це більш просунутий варіант.", + "quests.tfg_tips.dry_fruit.desc": "Використовуючи &3Сушильний килимок&r, ти можеш сушити фрукти, збільшуючи їх термін зберігання. &3Сонячна сушарка&r — це більш вдосконалений варіант.", "quests.tfg_tips.dry_fruit.task.1": "Шматок сушеного фрукта", "quests.tfg_tips.dry_fruit.task.2": "Сушильний килимок або сонячна сушарка", "quests.tfg_tips.get_grain.title": "Консервація зерна", diff --git a/kubejs/assets/tfg/lang/zh_cn.json b/kubejs/assets/tfg/lang/zh_cn.json index 6b1a559b8..0a0d9c07d 100644 --- a/kubejs/assets/tfg/lang/zh_cn.json +++ b/kubejs/assets/tfg/lang/zh_cn.json @@ -1,5 +1,404 @@ { "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "biome.tfg.nether/basalt_deltas": "玄武岩三角洲", + "biome.tfg.nether/decaying_caverns": "腐朽洞窟", + "biome.tfg.nether/lush_hollow": "繁茂空谷", + "biome.tfg.nether/webbed_lair": "蛛网巢穴", + "biome.tfg.nether/ash_forest": "灰烬森林", + "biome.tfg.nether/lava_floes": "熔岩浮岛", + "biome.tfg.nether/diorite_caves": "深层岩窟", + "biome.tfg.nether/gabbro_caves": "深层岩窟", + "biome.tfg.nether/gneiss_caves": "深层岩窟", + "biome.tfg.nether/granite_caves": "深层岩窟", + "biome.tfg.nether/schist_caves": "深层岩窟", + "biome.tfg.moon/lunar_asurine_dense": "赛特斯石英原野", + "biome.tfg.moon/lunar_asurine_sparse": "皓蓝石原野", + "biome.tfg.moon/lunar_chorus_dense": "紫颂灌木丛", + "biome.tfg.moon/lunar_chorus_sparse": "紫颂森林", + "biome.tfg.moon/lunar_corals_dense": "月面珊瑚礁", + "biome.tfg.moon/lunar_corals_sparse": "月海", + "biome.tfg.moon/lunar_lights_dense": "光绽花观星地", + "biome.tfg.moon/lunar_lights_sparse": "光绽花灌丛", + "biome.tfg.moon/lunar_plains": "月面平原", + "biome.tfg.moon/lunar_sands": "月面沙地", + "biome.tfg.mars/martian_deep_desert": "火星深层沙丘", + "biome.tfg.mars/martian_dunes": "火星荒漠", + "biome.tfg.mars/martian_dune_edge": "火星荒漠边缘", + "biome.tfg.mars/martian_river": "火星岸滩", + "biome.tfg.mars/martian_mountains": "死寂火星火山", + "biome.tfg.mars/amber_edge": "琥珀边缘", + "biome.tfg.mars/amber_plains": "琥珀平原", + "biome.tfg.mars/amber_hills": "琥珀丘陵", + "biome.tfg.mars/rusticus_edge": "红锈边缘", + "biome.tfg.mars/rusticus_plains": "红锈草甸", + "biome.tfg.mars/rusticus_hills": "红锈荒野", + "biome.tfg.mars/sangnum_edge": "赤血边缘", + "biome.tfg.mars/sangnum_plains": "赤血草原", + "biome.tfg.mars/sangnum_hills": "赤血沼地", + "block.tfg.piglin_disguise": "猪灵伪装", + "block.tfg.piglin_disguise_block": "猪灵伪装", + "block.tfg.dry_ice": "干冰", + "block.tfg.decorative_vase.black": "黑色装饰花瓶", + "block.tfg.decorative_vase.gray": "灰色装饰花瓶", + "block.tfg.decorative_vase.light_gray": "淡灰色装饰花瓶", + "block.tfg.decorative_vase.white": "白色装饰花瓶", + "block.tfg.decorative_vase.pink": "粉红色装饰花瓶", + "block.tfg.decorative_vase.magenta": "品红色装饰花瓶", + "block.tfg.decorative_vase.purple": "紫色装饰花瓶", + "block.tfg.decorative_vase.blue": "蓝色装饰花瓶", + "block.tfg.decorative_vase.light_blue": "淡蓝色装饰花瓶", + "block.tfg.decorative_vase.cyan": "青色装饰花瓶", + "block.tfg.decorative_vase.green": "绿色装饰花瓶", + "block.tfg.decorative_vase.lime": "黄绿色装饰花瓶", + "block.tfg.decorative_vase.yellow": "黄色装饰花瓶", + "block.tfg.decorative_vase.orange": "橙色装饰花瓶", + "block.tfg.decorative_vase.red": "红色装饰花瓶", + "block.tfg.decorative_vase.brown": "棕色装饰花瓶", + "block.tfg.decorative_vase.unfired": "未烧制的装饰花瓶", + "block.tfg.decorative_vase.unfired.black": "未烧制的黑色装饰花瓶", + "block.tfg.decorative_vase.unfired.gray": "未烧制的灰色装饰花瓶", + "block.tfg.decorative_vase.unfired.light_gray": "未烧制的淡灰色装饰花瓶", + "block.tfg.decorative_vase.unfired.white": "未烧制的白色装饰花瓶", + "block.tfg.decorative_vase.unfired.pink": "未烧制的粉红色装饰花瓶", + "block.tfg.decorative_vase.unfired.magenta": "未烧制的品红色装饰花瓶", + "block.tfg.decorative_vase.unfired.purple": "未烧制的紫色装饰花瓶", + "block.tfg.decorative_vase.unfired.blue": "未烧制的蓝色装饰花瓶", + "block.tfg.decorative_vase.unfired.light_blue": "未烧制的淡蓝色装饰花瓶", + "block.tfg.decorative_vase.unfired.cyan": "未烧制的青色装饰花瓶", + "block.tfg.decorative_vase.unfired.green": "未烧制的绿色装饰花瓶", + "block.tfg.decorative_vase.unfired.lime": "未烧制的黄绿色装饰花瓶", + "block.tfg.decorative_vase.unfired.yellow": "未烧制的黄色装饰花瓶", + "block.tfg.decorative_vase.unfired.orange": "未烧制的橙色装饰花瓶", + "block.tfg.decorative_vase.unfired.red": "未烧制的红色装饰花瓶", + "block.tfg.decorative_vase.unfired.brown": "未烧制的棕色装饰花瓶", + "block.tfg.decorative_vase.generated.black": "黑色战利品花瓶", + "block.tfg.decorative_vase.generated.gray": "灰色战利品花瓶", + "block.tfg.decorative_vase.generated.light_gray": "淡灰色战利品花瓶", + "block.tfg.decorative_vase.generated.white": "白色战利品花瓶", + "block.tfg.decorative_vase.generated.pink": "粉红色战利品花瓶", + "block.tfg.decorative_vase.generated.magenta": "品红色战利品花瓶", + "block.tfg.decorative_vase.generated.purple": "紫色战利品花瓶", + "block.tfg.decorative_vase.generated.blue": "蓝色战利品花瓶", + "block.tfg.decorative_vase.generated.light_blue": "淡蓝色战利品花瓶", + "block.tfg.decorative_vase.generated.cyan": "青色战利品花瓶", + "block.tfg.decorative_vase.generated.green": "绿色战利品花瓶", + "block.tfg.decorative_vase.generated.lime": "黄绿色战利品花瓶", + "block.tfg.decorative_vase.generated.yellow": "黄色战利品花瓶", + "block.tfg.decorative_vase.generated.orange": "橙色战利品花瓶", + "block.tfg.decorative_vase.generated.red": "红色战利品花瓶", + "block.tfg.decorative_vase.generated.brown": "棕色战利品花瓶", + "block.tfg.light_concrete_support": "轻型混凝土支撑梁", + "block.tfg.light_concrete_support_horizontal": "轻型混凝土水平支撑梁", + "block.tfg.dark_concrete_support": "深色混凝土支撑梁", + "block.tfg.dark_concrete_support_horizontal": "深色混凝土水平支撑梁", + "block.tfg.reinforced_light_concrete_support": "强化轻型混凝土支撑梁", + "block.tfg.reinforced_light_concrete_support_horizontal": "强化轻型混凝土水平支撑梁", + "block.tfg.reinforced_dark_concrete_support": "强化深色混凝土支撑梁", + "block.tfg.reinforced_dark_concrete_support_horizontal": "强化深色混凝土水平支撑梁", + "block.tfg.rebar_support": "钢筋支撑梁", + "block.tfg.rebar_support_horizontal": "钢筋水平支撑梁", + "block.tfg.steel_support": "钢支撑梁", + "block.tfg.steel_support_horizontal": "钢水平支撑梁", + "block.tfg.gabbro_support_horizontal": "辉长岩水平支撑梁", + "block.tfg.gabbro_support": "辉长岩支撑梁", + "block.tfg.shale_support_horizontal": "页岩水平支撑梁", + "block.tfg.shale_support": "页岩支撑梁", + "block.tfg.claystone_support_horizontal": "粘土岩水平支撑梁", + "block.tfg.claystone_support": "粘土岩支撑梁", + "block.tfg.limestone_support_horizontal": "石灰岩水平支撑梁", + "block.tfg.limestone_support": "石灰岩支撑梁", + "block.tfg.conglomerate_support_horizontal": "砾岩水平支撑梁", + "block.tfg.conglomerate_support": "砾岩支撑梁", + "block.tfg.dolomite_support_horizontal": "白云岩水平支撑梁", + "block.tfg.dolomite_support": "白云岩支撑梁", + "block.tfg.chert_support_horizontal": "燧石水平支撑梁", + "block.tfg.chert_support": "燧石支撑梁", + "block.tfg.chalk_support_horizontal": "白垩岩水平支撑梁", + "block.tfg.chalk_support": "白垩岩支撑梁", + "block.tfg.rhyolite_support_horizontal": "流纹岩水平支撑梁", + "block.tfg.rhyolite_support": "流纹岩支撑梁", + "block.tfg.dacite_support_horizontal": "英安岩水平支撑梁", + "block.tfg.dacite_support": "英安岩支撑梁", + "block.tfg.quartzite_support_horizontal": "石英岩水平支撑梁", + "block.tfg.quartzite_support": "石英岩支撑梁", + "block.tfg.slate_support_horizontal": "板岩水平支撑梁", + "block.tfg.slate_support": "板岩支撑梁", + "block.tfg.phyllite_support_horizontal": "千枚岩水平支撑梁", + "block.tfg.phyllite_support": "千枚岩支撑梁", + "block.tfg.schist_support_horizontal": "片岩水平支撑梁", + "block.tfg.schist_support": "片岩支撑梁", + "block.tfg.gneiss_support_horizontal": "片麻岩水平支撑梁", + "block.tfg.gneiss_support": "片麻岩支撑梁", + "block.tfg.marble_support_horizontal": "大理岩水平支撑梁", + "block.tfg.marble_support": "大理岩支撑梁", + "block.tfg.basalt_support_horizontal": "玄武岩水平支撑梁", + "block.tfg.basalt_support": "玄武岩支撑梁", + "block.tfg.diorite_support_horizontal": "闪长岩水平支撑梁", + "block.tfg.diorite_support": "闪长岩支撑梁", + "block.tfg.andesite_support_horizontal": "安山岩水平支撑梁", + "block.tfg.andesite_support": "安山岩支撑梁", + "block.tfg.granite_support_horizontal": "花岗岩水平支撑梁", + "block.tfg.granite_support": "花岗岩支撑梁", + "block.tfg.pyroxenite_support_horizontal": "辉石岩水平支撑梁", + "block.tfg.pyroxenite_support": "辉石岩支撑梁", + "block.tfg.migmatite_support_horizontal": "混合岩水平支撑梁", + "block.tfg.migmatite_support": "混合岩支撑梁", + "block.tfg.travertine_support_horizontal": "石灰华水平支撑梁", + "block.tfg.travertine_support": "石灰华支撑梁", + "block.tfg.glacian_support": "融冰支撑梁", + "block.tfg.glacian_support_horizontal": "融冰水平支撑梁", + "block.tfg.strophar_support": "孑节支撑梁", + "block.tfg.strophar_support_horizontal": "孑节水平支撑梁", + "block.tfg.aeronos_support": "空果支撑梁", + "block.tfg.aeronos_support_horizontal": "空果水平支撑梁", + "block.tfg.rock.hardened_deepslate": "硬化混合岩", + "block.tfg.rock.hardened_blackstone": "硬化辉石岩", + "block.tfg.rock.hardened_dripstone": "硬化石灰华", + "block.tfg.spike.deepslate_spike": "混合岩尖刺", + "block.tfg.spike.blackstone_spike": "辉石岩尖刺", + "block.tfg.spike.dripstone_spike": "石灰华尖刺", + "block.tfg.loose.deepslate": "松散混合岩", + "block.tfg.loose.dripstone": "松散石灰华岩", + "block.tfg.mushroom_roots": "菌丝根须", + "block.tfg.mushroom_sprouts": "菌丝嫩芽", + "block.tfg.charred_log": "焦化原木", + "block.tfg.rock.hardened_moon_stone": "硬化斜长岩", + "block.tfg.spike.moon_stone_spike": "斜长岩尖刺", + "block.tfg.loose.moon_stone": "松散斜长岩", + "block.tfg.rock.hardened_moon_deepslate": "硬化苏长岩", + "block.tfg.spike.moon_deepslate_spike": "苏长岩尖刺", + "block.tfg.loose.moon_deepslate": "松散苏长岩", + "block.tfg.rock.hardened_mars_stone": "硬化泥板岩", + "block.tfg.spike.mars_stone_spike": "泥板岩尖刺", + "block.tfg.loose.mars_stone": "松散泥板岩", + "block.tfg.rock.hardened_venus_stone": "硬化粗面岩", + "block.tfg.spike.venus_stone_spike": "粗面岩尖刺", + "block.tfg.loose.venus_stone": "松散粗面岩", + "block.tfg.rock.hardened_mercury_stone": "硬化科马提岩", + "block.tfg.spike.mercury_stone_spike": "科马提岩尖刺", + "block.tfg.loose.mercury_stone": "松散科马提岩", + "block.tfg.rock.hardened_glacio_stone": "硬化响岩", + "block.tfg.spike.glacio_stone_spike": "响岩尖刺", + "block.tfg.loose.glacio_stone": "松散响岩", + "block.tfg.rock.hardened_permafrost": "硬化冻土", + "block.tfg.spike.permafrost_spike": "冻土尖刺", + "block.tfg.loose.permafrost": "冻土块", + "block.tfg.rock.raw.stromatolite": "天然叠层石", + "block.tfg.rock.spike.stromatolite": "叠层石尖刺", + "block.tfg.rock.raw.geyserite": "天然硅华", + "block.tfg.rock.spike.geyserite": "硅华尖刺", + "block.tfg.rock.hardened_red_granite": "硬化红色花岗岩", + "block.tfg.loose.red_granite": "松散红色花岗岩", + "block.tfg.spike.red_granite_spike": "红色花岗岩尖刺", + "block.tfg.ash_pile": "灰烬堆", + "block.tfg.pile.white_sand": "白沙", + "block.tfg.pile.black_sand": "黑沙", + "block.tfg.pile.brown_sand": "棕沙", + "block.tfg.pile.red_sand": "红沙", + "block.tfg.pile.yellow_sand": "黄沙", + "block.tfg.pile.green_sand": "绿沙", + "block.tfg.pile.pink_sand": "粉沙", + "block.tfg.pile.moon_sand": "月沙", + "block.tfg.pile.mars_sand": "泥板岩沙", + "block.tfg.pile.venus_sand": "粗面岩沙", + "block.tfg.lunar_roots": "月球光绽花", + "block.tfg.lunar_sprouts": "月球光颖草", + "block.tfg.lunar_chorus_plant": "紫颂植株", + "block.tfg.lunar_chorus_flower": "紫颂花", + "block.tfg.marker.moon": "月球", + "block.tfg.marker.mars": "火星", + "block.tfg.marker.venus": "金星", + "block.tfg.marker.mercury": "水星", + "block.tfg.lv_aqueous_accumulator": "基础蓄水器", + "block.tfg.mv_aqueous_accumulator": "§b高级蓄水器§r", + "block.tfg.hv_aqueous_accumulator": "§6高级蓄水器 II§r", + "block.tfg.ev_aqueous_accumulator": "§5高级蓄水器 III§r", + "block.tfg.electric_greenhouse": "电力温室", + "block.tfg.lv_food_processor": "基础食物处理机", + "block.tfg.mv_food_processor": "§b高级食物处理机§r", + "block.tfg.hv_food_processor": "§6高级食物处理机 II§r", + "block.tfg.ev_food_processor": "§5高级食物处理机 III§r", + "block.tfg.lv_food_oven": "基础电炉", + "block.tfg.mv_food_oven": "§b高级电炉§r", + "block.tfg.hv_food_oven": "§6高级电炉 II§r", + "block.tfg.ev_food_oven": "§5高级电炉 III§r", + "block.tfg.lv_food_refrigerator": "基础冰箱", + "block.tfg.mv_food_refrigerator": "§b高级冰箱", + "block.tfg.hv_food_refrigerator": "§6高级冰箱 II§r", + "block.tfg.ev_food_refrigerator": "§5高级冰箱 III§r", + "block.tfg.lv_gas_pressurizer": "基础气体加压器", + "block.tfg.mv_gas_pressurizer": "§b高级气体加压器§r", + "block.tfg.hv_gas_pressurizer": "§6高级气体加压器 II§r", + "block.tfg.ev_gas_pressurizer": "§5高级气体加压器 III§r", + "block.tfg.grass.mars_dirt": "火星土壤", + "block.tfg.grass.mars_farmland": "火星农田", + "block.tfg.grass.amber_mycelium": "琥珀菌丝", + "block.tfg.grass.rusticus_mycelium": "红锈菌丝", + "block.tfg.grass.sangnum_mycelium": "赤血菌丝", + "block.tfg.electromagnetic_accelerator": "电磁加速器", + "block.tfg.superconductor_coil_large": "大型超导线圈", + "block.tfg.superconductor_coil_small": "小型超导线圈", + "block.tfg.interplanetary_item_launcher": "星际轨道炮", + "block.tfg.interplanetary_item_receiver": "星际接收器", + "block.tfg.interplanetary_logistics_monitor": "星际物流监控器", + "block.tfg.railgun_ammo_loader": "轨道炮弹药装填器", + "block.tfg.ulv_railgun_item_loader_in": "§8ULV 星际轨道炮输入总线§r", + "block.tfg.lv_railgun_item_loader_in": "§7LV 星际轨道炮输入总线§r", + "block.tfg.mv_railgun_item_loader_in": "§bMV 星际轨道炮输入总线§r", + "block.tfg.hv_railgun_item_loader_in": "§6HV 星际轨道炮输入总线§r", + "block.tfg.ev_railgun_item_loader_in": "§5EV 星际轨道炮输入总线§r", + "block.tfg.iv_railgun_item_loader_in": "§9IV 星际轨道炮输入总线§r", + "block.tfg.luv_railgun_item_loader_in": "§dLuV 星际轨道炮输入总线§r", + "block.tfg.zpm_railgun_item_loader_in": "§cZPM 星际轨道炮输入总线§r", + "block.tfg.uv_railgun_item_loader_in": "§3UV 星际轨道炮输入总线§r", + "block.tfg.uhv_railgun_item_loader_in": "§4UHV 星际轨道炮输入总线§r", + "block.tfg.ulv_railgun_item_loader_out": "§8ULV 星际轨道炮输出总线§r", + "block.tfg.lv_railgun_item_loader_out": "§7LV 星际轨道炮输出总线§r", + "block.tfg.mv_railgun_item_loader_out": "§bMV 星际轨道炮输出总线§r", + "block.tfg.hv_railgun_item_loader_out": "§6HV 星际轨道炮输出总线§r", + "block.tfg.ev_railgun_item_loader_out": "§5EV 星际轨道炮输出总线§r", + "block.tfg.iv_railgun_item_loader_out": "§9IV 星际轨道炮输出总线§r", + "block.tfg.luv_railgun_item_loader_out": "§dLuV 星际轨道炮输出总线§r", + "block.tfg.zpm_railgun_item_loader_out": "§cZPM 星际轨道炮输出总线§r", + "block.tfg.uv_railgun_item_loader_out": "§3UV 星际轨道炮输出总线§r", + "block.tfg.uhv_railgun_item_loader_out": "§4UHV 星际轨道炮输出总线§r", + "block.tfg.reflector": "反射方块", + "block.tfg.sunflower": "向日葵", + "block.tfg.sunflower_wild": "野生向日葵", + "block.tfg.sunflower_dead": "枯萎的向日葵", + "block.tfg.rapeseed": "油菜", + "block.tfg.rapeseed_wild": "野生油菜", + "block.tfg.rapeseed_dead": "枯萎的油菜", + "block.tfg.casings.machine_casing_iron_desh": "戴斯机械方块", + "block.tfg.casings.machine_casing_stainless_evaporation": "不锈钢蒸发机械方块", + "block.tfg.casings.machine_casing_blue_solar_panel": "基础太阳能板外壳", + "block.tfg.casings.machine_casing_green_solar_panel": "高级太阳能板外壳", + "block.tfg.casings.machine_casing_red_solar_panel": "精英太阳能板外壳", + "block.tfg.machine_casing_aluminium_plated_steel": "镀铝钢机械方块", + "block.tfg.sand.fluorapatite.blue": "蓝色氟磷灰石沙", + "block.tfg.sandstone.raw.fluorapatite.blue": "天然蓝色氟磷灰石砂岩", + "block.tfg.sandstone.wall.raw.fluorapatite.blue": "天然蓝色氟磷灰石砂岩墙", + "block.tfg.sandstone.slab.raw.fluorapatite.blue": "天然蓝色氟磷灰石砂岩台阶", + "block.tfg.sandstone.stairs.raw.fluorapatite.blue": "天然蓝色氟磷灰石砂岩楼梯", + "block.tfg.sandstone.smooth.fluorapatite.blue": "光滑蓝色氟磷灰石砂岩", + "block.tfg.sandstone.wall.smooth.fluorapatite.blue": "光滑蓝色氟磷灰石砂岩墙", + "block.tfg.sandstone.slab.smooth.fluorapatite.blue": "光滑蓝色氟磷灰石砂岩台阶", + "block.tfg.sandstone.stairs.smooth.fluorapatite.blue": "光滑蓝色氟磷灰石砂岩楼梯", + "block.tfg.sandstone.fluorapatite.blue": "切制蓝色氟磷灰石砂岩", + "block.tfg.sandstone.smooth.chiseled.fluorapatite.blue": "雕纹蓝色氟磷灰石砂岩", + "block.tfg.sand.fluorapatite.green": "绿色氟磷灰石沙", + "block.tfg.sandstone.raw.fluorapatite.green": "天然绿色氟磷灰石砂岩", + "block.tfg.sandstone.wall.raw.fluorapatite.green": "天然绿色氟磷灰石砂岩墙", + "block.tfg.sandstone.slab.raw.fluorapatite.green": "天然绿色氟磷灰石砂岩台阶", + "block.tfg.sandstone.stairs.raw.fluorapatite.green": "天然绿色氟磷灰石砂岩楼梯", + "block.tfg.sandstone.smooth.fluorapatite.green": "光滑绿色氟磷灰石砂岩", + "block.tfg.sandstone.wall.smooth.fluorapatite.green": "光滑绿色氟磷灰石砂岩墙", + "block.tfg.sandstone.slab.smooth.fluorapatite.green": "光滑绿色氟磷灰石砂岩台阶", + "block.tfg.sandstone.stairs.smooth.fluorapatite.green": "光滑绿色氟磷灰石砂岩楼梯", + "block.tfg.sandstone.fluorapatite.green": "切制绿色氟磷灰石砂岩", + "block.tfg.sandstone.smooth.chiseled.fluorapatite.green": "雕纹绿色氟磷灰石砂岩", + "block.tfg.sand.fluorapatite.brown": "棕色氟磷灰石沙", + "block.tfg.sandstone.raw.fluorapatite.brown": "天然棕色氟磷灰石砂岩", + "block.tfg.sandstone.wall.raw.fluorapatite.brown": "天然棕色氟磷灰石砂岩墙", + "block.tfg.sandstone.slab.raw.fluorapatite.brown": "天然棕色氟磷灰石砂岩台阶", + "block.tfg.sandstone.stairs.raw.fluorapatite.brown": "天然棕色氟磷灰石砂岩楼梯", + "block.tfg.sandstone.smooth.fluorapatite.brown": "光滑棕色氟磷灰石砂岩", + "block.tfg.sandstone.wall.smooth.fluorapatite.brown": "光滑棕色氟磷灰石砂岩墙", + "block.tfg.sandstone.slab.smooth.fluorapatite.brown": "光滑棕色氟磷灰石砂岩台阶", + "block.tfg.sandstone.stairs.smooth.fluorapatite.brown": "光滑棕色氟磷灰石砂岩楼梯", + "block.tfg.sandstone.fluorapatite.brown": "切制棕色氟磷灰石砂岩", + "block.tfg.sandstone.smooth.chiseled.fluorapatite.brown": "雕纹棕色氟磷灰石砂岩", + "block.tfg.sand.fluorapatite.orange": "橙色氟磷灰石沙", + "block.tfg.sandstone.raw.fluorapatite.orange": "天然橙色氟磷灰石砂岩", + "block.tfg.sandstone.wall.raw.fluorapatite.orange": "天然橙色氟磷灰石砂岩墙", + "block.tfg.sandstone.slab.raw.fluorapatite.orange": "天然橙色氟磷灰石砂岩台阶", + "block.tfg.sandstone.stairs.raw.fluorapatite.orange": "天然橙色氟磷灰石砂岩楼梯", + "block.tfg.sandstone.smooth.fluorapatite.orange": "光滑橙色氟磷灰石砂岩", + "block.tfg.sandstone.wall.smooth.fluorapatite.orange": "光滑橙色氟磷灰石砂岩墙", + "block.tfg.sandstone.slab.smooth.fluorapatite.orange": "光滑橙色氟磷灰石砂岩台阶", + "block.tfg.sandstone.stairs.smooth.fluorapatite.orange": "光滑橙色氟磷灰石砂岩楼梯", + "block.tfg.sandstone.fluorapatite.orange": "切制橙色氟磷灰石砂岩", + "block.tfg.sandstone.smooth.chiseled.fluorapatite.orange": "雕纹橙色氟磷灰石砂岩", + "block.tfg.sand.fluorapatite.white": "白色氟磷灰石沙", + "block.tfg.sandstone.raw.fluorapatite.white": "天然白色氟磷灰石砂岩", + "block.tfg.sandstone.wall.raw.fluorapatite.white": "天然白色氟磷灰石砂岩墙", + "block.tfg.sandstone.slab.raw.fluorapatite.white": "天然白色氟磷灰石砂岩台阶", + "block.tfg.sandstone.stairs.raw.fluorapatite.white": "天然白色氟磷灰石砂岩楼梯", + "block.tfg.sandstone.smooth.fluorapatite.white": "光滑白色氟磷灰石砂岩", + "block.tfg.sandstone.wall.smooth.fluorapatite.white": "光滑白色氟磷灰石砂岩墙", + "block.tfg.sandstone.slab.smooth.fluorapatite.white": "光滑白色氟磷灰石砂岩台阶", + "block.tfg.sandstone.stairs.smooth.fluorapatite.white": "光滑白色氟磷灰石砂岩楼梯", + "block.tfg.sandstone.fluorapatite.white": "切制白色氟磷灰石砂岩", + "block.tfg.sandstone.smooth.chiseled.fluorapatite.white": "雕纹白色氟磷灰石砂岩", + "block.tfg.sand.fluorapatite.yellow": "黄色氟磷灰石沙", + "block.tfg.sandstone.raw.fluorapatite.yellow": "天然黄色氟磷灰石砂岩", + "block.tfg.sandstone.wall.raw.fluorapatite.yellow": "天然黄色氟磷灰石砂岩墙", + "block.tfg.sandstone.slab.raw.fluorapatite.yellow": "天然黄色氟磷灰石砂岩台阶", + "block.tfg.sandstone.stairs.raw.fluorapatite.yellow": "天然黄色氟磷灰石砂岩楼梯", + "block.tfg.sandstone.smooth.fluorapatite.yellow": "光滑黄色氟磷灰石砂岩", + "block.tfg.sandstone.wall.smooth.fluorapatite.yellow": "光滑黄色氟磷灰石砂岩墙", + "block.tfg.sandstone.slab.smooth.fluorapatite.yellow": "光滑黄色氟磷灰石砂岩台阶", + "block.tfg.sandstone.stairs.smooth.fluorapatite.yellow": "光滑黄色氟磷灰石砂岩楼梯", + "block.tfg.sandstone.fluorapatite.yellow": "切制黄色氟磷灰石砂岩", + "block.tfg.sandstone.smooth.chiseled.fluorapatite.yellow": "雕纹黄色氟磷灰石砂岩", + "block.tfg.large_nest_box": "大型绯红巢", + "tfg.block_entity.large_nest_box": "大型巢箱", + "block.tfg.large_nest_box_warped": "大型诡异巢", + "block.tfg.iv_aqueous_accumulator": "§9精英蓄水器§r", + "block.tfg.luv_aqueous_accumulator": "§d精英蓄水器 II§r", + "block.tfg.zpm_aqueous_accumulator": "§c精英蓄水器 III§r", + "block.tfg.uv_aqueous_accumulator": "§3终极蓄水器§r", + "block.tfg.iv_food_processor": "§9精英食物处理机§r", + "block.tfg.luv_food_processor": "§d精英食物处理机 II§r", + "block.tfg.zpm_food_processor": "§c精英食物处理机 III§r", + "block.tfg.uv_food_processor": "§3终极食物处理机§r", + "block.tfg.iv_food_oven": "§9精英电烤箱§r", + "block.tfg.luv_food_oven": "§d精英电烤箱 II§r", + "block.tfg.zpm_food_oven": "§c精英电烤箱 III§r", + "block.tfg.uv_food_oven": "§3终极电烤箱§r", + "block.tfg.iv_food_refrigerator": "§9精英冰箱§r", + "block.tfg.iv_gas_pressurizer": "§9精英气体加压器§r", + "block.tfg.luv_gas_pressurizer": "§d精英气体加压器 II§r", + "block.tfg.zpm_gas_pressurizer": "§c精英气体加压器 III§r", + "block.tfg.uv_gas_pressurizer": "§3终极气体加压器§r", + "block.tfg.saplings.crimson": "绯红菌类", + "block.tfg.saplings.warped": "扭曲菌类", + "block.tfg.saplings.alphacene": "阿尔法辛蘑菇", + "block.tfg.saplings.aeronos": "空果菇", + "block.tfg.saplings.strophar": "孑节菇", + "block.tfg.saplings.glacian": "融冰菇", + "block.tfg.casings.machine_casing_vacuum_engine_intake": "真空引擎进气机械方块", + "block.tfg.casings.machine_casing_mars": "坚固防尘机械方块", + "block.tfg.fluid.semiheavy_ammoniacal_water": "半重氨水", + "block.tfg.grass.mars_clay_dirt": "火星粘土质土壤", + "block.tfg.grass.amber_clay_mycelium": "琥珀黏土菌丝", + "block.tfg.grass.amber_kaolin_mycelium": "琥珀高岭土菌丝", + "block.tfg.grass.rusticus_clay_mycelium": "红锈粘土菌丝", + "block.tfg.grass.rusticus_kaolin_mycelium": "红锈高岭土菌丝", + "block.tfg.grass.sangnum_clay_mycelium": "赤血黏土菌丝", + "block.tfg.grass.sangnum_kaolin_mycelium": "赤血高岭土菌丝", + "block.tfg.spice": "紫金矿床", + "block.tfg.groundcover.glider_feather": "滑翔羽毛", + "block.tfg.groundcover.wraptor_feather": "扭曲鸟羽毛", + "block.tfg.groundcover.aeronos_stick": "空果树枝", + "block.tfg.groundcover.strophar_stick": "孑节树枝", + "block.tfg.groundcover.glacian_stick": "融冰树枝", + "block.tfg.groundcover.alphacene_stick": "阿尔法辛树枝", + "block.tfg.flax": "亚麻", + "block.tfg.flax_wild": "野生亚麻", + "block.tfg.flax_dead": "枯萎的亚麻", + "block.tfg.casings.machine_casing_ultraviolet": "§d紫外§f机械外壳", + "block.tfg.casings.machine_casing_bioculture": "生物培养机械外壳", + "block.tfg.casings.machine_casing_bioculture_glass": "生物培养玻璃", + "block.tfg.casings.bioculture_rotor_primary": "主生物培养转子", + "block.tfg.casings.bioculture_rotor_secondary": "副生物培养转子", + "fluid.tfg.nether_slurry": "下界浆液", + "fluid.tfg.enriched_nether_slurry": "富集下界浆液", + "fluid.tfg.ender_slurry": "末地浆液", + "fluid.tfg.enriched_ender_slurry": "富集末地浆液", + "fluid.tfg.semiheavy_ammoniacal_water": "半重氨水", + "fluid.tfg.sulfur_fumes": "硫磺烟气", + "fluid.tfg.super_heated_slurry": "超高温浆液", "quests.naming-1": "t - Title", "quests.naming-2": "st - Subtitle", "quests.naming-3": "d* - Description, where * description number, for example: d1, d2, d3, d4...", @@ -93,5 +492,781 @@ "quests..t": "", "quests..st": "", "quests..d1": "", - "quests..t1": "" + "quests..t1": "", + "item.tfg.antipoison_pill": "抗毒药丸", + "item.tfg.haste_pill": "急迫药丸", + "item.tfg.night_vision_pill": "夜视药丸", + "item.tfg.poison_pill": "剧毒药丸", + "item.tfg.regeneration_pill": "生命恢复药丸", + "item.tfg.slowness_pill": "缓慢药丸", + "item.tfg.speed_pill": "速度药丸", + "item.tfg.water_breathing_pill": "水下呼吸药丸", + "item.tfg.weakness_pill": "虚弱药丸", + "item.tfg.antipoison_tablet": "抗毒药片", + "item.tfg.haste_tablet": "急迫药片", + "item.tfg.night_vision_tablet": "夜视药片", + "item.tfg.poison_tablet": "剧毒药片", + "item.tfg.regeneration_tablet": "生命恢复药片", + "item.tfg.slowness_tablet": "缓慢药片", + "item.tfg.speed_tablet": "速度药片", + "item.tfg.water_breathing_tablet": "水下呼吸药片", + "item.tfg.weakness_tablet": "虚弱药片", + "item.tfg.absorption_salvo": "吸收药膏", + "item.tfg.fire_resistance_salvo": "抗火药膏", + "item.tfg.instant_health_salvo": "瞬间治疗药膏", + "item.tfg.invisibility_salvo": "隐身药膏", + "item.tfg.luck_salvo": "幸运药膏", + "item.tfg.resistance_salvo": "抗性提升药膏", + "item.tfg.paraffin_wax": "石蜡", + "item.tfg.flint_arrow_head": "燧石箭头", + "item.tfg.fletching": "箭羽", + "item.tfg.phantom_silk": "幻翼丝", + "item.tfg.phantom_thread": "幻翼线", + "item.tfg.polycaprolactam_fabric": "聚己内酰胺纤维布", + "item.tfg.polycaprolactam_string": "聚己内酰胺线", + "item.tfg.space_suit_fabric": "航天服面料", + "item.tfg.vitrified_pearl": "玻璃化末影珍珠", + "item.tfg.fishing_net.wood": "木质渔网", + "item.tfg.fishing_net.brass": "黄铜渔网", + "item.tfg.fishing_net.rose_gold": "玫瑰金渔网", + "item.tfg.fishing_net.sterling_silver": "纯银渔网", + "item.tfg.fishing_net.invar": "殷钢渔网", + "item.tfg.fishing_net.cupronickel": "白铜渔网", + "item.tfg.fishing_net.tin_alloy": "锡铁合金渔网", + "item.tfg.fishing_net.magnalium": "镁铝合金渔网", + "item.tfg.conifer_rosin": "松香", + "item.tfg.hardwood_strip": "硬木条", + "item.tfg.soaked_hardwood_strip": "浸泡硬木条", + "item.tfg.prepared_leather_gloves": "处理过的皮革手套", + "item.tfg.latex_soaked_gloves": "乳胶浸渍手套", + "item.tfg.unfired_chalk": "未烧制的粉笔", + "item.tfg.armor_stand_arms": "带手臂的盔甲架", + "item.tfg.flint_club_head": "燧石棒头", + "item.tfg.brick.deepslate": "混合岩砖", + "item.tfg.loose.moon_stone": "松散斜长岩", + "item.tfg.brick.moon_stone": "斜长岩砖", + "item.tfg.loose.moon_deepslate": "松散苏长岩", + "item.tfg.loose.mars_stone": "松散泥板岩", + "item.tfg.brick.mars_stone": "泥板岩砖", + "item.tfg.loose.venus_stone": "松散粗面岩", + "item.tfg.brick.venus_stone": "粗面岩砖", + "item.tfg.loose.mercury_stone": "松散科马提岩", + "item.tfg.brick.mercury_stone": "科马提岩砖", + "item.tfg.loose.glacio_stone": "松散响岩", + "item.tfg.brick.glacio_stone": "响岩砖", + "item.tfg.loose.permafrost": "冻土块", + "item.tfg.brick.permafrost": "冻土砖", + "item.tfg.loose.red_granite": "松散红色花岗岩", + "item.tfg.brick.red_granite": "红色花岗岩砖", + "item.tfg.terra_firma_greg": "群峦传说格雷科技", + "item.tfg.scaffolding_frame": "脚手架框架", + "item.tfg.airship_hull": "飞艇机身", + "item.tfg.airship_balloon": "飞艇气囊", + "item.tfg.lv_aircraft_engine": "LV 飞行器引擎", + "item.tfg.hv_aircraft_engine": "HV 飞行器引擎", + "item.tfg.ev_aircraft_engine": "EV 飞行器引擎", + "item.tfg.black_steel_plated_airplane_propeller": "镀黑钢飞机螺旋桨", + "item.tfg.redblu_steel_plated_airplane_propeller": "镀红蓝钢飞机螺旋桨", + "item.tfg.stainless_steel_plated_airplane_propeller": "镀不锈钢飞机螺旋桨", + "item.tfg.titanium_plated_airplane_propeller": "镀钛飞机螺旋桨", + "item.tfg.redblu_steel_landing_gear": "红蓝钢起落架", + "item.tfg.aluminium_landing_gear": "铝制起落架", + "item.tfg.stainless_steel_landing_gear": "不锈钢起落架", + "item.tfg.titanium_landing_gear": "钛合金起落架", + "item.tfg.redblu_steel_hull_reinforcement": "红蓝钢机身加固件", + "item.tfg.aluminium_hull_reinforcement": "铝制机身加固件", + "item.tfg.stainless_steel_hull_reinforcement": "不锈钢机身加固件", + "item.tfg.titanium_hull_reinforcement": "钛合金机身加固件", + "item.tfg.ulv_universal_circuit": "ULV 通用电路", + "item.tfg.lv_universal_circuit": "LV 通用电路", + "item.tfg.mv_universal_circuit": "MV 通用电路", + "item.tfg.hv_universal_circuit": "HV 通用电路", + "item.tfg.ev_universal_circuit": "EV 通用电路", + "item.tfg.iv_universal_circuit": "IV 通用电路", + "item.tfg.luv_universal_circuit": "LuV 通用电路", + "item.tfg.zpm_universal_circuit": "ZPM 通用电路", + "item.tfg.uv_universal_circuit": "UV 通用电路", + "item.tfg.uhv_universal_circuit": "UHV 通用电路", + "item.tfg.chipboard_composite": "刨花板复合材料", + "item.tfg.piglin_disguise": "猪灵伪装", + "item.tfg.trowel": "抹刀", + "item.tfg.foil_pack": "铝箔包装袋", + "item.tfg.used_foil_pack": "用过的铝箔包装袋", + "item.tfg.clean_foil_pack": "干净的铝箔包装袋", + "item.tfg.dry_ice": "干冰", + "item.tfg.food.raw_birt": "生比尔特肉", + "item.tfg.food.cooked_birt": "熟比尔特肉", + "item.tfg.food.raw_crawlermari": "生星际爬行者肉", + "item.tfg.food.cooked_crawlermari": "熟星际爬行者肉", + "item.tfg.food.raw_limpet": "生帽贝", + "item.tfg.food.cooked_limpet": "熟帽贝", + "item.tfg.food.raw_moon_rabbit": "生月兔肉", + "item.tfg.food.cooked_moon_rabbit": "熟月兔肉", + "item.tfg.spawn_egg.moon_rabbit": "月兔刷怪蛋", + "item.tfg.food.freeze_dried.red_grapes": "冻干红葡萄", + "item.tfg.food.freeze_dried.white_grapes": "冻干白葡萄", + "item.tfg.food.freeze_dried.glow_berries": "冻干发光浆果", + "item.tfg.food.freeze_dried.chorus_fruit": "冻干紫颂果", + "item.tfg.food.freeze_dried.popped_chorus_fruit": "冻干爆裂紫颂果", + "item.tfg.food.freeze_dried.blackberry": "冻干黑莓", + "item.tfg.food.freeze_dried.blueberry": "冻干蓝莓", + "item.tfg.food.freeze_dried.bunchberry": "冻干御膳橘", + "item.tfg.food.freeze_dried.cloudberry": "冻干云莓", + "item.tfg.food.freeze_dried.cranberry": "冻干蔓越莓", + "item.tfg.food.freeze_dried.elderberry": "冻干接骨木莓", + "item.tfg.food.freeze_dried.gooseberry": "冻干鹅莓", + "item.tfg.food.freeze_dried.raspberry": "冻干树莓", + "item.tfg.food.freeze_dried.snowberry": "冻干雪莓", + "item.tfg.food.freeze_dried.strawberry": "冻干草莓", + "item.tfg.food.freeze_dried.wintergreen_berry": "冻干冬青莓", + "item.tfg.food.freeze_dried.banana": "冻干香蕉", + "item.tfg.food.freeze_dried.cherry": "冻干樱桃", + "item.tfg.food.freeze_dried.green_apple": "冻干青苹果", + "item.tfg.food.freeze_dried.lemon": "冻干柠檬", + "item.tfg.food.freeze_dried.olive": "冻干橄榄", + "item.tfg.food.freeze_dried.orange": "冻干橙子", + "item.tfg.food.freeze_dried.peach": "冻干桃子", + "item.tfg.food.freeze_dried.plum": "冻干李子", + "item.tfg.food.freeze_dried.red_apple": "冻干红苹果", + "item.tfg.food.freeze_dried.pumpkin_chunks": "冻干南瓜块", + "item.tfg.food.freeze_dried.melon_slice": "冻干西瓜片", + "item.tfg.food.freeze_dried.fig": "冻干无花果", + "item.tfg.food.freeze_dried.pineapple": "冻干菠萝", + "item.tfg.food.freeze_dried.blossom_berry": "冻干百花果", + "item.tfg.food.freeze_dried.shadow_berry": "冻干夜影浆果", + "item.tfg.food.freeze_dried.cave_pumpkin": "冻干球茎南瓜块", + "item.tfg.food.calorie_paste": "营养膏", + "item.tfg.food.meal_bag": "餐包", + "item.tfg.food.ice_soup": "冰汤", + "item.tfg.food.raw_glacian_mutton": "生冰川羊肉", + "item.tfg.food.cooked_glacian_mutton": "熟冰川羊肉", + "item.tfg.spawn_egg.glacian_ram": "冰川羊刷怪蛋", + "item.tfg.food.raw_sniffer_beef": "生嗅探兽肉", + "item.tfg.food.cooked_sniffer_beef": "熟嗅探兽肉", + "item.tfg.spawn_egg.sniffer": "嗅探兽刷怪蛋", + "item.tfg.roasted_sunflower_seeds": "烤向日葵籽", + "item.tfg.sunflower_seeds": "向日葵种子", + "item.tfg.sunflower_product": "向日葵花盘", + "item.tfg.rapeseed_seeds": "油菜籽", + "item.tfg.rapeseed_product": "油菜籽荚", + "item.tfg.flintlock_mechanism": "燧发机构", + "item.tfg.advanced_clockwork_mechanism": "高级发条机构", + "item.tfg.certus_mechanism": "赛特斯机构", + "item.tfg.small_bullet_casing": "小型弹壳", + "item.tfg.large_bullet_casing": "大型弹壳", + "item.tfg.shell_bullet_casing": "霰弹弹壳", + "item.tfg.nitrocellulose": "硝化纤维", + "item.tfg.aes_wool": "碱土硅酸盐棉", + "item.tfg.aes_compressed_wool": "压缩碱土硅酸盐棉", + "item.tfg.aes_insulation_sheet": "碱土硅酸盐绝缘板", + "item.tfg.aes_insulation_roll": "碱土硅酸盐绝缘卷", + "item.tfg.rocket_cone_t2": "改进型火箭鼻锥", + "item.tfg.rocket_fin_t2": "改进型火箭尾翼", + "item.tfg.cryo_fluix_pearl": "低温福鲁伊克斯珍珠", + "item.tfg.marker.earth_orbit": "地球轨道", + "item.tfg.marker.moon_orbit": "月球轨道", + "item.tfg.marker.mars_orbit": "火星轨道", + "item.tfg.marker.venus_orbit": "金星轨道", + "item.tfg.marker.mercury_orbit": "水星轨道", + "item.tfg.railgun_ammo_shell": "轨道炮弹壳", + "item.tfg.sulfur_fumes_bucket": "硫磺烟气桶", + "item.tfg.super_heated_slurry_bucket": "超高温浆液桶", + "item.tfg.cryogenized_fluix_bucket": "低温福鲁伊克斯桶", + "item.tfg.fluix_bucket": "液态福鲁伊克斯桶", + "item.tfg.latex_bucket": "乳胶桶", + "item.tfg.vulcanized_latex_bucket": "硫化乳胶桶", + "item.tfg.conifer_pitch_bucket": "松脂桶", + "item.tfg.compressed_nitrox_bucket": "氮氧混合气桶", + "item.tfg.compressed_heliox_bucket": "氦氧混合气桶", + "item.tfg.compressed_heliox_3_bucket": "氦氧-3混合气桶", + "item.tfg.compressed_trimix_bucket": "50/30/20 三元混合气桶", + "item.tfg.compressed_trimix_3_bucket": "50/30/20 三元-3混合气桶", + "item.tfg.semiheavy_ammoniacal_water_bucket": "半重氨水桶", + "item.tfg.harvest_basket": "收获篮", + "item.tfg.aluminium_harvest_basket": "铝制收获篮", + "item.tfg.wood.lumber.aeronos": "空果木材", + "item.tfg.wood.lumber.strophar": "孑节木材", + "item.tfg.wood.lumber.glacian": "融冰木材", + "item.tfg.glacian_wool": "冰川羊毛", + "item.tfg.sniffer_wool": "嗅探兽毛", + "item.tfg.aes_polyurethane": "生物AES增强R-聚氨酯泡沫", + "item.tfg.mli_shielding": "多层绝缘屏蔽层", + "item.tfg.rocket_cone_t3": "高级火箭鼻锥", + "item.tfg.rocket_fin_t3": "高级火箭尾翼", + "item.tfg.elite_power_thruster": "§a精英电力推进器", + "item.tfg.silica_aerogel": "硅气凝胶", + "item.tfg.better_space_suit_fabric": "自适应航天服面料", + "item.tfg.universal_compost_browns": "通用棕色堆肥材料", + "item.tfg.universal_compost_greens": "通用绿色堆肥材料", + "item.tfg.etching_diamond_tip": "蚀刻钻石钻头", + "item.tfg.spade_head_extruder_mold": "挤压模具(锹头)", + "item.tfg.mining_hammer_head_extruder_mold": "挤压模具(采矿锤头)", + "item.tfg.sword_head_extruder_mold": "挤压模具(剑头)", + "item.tfg.pickaxe_head_extruder_mold": "挤压模具(镐头)", + "item.tfg.shovel_head_extruder_mold": "挤压模具(铲头)", + "item.tfg.axe_head_extruder_mold": "挤压模具(斧头)", + "item.tfg.hoe_head_extruder_mold": "挤压模具(锄头)", + "item.tfg.scythe_head_extruder_mold": "挤压模具(镰刀头)", + "item.tfg.file_head_extruder_mold": "挤压模具(锉头)", + "item.tfg.hammer_head_extruder_mold": "挤压模具(锤头)", + "item.tfg.saw_head_extruder_mold": "挤压模具(锯头)", + "item.tfg.knife_head_extruder_mold": "挤压模具(小刀头)", + "item.tfg.butchery_knife_head_extruder_mold": "挤压模具(屠宰刀头)", + "item.tfg.propick_head_extruder_mold": "挤压模具(探矿镐头)", + "item.tfg.javelin_head_extruder_mold": "挤压模具(标枪头)", + "item.tfg.chisel_head_extruder_mold": "挤压模具(凿头)", + "item.tfg.mace_head_extruder_mold": "挤压模具(钉锤头)", + "item.tfg.mattock_head_extruder_mold": "挤压模具(鹤嘴锄头)", + "item.tfg.fish_hook_extruder_mold": "挤压模具(鱼钩)", + "item.tfg.whisk_extruder_mold": "挤压模具(搅拌器)", + "item.tfg.screwdriver_tip_extruder_mold": "挤压模具(螺丝刀头)", + "item.tfg.wrench_tip_extruder_mold": "挤压模具(扳手头)", + "item.tfg.wire_cutter_head_extruder_mold": "挤压模具(剪线钳头)", + "item.tfg.small_casing_extruder_mold": "挤压模具(小型弹壳)", + "item.tfg.shell_casing_extruder_mold": "挤压模具(霰弹弹壳)", + "item.tfg.large_casing_extruder_mold": "挤压模具(大型弹壳)", + "item.tfg.photo_cell_t1": "基础光伏电池", + "item.tfg.electric_extendo_grip": "电动伸缩机械手", + "item.tfg.treated_chipboard_composite": "处理过的刨花板复合材料", + "item.tfg.high_density_treated_fiberboard": "处理过的中密度纤维板", + "item.tfg.sniffer_egg": "嗅探兽蛋", + "item.tfg.wraptor_wool": "矿物丰饶羽绒", + "item.tfg.wraptor_egg": "扭曲鸟蛋", + "item.tfg.wraptor_sugar": "扭曲鸟糖", + "item.tfg.twigs.aeronos": "空果树枝", + "item.tfg.twigs.strophar": "孑节树枝", + "item.tfg.twigs.glacian": "融冰树枝", + "item.tfg.twigs.alphacene": "阿尔法辛树枝", + "item.tfg.flax_seeds": "亚麻种子", + "item.tfg.flax_product": "亚麻茎杆", + "item.tfg.flax_line": "亚麻粗纤维", + "item.tfg.flax_tow": "亚麻细纤维", + "item.tfg.flax_waste": "刮削过的亚麻", + "item.tfg.linen_thread": "亚麻线", + "item.tfg.linen_cloth": "亚麻布", + "item.tfg.uv_led": "§d紫外§f发光二极管", + "item.tfg.smd_uv_led": "§f贴片§d紫外§f发光二极管", + "material.tfg.latex": "乳胶", + "material.tfg.vulcanized_latex": "硫化乳胶", + "material.tfg.fluix": "福鲁伊克斯", + "material.tfg.conifer_pitch": "松脂", + "material.gtceu.lactose": "乳糖", + "material.tfg.gabbro": "辉长岩", + "material.tfg.shale": "页岩", + "material.tfg.claystone": "粘土岩", + "material.tfg.limestone": "石灰岩", + "material.tfg.conglomerate": "砾岩", + "material.tfg.dolomite": "白云岩", + "material.tfg.chert": "燧石", + "material.tfg.rhyolite": "流纹岩", + "material.tfg.dacite": "英安岩", + "material.tfg.slate": "板岩", + "material.tfg.phyllite": "千枚岩", + "material.tfg.schist": "片岩", + "material.tfg.gneiss": "片麻岩", + "material.tfg.chalk": "白垩岩", + "material.tfg.moon_stone": "斜长岩", + "material.tfg.moon_deepslate": "苏长岩", + "material.tfg.mars_stone": "泥板岩", + "material.tfg.venus_stone": "粗面岩", + "material.tfg.mercury_stone": "科马提岩", + "material.tfg.glacio_stone": "响岩", + "material.gtceu.thermochemically_treated_hardwood": "热化学处理硬木", + "material.gtceu.hardwood": "硬木", + "material.gtceu.asurine": "皓蓝石", + "material.tfg.kaolinite": "高岭石", + "material.tfg.vitrified_pearl": "玻璃化末影", + "material.tfg.aes_mix": "碱土硅酸盐混合物", + "material.tfg.molten_aes": "熔融碱土硅酸盐", + "material.tfg.compressed_nitrox": "压缩氮氧混合气", + "material.tfg.compressed_heliox": "压缩氦氧混合气", + "material.tfg.compressed_heliox_3": "压缩氦氧混合气-3", + "material.tfg.compressed_trimix": "压缩 50/30/20 三元混合气", + "material.tfg.compressed_trimix_3": "压缩 50/30/20 三元混合气-3 ", + "material.tfg.chlorodifluoromethane": "氯二氟甲烷", + "material.tfg.acetylene": "乙炔", + "material.tfg.1_1_1_2_tetrafluoroethane": "1,1,1,2-四氟乙烷", + "material.tfg.isobutane": "异丁烷", + "material.tfg.chloryl_fluoride": "氟化氯酰", + "material.tfg.chlorine_pentafluoride": "五氟化氯", + "material.tfg.solar_coolant": "太阳能冷却液", + "material.tfg.solar_coolant_tier2": "航空级太阳能冷却液", + "material.tfg.sodium_hydride": "氢化钠", + "material.tfg.boric_acid": "硼酸", + "material.tfg.trimethyl_borate": "硼酸三甲酯", + "material.tfg.sodium_borohydride": "硼氢化钠", + "material.tfg.sodium_methoxide": "甲醇钠", + "material.tfg.ammonia_borane": "氨硼烷", + "material.tfg.aniline": "苯胺", + "material.tfg.dimethyl_carbonate": "碳酸二甲酯", + "material.tfg.methyl_phenylcarbamate": "N-苯基氨基甲酸甲酯", + "material.tfg.methylene_diphenyl_dicarbamate": "4,4'-亚甲基二苯基二甲酯", + "material.tfg.methylene_diphenyl_diisocyanate": "4,4'-二苯基甲烷二异氰酸酯", + "material.tfg.tmos": "四甲氧基硅烷", + "material.tfg.silica_gel": "硅胶", + "material.tfg.soaked_silica_gel": "丙酮浸渍硅胶", + "material.tfg.nuclear_residue": "核废料", + "material.tfg.oxidized_nuclear_residue": "氧化核废料", + "material.tfg.refined_nuclear_residue": "精炼核废料", + "material.tfg.certus_regolith": "赛特斯风化土", + "material.tfg.goethe_regolith": "歌德风化土", + "material.tfg.bright_regolith": "亮泽风化土", + "material.tfg.cassiterite_regolith": "锡石风化土", + "material.tfg.regolith_mush": "泥泞风化土", + "material.tfg.heavy_water": "重水", + "material.tfg.semiheavy_water": "半重水", + "ore_vein.tfg.deep_sheldonite": "硫铂矿, 斑铜矿", + "ore_vein.tfg.deep_garnet_amethyst": "紫水晶, 石榴石", + "ore_vein.tfg.deep_garnet_opal": "蛋白石, 石榴石", + "ore_vein.tfg.deep_gold": "金矿 (深层)", + "ore_vein.tfg.deep_hematite": "赤铁矿, 针铁矿, 红宝石", + "ore_vein.tfg.deep_limonite": "针铁矿, 孔雀石", + "ore_vein.tfg.deep_magnetite": "铬铁矿, 磁铁矿", + "ore_vein.tfg.deep_molybdenum": "钼铅矿, 辉钼矿", + "ore_vein.tfg.deep_pitchblende": "晶质铀矿, 沥青铀矿", + "ore_vein.tfg.deep_sapphire": "蓝宝石, 铁铝榴石", + "ore_vein.tfg.deep_scheelite": "白钨矿, 钨酸锂", + "ore_vein.tfg.deep_topaz": "黄玉, 辉铜矿", + "ore_vein.tfg.normal_apatite": "磷灰石, 烧绿石", + "ore_vein.tfg.normal_basaltic_sands": "矿砂", + "ore_vein.tfg.normal_beryllium": "绿宝石, 铍矿", + "ore_vein.tfg.normal_bismuthinite": "辉铋矿 (普通)", + "ore_vein.tfg.normal_cassiterite": "锡石矿 (普通)", + "ore_vein.tfg.normal_coal": "煤炭", + "ore_vein.tfg.normal_copper": "铜矿, 黄铜矿", + "ore_vein.tfg.normal_garnet_tin": "石榴石, 锡石矿砂", + "ore_vein.tfg.normal_garnierite": "硅镁镍矿, 辉钴矿", + "ore_vein.tfg.normal_gold": "金矿, 褐铁矿, 赤铁矿", + "ore_vein.tfg.normal_graphite": "石墨, 钻石", + "ore_vein.tfg.normal_gypsum": "石膏, 方解石", + "ore_vein.tfg.normal_hematite": "赤铁矿, 褐铁矿", + "ore_vein.tfg.normal_lapis": "青金石, 蓝金石, 方钠石", + "ore_vein.tfg.normal_limonite": "褐铁矿", + "ore_vein.tfg.normal_lubricant": "皂石, 滑石, 天然碱", + "ore_vein.tfg.normal_magnetite": "磁铁矿, 钒", + "ore_vein.tfg.normal_manganese": "锰矿, 钽矿", + "ore_vein.tfg.normal_mica": "蓝晶石, 云母, 铝土矿", + "ore_vein.tfg.normal_monazite": "氟碳镧铈矿, 独居石", + "ore_vein.tfg.normal_oilsands": "油砂", + "ore_vein.tfg.normal_olivine": "膨润土, 橄榄石", + "ore_vein.tfg.normal_quartz": "石英", + "ore_vein.tfg.normal_redstone": "红石, 朱砂, 红宝石", + "ore_vein.tfg.normal_salt": "盐, 硼砂", + "ore_vein.tfg.normal_saltpeter": "硝石, 电石", + "ore_vein.tfg.normal_silver": "银矿, 方铅矿, 铅矿", + "ore_vein.tfg.normal_sphalerite": "闪锌矿, 黄铁矿", + "ore_vein.tfg.normal_spodumene": "锂辉石, 锂云母", + "ore_vein.tfg.normal_sulfur": "硫, 黄铁矿", + "ore_vein.tfg.normal_tetrahedrite": "黝铜矿 (普通)", + "ore_vein.tfg.surface_bismuthinite": "辉铋矿", + "ore_vein.tfg.surface_cassiterite": "锡石矿", + "ore_vein.tfg.surface_copper": "黄铜矿, 雄黄", + "ore_vein.tfg.surface_sphalerite": "闪锌矿, 硫", + "ore_vein.tfg.surface_tetrahedrite": "黝铜矿 (地表)", + "ore_vein.tfg.deep_mars_chromite": "Redstone & Chromite", + "ore_vein.tfg.deep_mars_pitchblende": "Pitchblende, Thorium, & Uraninite", + "ore_vein.tfg.deep_mars_sheldonite": "Bornite & Cooperite", + "ore_vein.tfg.mars_almandine": "Almandine & Sapphire", + "ore_vein.tfg.mars_apatite": "磷灰石, 烧绿石", + "ore_vein.tfg.mars_beryllium": "绿宝石, 铍矿", + "ore_vein.tfg.mars_coal": "Coal & Hematite", + "ore_vein.tfg.mars_copper": "铜矿, 黄铜矿", + "ore_vein.tfg.mars_galena": "银矿, 方铅矿, 铅矿", + "ore_vein.tfg.mars_sapphire": "Gold, Electrotine, & Bauxite", + "ore_vein.tfg.mars_hematite": "赤铁矿, 褐铁矿", + "ore_vein.tfg.mars_lubricant": "Soapstone, Talc, & Glauconite", + "ore_vein.tfg.mars_neodynium": "氟碳镧铈矿, 独居石", + "ore_vein.tfg.mars_nickel": "硅镁镍矿, 辉钴矿", + "ore_vein.tfg.mars_pitchblende": "Pitchblende, Thorium, & Hematite", + "ore_vein.tfg.mars_quartzite": "Quartzite, Asbestos, & Barite", + "ore_vein.tfg.mars_salt": "Salts & Spodumene", + "ore_vein.tfg.mars_stibnite": "黝铜矿 (普通)", + "ore_vein.tfg.mars_sulfur": "闪锌矿, 黄铁矿", + "ore_vein.tfg.mars_tantalite": "锰矿, 钽矿", + "ore_vein.tfg.mars_tungsten": "白钨矿, 钨酸锂", + "ore_vein.tfg.surface_hematite": "赤铁矿, 褐铁矿", + "ore_vein.tfg.surface_nickel_galena": "Sphalerite & Galena", + "ore_vein.tfg.moon_apatite": "磷灰石, 烧绿石", + "ore_vein.tfg.moon_bauxite": "铝土矿, 钛铁矿", + "ore_vein.tfg.moon_beryllium": "绿宝石, 铍矿", + "ore_vein.tfg.moon_cassiterite": "锡石矿, 黄铜矿", + "ore_vein.tfg.moon_sheldonite": "硫铂矿, 斑铜矿", + "ore_vein.tfg.moon_desh": "戴斯矿, 钛铁矿", + "ore_vein.tfg.moon_garnet": "紫水晶, 蛋白石, 石榴石", + "ore_vein.tfg.moon_garnierite": "硅镁镍矿, 辉钴矿", + "ore_vein.tfg.moon_gold": "金矿, 磁铁矿", + "ore_vein.tfg.moon_graphite": "石墨, 钻石", + "ore_vein.tfg.moon_gypsum": "石膏, 方解石", + "ore_vein.tfg.moon_lubricant": "皂石, 滑石, 天然碱", + "ore_vein.tfg.moon_magnetite": "铬铁矿, 磁铁矿", + "ore_vein.tfg.moon_manganese": "锰矿, 钽矿", + "ore_vein.tfg.moon_mica": "蓝晶石, 云母, 铝土矿", + "ore_vein.tfg.moon_molybdenum": "钼铅矿, 辉钼矿", + "ore_vein.tfg.moon_monazite": "氟碳镧铈矿, 独居石", + "ore_vein.tfg.moon_pyrolusite": "软锰矿 & 钴矿", + "ore_vein.tfg.moon_quartz": "赛特斯石英矿", + "ore_vein.tfg.moon_redstone": "红石, 朱砂, 红宝石", + "ore_vein.tfg.moon_saltpeter": "硝石, 电石", + "ore_vein.tfg.moon_sapphire": "蓝宝石, 铁铝榴石", + "ore_vein.tfg.moon_scheelite": "白钨矿, 钨酸锂", + "ore_vein.tfg.moon_silver": "银矿, 方铅矿, 铅矿", + "ore_vein.tfg.moon_sphalerite": "闪锌矿, 黄铁矿", + "ore_vein.tfg.moon_tetrahedrite": "黝铜矿, 辉铜矿", + "ore_vein.tfg.moon_topaz": "黄玉, 辉铜矿", + "ore_vein.tfg.nether_anthracite": "无烟煤", + "ore_vein.tfg.nether_apatite": "磷灰石, 烧绿石", + "ore_vein.tfg.nether_basaltic_sands": "矿砂", + "ore_vein.tfg.nether_beryllium": "绿宝石, 铍矿", + "ore_vein.tfg.nether_cassiterite": "锡石矿", + "ore_vein.tfg.nether_sheldonite": "硫铂矿, 斑铜矿", + "ore_vein.tfg.nether_copper": "铜矿, 黄铜矿", + "ore_vein.tfg.nether_garnet": "紫水晶, 蛋白石, 石榴石", + "ore_vein.tfg.nether_garnet_tin": "石榴石, 锡石矿砂", + "ore_vein.tfg.nether_garnierite": "硅镁镍矿, 辉钴矿", + "ore_vein.tfg.nether_goethite": "针铁矿", + "ore_vein.tfg.nether_gold": "金矿, 赤铁矿", + "ore_vein.tfg.nether_graphite": "石墨, 钻石", + "ore_vein.tfg.nether_gypsum": "石膏, 方解石", + "ore_vein.tfg.nether_hematite": "赤铁矿, 褐铁矿", + "ore_vein.tfg.nether_lapis": "青金石, 蓝金石, 方钠石", + "ore_vein.tfg.nether_lubricant": "皂石, 滑石, 天然碱", + "ore_vein.tfg.nether_magnetite": "铬铁矿", + "ore_vein.tfg.nether_manganese": "锰矿, 钽矿", + "ore_vein.tfg.nether_mica": "蓝晶石, 云母, 铝土矿", + "ore_vein.tfg.nether_molybdenum": "钼铅矿, 辉钼矿", + "ore_vein.tfg.nether_monazite": "氟碳镧铈矿, 独居石", + "ore_vein.tfg.nether_naquadah": "硅岩, 钚矿", + "ore_vein.tfg.nether_olivine": "膨润土, 橄榄石", + "ore_vein.tfg.nether_pitchblende": "晶质铀矿, 沥青铀矿", + "ore_vein.tfg.nether_quartz": "下界石英", + "ore_vein.tfg.nether_redstone": "红石, 朱砂, 红宝石", + "ore_vein.tfg.nether_saltpeter": "硝石, 电石", + "ore_vein.tfg.nether_sapphire": "蓝宝石, 铁铝榴石", + "ore_vein.tfg.nether_scheelite": "白钨矿, 钨酸锂", + "ore_vein.tfg.nether_silver": "银矿, 方铅矿, 铅矿", + "ore_vein.tfg.nether_sphalerite": "闪锌矿, 黄铁矿", + "ore_vein.tfg.nether_sulfur": "硫, 黄铁矿", + "ore_vein.tfg.nether_sylvite": "钾石盐", + "ore_vein.tfg.nether_tetrahedrite": "黝铜矿", + "ore_vein.tfg.nether_topaz": "黄玉, 辉铜矿", + "tfg.creative_tab.tfg": "群峦格雷(现代版)", + "tfg.disabled_portal": "传送门魔法似乎被未知力量阻挡,请尝试通过向下或向上探索前往其他维度", + "tfg.tooltip.food_trait.refrigerating": "§b冷藏保鲜", + "tfg.tooltip.foodtrait.freeze_dried": "冻干处理", + "tfg.tooltip.extraterrestrial_farming": "§4温度:§r富氧环境可提供15°C", + "entity.tfg.moon_rabbit.male": "月兔", + "entity.tfg.moon_rabbit.female": "月兔", + "tfg.tooltip.moon_rabbit_variant.pink": "粉彩绒毛", + "tfg.tooltip.moon_rabbit_variant.white": "雪白绒毛", + "tfg.tooltip.moon_rabbit_variant.grey": "石灰色绒毛", + "tfg.tooltip.moon_rabbit_variant.cyan": "海沫青绒毛", + "tfg.tooltip.moon_rabbit_variant.purple": "薰衣草绒毛", + "tfg.tooltip.moon_rabbit_variant.sofu": "圣代绒毛", + "entity.tfg.glacian_ram.male": "冰原公羊", + "entity.tfg.glacian_ram.female": "冰原母羊", + "tfg.tooltip.attribution.glacian_ram": "§9§o版权归属:Ad Astra", + "entity.tfg.sniffer.male": "嗅探兽", + "entity.tfg.sniffer.female": "嗅探兽", + "tfg.tooltip.attribution.sniffer": "§9§o版权归属:Minecraft", + "item.treetap.tap": "已弃用物品,请合成升级", + "item.gtceu.zinc_ingot": "已弃用物品,请合成升级", + "item.gtceu.brass_ingot": "已弃用物品,请合成升级", + "item.gtceu.vanadium_ingot": "已弃用物品,请合成升级", + "item.gtceu.black_steel_ingot": "已弃用物品,请合成升级", + "item.gtceu.red_steel_ingot": "已弃用物品,请合成升级", + "item.gtceu.blue_steel_ingot": "已弃用物品,请合成升级", + "item.gtceu.iron_double_ingot": "已弃用物品,请合成升级", + "item.gtceu.black_steel_double_ingot": "已弃用物品,请合成升级", + "item.gtceu.red_steel_double_ingot": "已弃用物品,请合成升级", + "item.gtceu.blue_steel_double_ingot": "已弃用物品,请合成升级", + "item.gtceu.zinc_nugget": "已弃用物品,请合成升级", + "item.gtceu.brass_nugget": "已弃用物品,请合成升级", + "item.gtceu.copper_nugget": "已弃用物品,请合成升级", + "item.gtceu.vanadium_nugget": "已弃用物品,请合成升级", + "item.gtceu.copper_plate": "已弃用物品,请合成升级", + "item.gtceu.brass_plate": "已弃用物品,请合成升级", + "item.gtceu.gold_plate": "已弃用物品,请合成升级", + "item.gtceu.iron_plate": "已弃用物品,请合成升级", + "item.gtceu.cobalt_plate": "已弃用物品,请合成升级", + "item.gtceu.rose_gold_plate": "已弃用物品,请合成升级", + "item.gtceu.aluminium_plate": "已弃用物品,请合成升级", + "item.gtceu.invar_plate": "已弃用物品,请合成升级", + "item.gtceu.lead_plate": "已弃用物品,请合成升级", + "item.gtceu.nickel_plate": "已弃用物品,请合成升级", + "item.gtceu.osmium_plate": "已弃用物品,请合成升级", + "item.gtceu.palladium_plate": "已弃用物品,请合成升级", + "item.gtceu.platinum_plate": "已弃用物品,请合成升级", + "item.gtceu.rhodium_plate": "已弃用物品,请合成升级", + "item.gtceu.silver_plate": "已弃用物品,请合成升级", + "item.gtceu.vanadium_plate": "已弃用物品,请合成升级", + "item.gtceu.zinc_plate": "已弃用物品,请合成升级", + "item.gtceu.vanadium_block": "已弃用物品,请合成升级", + "item.gtceu.zinc_block": "已弃用物品,请合成升级", + "item.gtceu.brass_block": "已弃用物品,请合成升级", + "item.gtceu.gold_purified_ore": "已弃用物品,请合成升级", + "item.gtceu.copper_purified_ore": "已弃用物品,请合成升级", + "item.gtceu.zinc_purified_ore": "已弃用物品,请合成升级", + "item.gtceu.silver_purified_ore": "已弃用物品,请合成升级", + "item.gtceu.tin_purified_ore": "已弃用物品,请合成升级", + "item.gtceu.lead_purified_ore": "已弃用物品,请合成升级", + "gtceu:rich_raw_copper": "已弃用物品,请合成升级", + "gtceu:poor_raw_copper": "已弃用物品,请合成升级", + "gtceu:rich_raw_gold": "已弃用物品,请合成升级", + "gtceu:poor_raw_gold": "已弃用物品,请合成升级", + "gtceu:rich_raw_tetrahedrite": "已弃用物品,请合成升级", + "gtceu:raw_tetrahedrite": "已弃用物品,请合成升级", + "gtceu:poor_raw_tetrahedrite": "已弃用物品,请合成升级", + "gtceu:rich_raw_malachite": "已弃用物品,请合成升级", + "gtceu:raw_malachite": "已弃用物品,请合成升级", + "gtceu:poor_raw_malachite": "已弃用物品,请合成升级", + "gtceu:rich_raw_hematite": "已弃用物品,请合成升级", + "gtceu:raw_hematite": "已弃用物品,请合成升级", + "gtceu:poor_raw_hematite": "已弃用物品,请合成升级", + "gtceu:rich_raw_cassiterite": "已弃用物品,请合成升级", + "gtceu:raw_cassiterite": "已弃用物品,请合成升级", + "gtceu:poor_raw_cassiterite": "已弃用物品,请合成升级", + "gtceu:rich_raw_bismuth": "已弃用物品,请合成升级", + "gtceu:raw_bismuth": "已弃用物品,请合成升级", + "gtceu:poor_raw_bismuth": "已弃用物品,请合成升级", + "gtceu:rich_raw_magnetite": "已弃用物品,请合成升级", + "gtceu:raw_magnetite": "已弃用物品,请合成升级", + "gtceu:poor_raw_magnetite": "已弃用物品,请合成升级", + "gtceu:rich_raw_yellow_limonite": "已弃用物品,请合成升级", + "gtceu:raw_yellow_limonite": "已弃用物品,请合成升级", + "gtceu:poor_raw_yellow_limonite": "已弃用物品,请合成升级", + "gtceu:rich_raw_silver": "已弃用物品,请合成升级", + "gtceu:raw_silver": "已弃用物品,请合成升级", + "gtceu:poor_raw_silver": "已弃用物品,请合成升级", + "gtceu:rich_raw_garnierite": "已弃用物品,请合成升级", + "gtceu:raw_garnierite": "已弃用物品,请合成升级", + "gtceu:poor_raw_garnierite": "已弃用物品,请合成升级", + "gtceu:rich_raw_sphalerite": "已弃用物品,请合成升级", + "gtceu:raw_sphalerite": "已弃用物品,请合成升级", + "gtceu:poor_raw_sphalerite": "已弃用物品,请合成升级", + "trim_material.tfc.almandine_tfc": "铁铝榴石", + "trim_material.tfc.andradite_tfc": "钙铁榴石", + "trim_material.tfc.blue_topaz_tfc": "蓝黄玉", + "trim_material.tfc.cinnabar_tfc": "朱砂", + "trim_material.tfc.coal_tfc": "煤炭", + "trim_material.tfc.diamond_tfc": "钻石", + "trim_material.tfc.emerald_tfc": "绿宝石", + "trim_material.tfc.green_sapphire_tfc": "绿色蓝宝石", + "trim_material.tfc.grossular_tfc": "钙铝榴石", + "trim_material.tfc.rutile_tfc": "金红石", + "trim_material.tfc.lazurite_tfc": "青金石", + "trim_material.tfc.pyrope_tfc": "镁铝榴石", + "trim_material.tfc.rock_salt_tfc": "岩盐", + "trim_material.tfc.ruby_tfc": "红宝石", + "trim_material.tfc.salt_tfc": "盐", + "trim_material.tfc.sapphire_tfc": "蓝宝石", + "trim_material.tfc.sodalite_tfc": "方钠石", + "trim_material.tfc.coke_tfc": "焦煤", + "trim_material.tfc.spessartine_tfc": "锰铝榴石", + "trim_material.tfc.topaz_tfc": "黄玉", + "trim_material.tfc.uvarovite_tfc": "钙铬榴石", + "trim_material.tfc.nether_quartz_tfc": "下界石英", + "trim_material.tfc.certus_quartz_tfc": "赛特斯石英", + "trim_material.tfc.quartzite_tfc": "石英岩", + "trim_material.tfc.realgar_tfc": "雄黄", + "trim_material.tfc.malachite_tfc": "孔雀石", + "trim_material.tfc.glass_tfc": "玻璃", + "trim_material.tfc.olivine_tfc": "橄榄石", + "trim_material.tfc.opal_tfc": "蛋白石", + "trim_material.tfc.amethyst_tfc": "紫水晶", + "trim_material.tfc.lapis_tfc": "青金石", + "trim_material.tfc.apatite_tfc": "磷灰石", + "trim_material.tfc.red_garnet_tfc": "红色石榴石", + "trim_material.tfc.yellow_garnet_tfc": "黄色石榴石", + "trim_material.tfc.monazite_tfc": "独居石", + "trim_material.tfc.rose_quartz_tfc": "玫瑰石英", + "trim_material.tfc.fluix_tfc": "福鲁伊克斯", + "trim_material.tfc.silver_tfc": "银", + "trim_material.tfc.sterling_silver_tfc": "纯银", + "trim_material.tfc.gold_tfc": "金", + "trim_material.tfc.rose_gold_tfc": "玫瑰金", + "trim_material.tfc.nickel_tfc": "镍", + "trim_material.tfc.platinum_tfc": "铂", + "trim_material.tfc.titanium_tfc": "钛", + "trim_material.tfc.bismuth_tfc": "铋", + "trim_material.tfc.neutronium_tfc": "中子素", + "trim_material.tfc.pyrite_tfc": "黄铁矿", + "trim_material.tfc.redx_tfc": "红色X", + "tfg.emi.ore_veins.rock_types": "存在于岩石类型:", + "tfg.emi.ore_veins.rarity": "稀有度:%d", + "tfg.emi.ore_veins.density": "密度:%d", + "tfg.emi.ore_veins.y_ranges": "深度:%d 至 %d", + "tfg.emi.ore_veins.size": "尺寸:%d", + "tfg.emi.ore_veins.height": "高度:%d", + "tfg.emi.ore_veins.radius": "半径:%d", + "emi.category.tfg.ore_vein_info": "矿脉信息", + "tfg.toast.ore_prospector_none": "范围内未发现矿石。", + "tfg.toast.ore_prospector_message": "在此方向 %s §6格范围内发现矿石:%s", + "tfg.tooltip.ore_prospector_stats": "扫描范围:%s,截面:%s x %s。", + "tfg.tooltip.ore_prospector_count": "此勘探器将显示矿石数量。", + "tfg.tooltip.ore_prospector_xray": "此勘探器将显示矿石方块的 %s X射线视图。", + "tfg.tooltip.ore_prospector_mode_vein": "按矿脉", + "tfg.tooltip.ore_prospector_mode_block": "按方块", + "tfg.hangglider.disabled_dimension": "您无法在此维度使用悬挂式滑翔翼!", + "tfg.tooltip.nametag": "§7在书写桌上配合物品使用以命名该物品,或配合黑色染料来命名标签。", + "tfg.tooltip.yeast_starter": "§7用干果制成", + "tfg.tooltip.beehive": "§7需要填满空框,并周围种植花朵,以吸引蜜蜂。", + "tfg.tooltip.obsolete.tree_tap": "§4已淘汰§f:已被 AFC 树汁导管取代,你可以通过把这个物品放在工作台上制作出它!", + "tfg.tooltip.obsolete.fridge": "§4已过时§f:已被TFG冰箱取代,你可以通过将这个物品放在工作台上制作出它!", + "tfg.tooltip.blaze_burner": "§c超高温§r §7使用焦炭、无烟煤或完美与精致的煤炭宝石。", + "tfg.tooltip.machine.perfect_overclock": "这台机器具有§2完美超频§r!", + "tfg.tooltip.nether_dome_1": "§7人工环境,用于模拟下界。", + "tfg.tooltip.machine.customize_interior": "§7内部可定制!请在JEI中查看多块预览。", + "tfg.tooltip.end_dome_1": "§7人工环境,用于模拟末地。", + "tfg.tooltip.armor.copper_diving_suit_warmth": "§7温暖度:-1", + "tfg.tooltip.armor.copper_diving_suit_insulation": "§7隔热:+1", + "tfg.tooltip.armor.netherite_diving_suit_warmth": "§7温暖值:-2", + "tfg.tooltip.armor.netherite_diving_suit_insulation": "§7隔热:+9", + "tfg.tooltip.armor.netherite_diving_suit_set": "§7穿戴整套以获得§e耐热§7效果,抵御环境温度。", + "tfg.tooltip.armor.nanomuscle_warmth": "§7温暖度:0", + "tfg.tooltip.armor.nanomuscle_insulation": "§7隔热:+10", + "tfg.tooltip.armor.nanomuscle_set": "§7穿戴整套装备可使你完全隔热,不受环境温度影响。", + "tfg.tooltip.armor.quarktech_warmth": "§7温暖度:0", + "tfg.tooltip.armor.quarktech_insulation": "§7隔热:+10", + "tfg.tooltip.armor.quarktech_set": "§7穿戴整套装备可使你完全隔热,不受环境温度影响。", + "tfg.tooltip.armor.space_suit_warmth": "§7温暖度:0", + "tfg.tooltip.armor.space_suit_insulation": "§7隔热:+10", + "tfg.tooltip.armor.space_suit_set": "§7穿戴整套装备可使你完全隔热,不受环境温度影响。", + "tfg.tooltip.support.tier1": "§79 x 5 x 9", + "tfg.tooltip.support.tier2": "§717 x 9 x 17", + "tfg.tooltip.support.tier3": "§733 x 13 x 33", + "tfg.tooltip.vessels": "§c最大值:3024mB", + "tfg.tooltip.solar_panel.single": "在§6月球§r的§6白天§r期间产生§6128 FE/t§r(32 EU/t)", + "tfg.tooltip.solar_panel.large_tier1": "§6月球§r上的巨型结构,在§6白天§r可产生 §61024 至 4096 EU/t§r", + "tfg.tooltip.solar_panel.large_tier2": "§6月球§r上的巨型结构,在§6白天§r可产生 §64096 至 16386 EU/t§r", + "tfg.tooltip.solar_panel.large_tier3": "§6月球§r上的巨型结构,在§6白天§r可产生 §616384 至 65536 EU/t§r", + "tfg.tooltip.petrified_egg": "§7需要熔岩孵化", + "tfg.tooltip.obsolete.depreciated": "§c已弃用,无法再合成", + "entity.tfg.wraptor.male": "扭曲鸟", + "entity.tfg.wraptor.female": "扭曲鸟", + "tfg.tooltip.attribution.wraptor": "§9§o版权归属:Species", + "tfg.tooltip.large_egg": "§7只能在§o巨巢§r§7中孵化", + "tfg.tooltip.sniffer_wool": "§7采集自嗅探兽背后", + "tfg.tooltip.wraptor_wool": "§7采集自扭曲鸟羽毛", + "tfg.tooltip.wraptor_sugar": "§7别想太多", + "effect.tfg.cooling": "§b降温", + "effect.tfg.warming": "§6保暖", + "tfg.tooltip.cooling_foods": "§b使你体温降低:2°C", + "tfg.tooltip.cooling_foods_strong": "§b使你体温降低:10°C", + "tfg.tooltip.warming_foods": "§6使你体温升高:4°C", + "tfc.jei.flint_knapping": "燧石打制", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.black": "染色", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.gray": "染色", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.light_gray": "染色", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.white": "染色", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.pink": "染色", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.magenta": "染色", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.purple": "染色", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.blue": "染色", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.light_blue": "染色", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.cyan": "染色", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.green": "染色", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.lime": "染色", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.yellow": "染色", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.orange": "染色", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.red": "染色", + "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.brown": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_black_block_on": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_gray_block_on": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_light_gray_block_on": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_white_block_on": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_pink_block_on": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_magenta_block_on": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_purple_block_on": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_blue_block_on": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_light_blue_block_on": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_cyan_block_on": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_green_block_on": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_lime_block_on": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_yellow_block_on": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_orange_block_on": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_red_block_on": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_brown_block_on": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_black_block": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_gray_block": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_light_gray_block": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_white_block": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_pink_block": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_magenta_block": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_purple_block": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_blue_block": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_light_blue_block": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_cyan_block": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_green_block": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_lime_block": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_yellow_block": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_orange_block": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_red_block": "染色", + "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_brown_block": "染色", + "tfc.recipe.barrel.tfg.barrel.treated_chipboard_composite": "处理刨花板复合材料", + "tfc.recipe.barrel.tfg.barrel.soak_hardwood_strip": "浸泡硬木条", + "tfc.recipe.barrel.tfg.barrel.treated_wood_planks": "处理木板", + "tfc.recipe.barrel.tfg.barrel.packed_ice": "冻结冰块", + "tfc.recipe.barrel.tfg.barrel.cooling_water_1": "冷却水", + "tfc.recipe.barrel.tfg.barrel.cooling_water_2": "冷却水", + "tfc.recipe.barrel.tfg.barrel.cooling_water_3": "冷却水", + "tfc.recipe.barrel.tfg.barrel.cooling_water_4": "冷却水", + "tfc.recipe.barrel.tfg.sealed_barrel.prepared_leather_gloves": "浸泡皮革手套", + "tfc.recipe.barrel.tfg.barrel.rapeseed_to_oil": "提取菜籽油", + "tfc.recipe.barrel.tfg.barrel.sunflower_to_oil": "提取葵花籽油", + "gtceu.aqueous_accumulator": "蓄水器", + "tfg.food_recipe.brining": "盐水腌制", + "tfg.food_recipe.smoking": "熏制", + "tfg.food_recipe.drying": "干燥", + "tfg.food_recipe.freeze_drying": "冷冻干燥", + "tfg.recipe.macerator_warning": "高压阶段前仅输出第一格物品", + "tfg.grapplemod.repair": "修复配方,保留所有升级模块。§l切勿合并两个抓钩,否则将丢失全部升级!§r", + "tfg.grapplemod.upgrades.maxlen": "将§l最大长度§r提升20,最高可达200。", + "tfg.grapplemod.downgrades.maxlen": "将§l最大长度§r降低20,最低至20。(返还黄麻绳)", + "tfg.grapplemod.upgrades.motor.lv": "启用§l马达§r升级,自动收线。\n§l马达最大速度§r设为1\n§l马达加速度§r设为0.125", + "tfg.grapplemod.upgrades.motor.mv": "启用§l马达§r升级,自动收线。\n§l马达最大速度§r设为1.14\n§l马达加速度§r设为0.25", + "tfg.grapplemod.upgrades.motor.hv": "启用§l马达§r升级,自动收线。\n§l马达最大速度§r设为1.28\n§l马达加速度§r设为0.375", + "tfg.grapplemod.upgrades.motor.ev": "启用§l马达§r升级,自动收线。\n§l马达最大速度§r设为1.42\n§l马达加速度§r设为0.5", + "tfg.grapplemod.upgrades.motor.iv": "启用§l马达§r升级,自动收线。\n§l马达最大速度§r设为1.56\n§l马达加速度§r设为0.625", + "tfg.grapplemod.upgrades.motor.luv": "启用§l马达§r升级,自动收线。\n§l马达最大速度§r设为1.7\n§l马达加速度§r设为0.75", + "tfg.grapplemod.upgrades.motor.zpm": "启用§l马达§r升级,自动收线。\n§l马达最大速度§r设为1.84\n§l马达加速度§r设为0.875", + "tfg.grapplemod.upgrades.motor.uv": "启用§l马达§r升级,自动收线。\n§l马达最大速度§r设为2\n§l马达加速度§r设为1", + "tfg.grapplemod.downgrades.motor": "禁用§l马达§r升级,返还原始马达。\n仅当使用同类型马达时生效。", + "tfg.grapplemod.upgrades.smart_motor": "启用§l智能马达§r升级,需预先安装马达。", + "tfg.grapplemod.downgrades.smart_motor": "禁用§l智能马达§r升级,可在马达已卸载时移除。返还基础电子电路", + "tfg.grapplemod.upgrades.sticky": "启用§l粘性§r升级,使钩爪能粘附在绳索接触的任何方块上。", + "tfg.grapplemod.downgrades.sticky": "禁用§l粘性§r升级,返还粘性树脂", + "tfg.grapplemod.upgrades.forcefield.lv": "启用§l力场§r升级,抓钩时让你远离附近方块\n§l排斥力§r设为0.625", + "tfg.grapplemod.upgrades.forcefield.mv": "启用§l力场§r升级,抓钩时让你远离附近方块\n§l排斥力§r设为1.25", + "tfg.grapplemod.upgrades.forcefield.hv": "启用§l力场§r升级,抓钩时让你远离附近方块\n§l排斥力§r设为1.875", + "tfg.grapplemod.upgrades.forcefield.ev": "启用§l力场§r升级,抓钩时让你远离附近方块\n§l排斥力§r设为2.5", + "tfg.grapplemod.upgrades.forcefield.iv": "启用§l力场§r升级,抓钩时让你远离附近方块\n§l排斥力§r设为3.125", + "tfg.grapplemod.upgrades.forcefield.luv": "启用§l力场§r升级,抓钩时让你远离附近方块\n§l排斥力§r设为3.75", + "tfg.grapplemod.upgrades.forcefield.zpm": "启用§l力场§r升级,抓钩时让你远离附近方块\n§l排斥力§r设为4.375", + "tfg.grapplemod.upgrades.forcefield.uv": "启用§l力场§r升级,抓钩时让你远离附近方块\n§l排斥力§r设为5", + "tfg.grapplemod.downgrades.forcefield": "禁用§l力场§r升级,恢复原始力场发生器\n仅当使用同类型发生器时生效", + "tfg.grapplemod.upgrades.magnet.magnetic_iron_ingot": "启用§l磁力§r升级,使抓钩能吸附附近方块\n§l吸附半径§r设为1.25", + "tfg.grapplemod.upgrades.magnet.magnetic_steel_ingot": "启用§l磁力§r升级,使抓钩能吸附附近方块\n§l吸附半径§r设为2.5", + "tfg.grapplemod.upgrades.magnet.magnetic_neodymium_ingot": "启用§l磁力§r升级,使抓钩能吸附附近方块\n§l吸附半径§r设为3.75", + "tfg.grapplemod.upgrades.magnet.magnetic_samarium_ingot": "启用§l磁力§r升级,使抓钩能吸附附近方块\n§l吸附半径§r设为5", + "tfg.grapplemod.downgrades.magnet": "禁用§l磁力§r升级,返还原始磁化锭\n仅当使用同类型磁化锭时生效", + "tfg.grapplemod.upgrades.gravity.0.5": "降低抓钩的§l重力§r至50%(1 -> 0.5)", + "tfg.grapplemod.downgrades.gravity.0.5": "恢复抓钩的§l重力§r至100%(0.5 -> 1)\n你使用的氦气将填充回空桶", + "tfg.grapplemod.upgrades.gravity.0": "降低抓钩的§l重力§r至0%(1 -> 0)", + "tfg.grapplemod.downgrades.gravity.0": "恢复抓钩的§l重力§r至100%(0 -> 1)\n返还重力引擎单元", + "tfg.grapplemod.upgrades.throwspeed.lv": "提高钩爪的§l投掷速度§r,使其飞得更远。\n§l投掷速度§r设置为2.25", + "tfg.grapplemod.upgrades.throwspeed.mv": "提高钩爪的§l投掷速度§r,使其飞得更远。\n§l投掷速度§r设置为2.5", + "tfg.grapplemod.upgrades.throwspeed.hv": "提高钩爪的§l投掷速度§r,使其飞得更远。\n§l投掷速度§r设置为2.75", + "tfg.grapplemod.upgrades.throwspeed.ev": "提高钩爪的§l投掷速度§r,使其飞得更远。\n§l投掷速度§r设置为3", + "tfg.grapplemod.upgrades.throwspeed.iv": "提升钩爪的§l投掷速度§r,使其飞得更远。\n§l投掷速度§r设为3.25", + "tfg.grapplemod.upgrades.throwspeed.luv": "提升钩爪的§l投掷速度§r,使其飞得更远。\n§l投掷速度§r设为3.5", + "tfg.grapplemod.upgrades.throwspeed.zpm": "提升钩爪的§l投掷速度§r,使其飞得更远。\n§l投掷速度§r设为3.75", + "tfg.grapplemod.upgrades.throwspeed.uv": "提升钩爪的§l投掷速度§r,使其飞得更远。\n§l投掷速度§r设为4", + "tfg.grapplemod.downgrades.throwspeed": "将钩爪的§l投掷速度§r重置为默认值,并返还原始活塞。\n仅当使用同类型活塞时生效", + "tfg.grapplemod.upgrades.doublehook": "添加§l副钩§r至抓钩装置", + "tfg.grapplemod.downgrades.doublehook": "移除抓钩装置的§l副钩§r", + "tfg.grapplemod.upgrades.vertical_throwing_angle": "将抓钩§l垂直投掷角度§r提升5°,最高90°", + "tfg.grapplemod.downgrades.vertical_throwing_angle": "将抓钩§l垂直投掷角度§r降低5°,最低0°", + "tfg.grapplemod.upgrades.angle": "将§l双钩水平投掷角度§r增加5°,最高90°\n需先安装§l副钩§r", + "tfg.grapplemod.downgrades.angle": "将§l双钩水平投掷角度§r减少5°,最低5°\n需先安装§l副钩§r", + "tfc.jei.straw_knapping": "秸秆敲制" } \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/casings/bioculture_rotor_primary.json b/kubejs/assets/tfg/models/block/casings/bioculture_rotor_primary.json new file mode 100644 index 000000000..a3e06d48a --- /dev/null +++ b/kubejs/assets/tfg/models/block/casings/bioculture_rotor_primary.json @@ -0,0 +1,55 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "textures": { + "0": "tfg:block/casings/bioculture_rotor_primary_side", + "1": "tfg:block/casings/bioculture_rotor_primary_top", + "particle": "tfg:block/casings/bioculture_rotor_primary_top" + }, + "elements": [ + { + "name": "rotor", + "from": [0, 0, 0], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [16, 0, 0, 16], "texture": "#0"}, + "east": {"uv": [16, 0, 0, 16], "texture": "#0"}, + "south": {"uv": [16, 0, 0, 16], "texture": "#0"}, + "west": {"uv": [16, 0, 0, 16], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "down": {"uv": [16, 0, 0, 16], "texture": "#1"} + } + } + ], + "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, -135, 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] + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/casings/bioculture_rotor_primary_active.json b/kubejs/assets/tfg/models/block/casings/bioculture_rotor_primary_active.json new file mode 100644 index 000000000..ee72a9209 --- /dev/null +++ b/kubejs/assets/tfg/models/block/casings/bioculture_rotor_primary_active.json @@ -0,0 +1,70 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "textures": { + "0": "tfg:block/casings/bioculture_rotor_fluid_primary_side", + "1": "tfg:block/casings/bioculture_rotor_fluid_primary_top", + "2": "tfg:block/casings/bioculture_rotor_primary_side_active", + "3": "tfg:block/casings/bioculture_rotor_primary_top_active", + "particle": "tfg:block/casings/bioculture_rotor_primary_top_active" + }, + "elements": [ + { + "name": "rotor", + "from": [0, 0, 0], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [16, 0, 0, 16], "texture": "#2"}, + "east": {"uv": [16, 0, 0, 16], "texture": "#2"}, + "south": {"uv": [16, 0, 0, 16], "texture": "#2"}, + "west": {"uv": [16, 0, 0, 16], "texture": "#2"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#3"}, + "down": {"uv": [16, 0, 0, 16], "texture": "#3"} + } + }, + { + "name": "fluid", + "from": [-15.9, -1, -15.9], + "to": [31.9, 15, 31.9], + "faces": { + "north": {"uv": [0, 5.33333, 16, 10.66667], "texture": "#0"}, + "east": {"uv": [0, 5.33333, 16, 10.66667], "texture": "#0"}, + "south": {"uv": [0, 5.33333, 16, 10.66667], "texture": "#0"}, + "west": {"uv": [0, 5.33333, 16, 10.66667], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "down": {"uv": [16, 0, 0, 16], "texture": "#1"} + } + } + ], + "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, -135, 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] + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/casings/bioculture_rotor_secondary.json b/kubejs/assets/tfg/models/block/casings/bioculture_rotor_secondary.json new file mode 100644 index 000000000..5acea3a68 --- /dev/null +++ b/kubejs/assets/tfg/models/block/casings/bioculture_rotor_secondary.json @@ -0,0 +1,55 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "textures": { + "0": "tfg:block/casings/bioculture_rotor_secondary_side", + "1": "tfg:block/casings/bioculture_rotor_secondary_top", + "particle": "tfg:block/casings/bioculture_rotor_secondary_top" + }, + "elements": [ + { + "name": "rotor", + "from": [0, 0, 0], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [16, 16, 0, 0], "texture": "#0"}, + "east": {"uv": [16, 0, 0, 16], "texture": "#0"}, + "south": {"uv": [16, 0, 0, 16], "texture": "#0"}, + "west": {"uv": [16, 0, 0, 16], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + } + } + ], + "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, -135, 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] + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/casings/bioculture_rotor_secondary_active.json b/kubejs/assets/tfg/models/block/casings/bioculture_rotor_secondary_active.json new file mode 100644 index 000000000..e9db58874 --- /dev/null +++ b/kubejs/assets/tfg/models/block/casings/bioculture_rotor_secondary_active.json @@ -0,0 +1,70 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "textures": { + "0": "tfg:block/casings/bioculture_rotor_fluid_secondary_side", + "1": "tfg:block/casings/bioculture_rotor_fluid_secondary_top", + "2": "tfg:block/casings/bioculture_rotor_secondary_side_active", + "3": "tfg:block/casings/bioculture_rotor_secondary_top_active", + "particle": "tfg:block/casings/bioculture_rotor_secondary_top_active" + }, + "elements": [ + { + "name": "rotor", + "from": [0, 0, 0], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [16, 16, 0, 0], "texture": "#2"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, + "up": {"uv": [16, 0, 0, 16], "texture": "#3"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#3"} + } + }, + { + "name": "fluid", + "from": [-15.9, -1, -15.9], + "to": [31.9, 15, 31.9], + "faces": { + "north": {"uv": [16, 5.33333, 0, 10.66667], "texture": "#0"}, + "east": {"uv": [0, 5.33333, 16, 10.66667], "texture": "#0"}, + "south": {"uv": [16, 5.33333, 0, 10.66667], "texture": "#0"}, + "west": {"uv": [16, 5.33333, 0, 10.66667], "texture": "#0"}, + "up": {"uv": [16, 0, 0, 16], "texture": "#1"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + } + } + ], + "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, -135, 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] + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/casings/machine_casing_bioculture.json b/kubejs/assets/tfg/models/block/casings/machine_casing_bioculture.json new file mode 100644 index 000000000..2891d4561 --- /dev/null +++ b/kubejs/assets/tfg/models/block/casings/machine_casing_bioculture.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/cube_all","textures":{"all":"tfg:block/casings/machine_casing_bioculture"}} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/casings/machine_casing_bioculture_glass.json b/kubejs/assets/tfg/models/block/casings/machine_casing_bioculture_glass.json new file mode 100644 index 000000000..0bb569106 --- /dev/null +++ b/kubejs/assets/tfg/models/block/casings/machine_casing_bioculture_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/cube_all","textures":{"all":"tfg:block/casings/machine_casing_bioculture_glass"}} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/casings/machine_casing_bioculture_glass_active.json b/kubejs/assets/tfg/models/block/casings/machine_casing_bioculture_glass_active.json new file mode 100644 index 000000000..43c41816b --- /dev/null +++ b/kubejs/assets/tfg/models/block/casings/machine_casing_bioculture_glass_active.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/cube_all","textures":{"all":"tfg:block/casings/machine_casing_bioculture_glass_active"}} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/crop/flax_age_0.json b/kubejs/assets/tfg/models/block/crop/flax_age_0.json new file mode 100644 index 000000000..9def03ce7 --- /dev/null +++ b/kubejs/assets/tfg/models/block/crop/flax_age_0.json @@ -0,0 +1 @@ +{"parent":"block/crop","textures":{"crop":"tfg:block/crop/flax_age_0"}} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/crop/flax_age_1.json b/kubejs/assets/tfg/models/block/crop/flax_age_1.json new file mode 100644 index 000000000..5cd40dc85 --- /dev/null +++ b/kubejs/assets/tfg/models/block/crop/flax_age_1.json @@ -0,0 +1 @@ +{"parent":"block/crop","textures":{"crop":"tfg:block/crop/flax_age_1"}} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/crop/flax_age_2.json b/kubejs/assets/tfg/models/block/crop/flax_age_2.json new file mode 100644 index 000000000..7c8d9a81f --- /dev/null +++ b/kubejs/assets/tfg/models/block/crop/flax_age_2.json @@ -0,0 +1 @@ +{"parent":"block/crop","textures":{"crop":"tfg:block/crop/flax_age_2"}} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/crop/flax_age_3.json b/kubejs/assets/tfg/models/block/crop/flax_age_3.json new file mode 100644 index 000000000..0196b352e --- /dev/null +++ b/kubejs/assets/tfg/models/block/crop/flax_age_3.json @@ -0,0 +1 @@ +{"parent":"block/crop","textures":{"crop":"tfg:block/crop/flax_age_3"}} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/crop/flax_age_4_bottom.json b/kubejs/assets/tfg/models/block/crop/flax_age_4_bottom.json new file mode 100644 index 000000000..3bbbff126 --- /dev/null +++ b/kubejs/assets/tfg/models/block/crop/flax_age_4_bottom.json @@ -0,0 +1 @@ +{"parent":"block/crop","textures":{"crop":"tfg:block/crop/flax_age_4_bottom"}} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/crop/flax_age_4_top.json b/kubejs/assets/tfg/models/block/crop/flax_age_4_top.json new file mode 100644 index 000000000..861deaeca --- /dev/null +++ b/kubejs/assets/tfg/models/block/crop/flax_age_4_top.json @@ -0,0 +1 @@ +{"parent":"block/crop","textures":{"crop":"tfg:block/crop/flax_age_4_top"}} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/crop/flax_age_5_bottom.json b/kubejs/assets/tfg/models/block/crop/flax_age_5_bottom.json new file mode 100644 index 000000000..20609d2b1 --- /dev/null +++ b/kubejs/assets/tfg/models/block/crop/flax_age_5_bottom.json @@ -0,0 +1 @@ +{"parent":"block/crop","textures":{"crop":"tfg:block/crop/flax_age_5_bottom"}} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/crop/flax_age_5_top.json b/kubejs/assets/tfg/models/block/crop/flax_age_5_top.json new file mode 100644 index 000000000..90d35b5e7 --- /dev/null +++ b/kubejs/assets/tfg/models/block/crop/flax_age_5_top.json @@ -0,0 +1 @@ +{"parent":"block/crop","textures":{"crop":"tfg:block/crop/flax_age_5_top"}} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/crop/flax_age_6_bottom.json b/kubejs/assets/tfg/models/block/crop/flax_age_6_bottom.json new file mode 100644 index 000000000..6783cdc22 --- /dev/null +++ b/kubejs/assets/tfg/models/block/crop/flax_age_6_bottom.json @@ -0,0 +1 @@ +{"parent":"block/crop","textures":{"crop":"tfg:block/crop/flax_age_6_bottom"}} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/crop/flax_age_6_top.json b/kubejs/assets/tfg/models/block/crop/flax_age_6_top.json new file mode 100644 index 000000000..d5826d3b3 --- /dev/null +++ b/kubejs/assets/tfg/models/block/crop/flax_age_6_top.json @@ -0,0 +1 @@ +{"parent":"block/crop","textures":{"crop":"tfg:block/crop/flax_age_6_top"}} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/crop/flax_dead_bottom.json b/kubejs/assets/tfg/models/block/crop/flax_dead_bottom.json new file mode 100644 index 000000000..3f8fb1086 --- /dev/null +++ b/kubejs/assets/tfg/models/block/crop/flax_dead_bottom.json @@ -0,0 +1 @@ +{"parent":"block/crop","textures":{"crop":"tfg:block/crop/flax_dead_bottom"}} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/crop/flax_dead_top.json b/kubejs/assets/tfg/models/block/crop/flax_dead_top.json new file mode 100644 index 000000000..620d0d6b5 --- /dev/null +++ b/kubejs/assets/tfg/models/block/crop/flax_dead_top.json @@ -0,0 +1 @@ +{"parent":"block/crop","textures":{"crop":"tfg:block/crop/flax_dead_top"}} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/crop/flax_dead_young.json b/kubejs/assets/tfg/models/block/crop/flax_dead_young.json new file mode 100644 index 000000000..65df8401f --- /dev/null +++ b/kubejs/assets/tfg/models/block/crop/flax_dead_young.json @@ -0,0 +1 @@ +{"parent":"block/crop","textures":{"crop":"tfg:block/crop/flax_dead_young"}} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/crop/flax_wild.json b/kubejs/assets/tfg/models/block/crop/flax_wild.json new file mode 100644 index 000000000..5ebc8c96a --- /dev/null +++ b/kubejs/assets/tfg/models/block/crop/flax_wild.json @@ -0,0 +1,6 @@ +{ + "parent": "tfc:block/wild_crop/crop", + "textures": { + "crop": "tfg:block/crop/flax_age_5_bottom" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/crop/flax_wild_bottom.json b/kubejs/assets/tfg/models/block/crop/flax_wild_bottom.json new file mode 100644 index 000000000..5ebc8c96a --- /dev/null +++ b/kubejs/assets/tfg/models/block/crop/flax_wild_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "tfc:block/wild_crop/crop", + "textures": { + "crop": "tfg:block/crop/flax_age_5_bottom" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/crop/flax_wild_top.json b/kubejs/assets/tfg/models/block/crop/flax_wild_top.json new file mode 100644 index 000000000..9bdde56bf --- /dev/null +++ b/kubejs/assets/tfg/models/block/crop/flax_wild_top.json @@ -0,0 +1,6 @@ +{ + "parent": "block/crop", + "textures": { + "crop": "tfg:block/crop/flax_age_5_top" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/crop/rapeseed_wild.json b/kubejs/assets/tfg/models/block/crop/rapeseed_wild.json index 2033e4839..0e99f6b04 100644 --- a/kubejs/assets/tfg/models/block/crop/rapeseed_wild.json +++ b/kubejs/assets/tfg/models/block/crop/rapeseed_wild.json @@ -1 +1 @@ -{"parent":"block/crop","textures":{"crop":"tfg:block/crop/rapeseed_age_2"}} \ No newline at end of file +{"parent":"tfc:block/wild_crop/crop","textures":{"crop":"tfg:block/crop/rapeseed_age_2"}} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/crop/rapeseed_wild_bottom.json b/kubejs/assets/tfg/models/block/crop/rapeseed_wild_bottom.json new file mode 100644 index 000000000..f90e2a6fe --- /dev/null +++ b/kubejs/assets/tfg/models/block/crop/rapeseed_wild_bottom.json @@ -0,0 +1 @@ +{"parent":"tfc:block/wild_crop/crop","textures":{"crop":"tfg:block/crop/rapeseed_age_5_bottom"}} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/crop/rapeseed_wild_top.json b/kubejs/assets/tfg/models/block/crop/rapeseed_wild_top.json new file mode 100644 index 000000000..b85951c0e --- /dev/null +++ b/kubejs/assets/tfg/models/block/crop/rapeseed_wild_top.json @@ -0,0 +1 @@ +{"parent":"block/crop","textures":{"crop":"tfg:block/crop/rapeseed_age_5_top"}} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/glacian_mushroom.json b/kubejs/assets/tfg/models/block/glacian_mushroom.json new file mode 100644 index 000000000..c6d7276f3 --- /dev/null +++ b/kubejs/assets/tfg/models/block/glacian_mushroom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "tfg:item/wood/glacian_mushroom" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/grass/amber_clay.json b/kubejs/assets/tfg/models/block/grass/amber_clay.json new file mode 100644 index 000000000..87564c1e6 --- /dev/null +++ b/kubejs/assets/tfg/models/block/grass/amber_clay.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "up": "tfg:block/grass/amber_top", + "down": "tfg:block/grass/mars_clay_dirt", + "north": "tfg:block/grass/amber_clay_side", + "south": "tfg:block/grass/amber_clay_side", + "east": "tfg:block/grass/amber_clay_side", + "west": "tfg:block/grass/amber_clay_side", + "particle": "tfg:block/grass/amber_clay_side" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/grass/amber_kaolin.json b/kubejs/assets/tfg/models/block/grass/amber_kaolin.json new file mode 100644 index 000000000..573ef9584 --- /dev/null +++ b/kubejs/assets/tfg/models/block/grass/amber_kaolin.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "up": "tfg:block/grass/amber_top", + "down": "tfc:block/red_kaolin_clay", + "north": "tfg:block/grass/amber_kaolin_side", + "south": "tfg:block/grass/amber_kaolin_side", + "east": "tfg:block/grass/amber_kaolin_side", + "west": "tfg:block/grass/amber_kaolin_side", + "particle": "tfg:block/grass/amber_kaolin_side" + } +} diff --git a/kubejs/assets/tfg/models/block/grass/mars_clay_dirt.json b/kubejs/assets/tfg/models/block/grass/mars_clay_dirt.json new file mode 100644 index 000000000..96728d0ab --- /dev/null +++ b/kubejs/assets/tfg/models/block/grass/mars_clay_dirt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "tfg:block/grass/mars_clay_dirt" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/grass/mars_snowy_clay.json b/kubejs/assets/tfg/models/block/grass/mars_snowy_clay.json new file mode 100644 index 000000000..87302ba29 --- /dev/null +++ b/kubejs/assets/tfg/models/block/grass/mars_snowy_clay.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "up": "minecraft:block/snow", + "down": "tfg:block/grass/mars_clay_dirt", + "north": "tfg:block/grass/snowy_clay_side", + "south": "tfg:block/grass/snowy_clay_side", + "east": "tfg:block/grass/snowy_clay_side", + "west": "tfg:block/grass/snowy_clay_side", + "particle": "tfg:block/grass/snowy_clay_side" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/grass/rusticus_clay.json b/kubejs/assets/tfg/models/block/grass/rusticus_clay.json new file mode 100644 index 000000000..5a3d6bca5 --- /dev/null +++ b/kubejs/assets/tfg/models/block/grass/rusticus_clay.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "up": "tfg:block/grass/rusticus_top_1", + "down": "tfg:block/grass/mars_clay_dirt", + "north": "tfg:block/grass/rusticus_clay_side", + "south": "tfg:block/grass/rusticus_clay_side", + "east": "tfg:block/grass/rusticus_clay_side", + "west": "tfg:block/grass/rusticus_clay_side", + "particle": "tfg:block/grass/rusticus_clay_side" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/grass/rusticus_kaolin.json b/kubejs/assets/tfg/models/block/grass/rusticus_kaolin.json new file mode 100644 index 000000000..fce361c1c --- /dev/null +++ b/kubejs/assets/tfg/models/block/grass/rusticus_kaolin.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "up": "tfg:block/grass/rusticus_top_2", + "down": "tfc:block/red_kaolin_clay", + "north": "tfg:block/grass/rusticus_kaolin_side", + "south": "tfg:block/grass/rusticus_kaolin_side", + "east": "tfg:block/grass/rusticus_kaolin_side", + "west": "tfg:block/grass/rusticus_kaolin_side", + "particle": "tfg:block/grass/rusticus_kaolin_side" + } +} diff --git a/kubejs/assets/tfg/models/block/grass/sangnum_clay.json b/kubejs/assets/tfg/models/block/grass/sangnum_clay.json new file mode 100644 index 000000000..ed65a59ac --- /dev/null +++ b/kubejs/assets/tfg/models/block/grass/sangnum_clay.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "up": "tfg:block/grass/sangnum_top", + "down": "tfg:block/grass/mars_clay_dirt", + "north": "tfg:block/grass/sangnum_clay_side", + "south": "tfg:block/grass/sangnum_clay_side", + "east": "tfg:block/grass/sangnum_clay_side", + "west": "tfg:block/grass/sangnum_clay_side", + "particle": "tfg:block/grass/sangnum_clay_side" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/grass/sangnum_kaolin.json b/kubejs/assets/tfg/models/block/grass/sangnum_kaolin.json new file mode 100644 index 000000000..3457ec822 --- /dev/null +++ b/kubejs/assets/tfg/models/block/grass/sangnum_kaolin.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "up": "tfg:block/grass/sangnum_top", + "down": "tfc:block/red_kaolin_clay", + "north": "tfg:block/grass/sangnum_kaolin_side", + "south": "tfg:block/grass/sangnum_kaolin_side", + "east": "tfg:block/grass/sangnum_kaolin_side", + "west": "tfg:block/grass/sangnum_kaolin_side", + "particle": "tfg:block/grass/sangnum_kaolin_side" + } +} diff --git a/kubejs/assets/tfg/models/block/grass/snowy_kaolin.json b/kubejs/assets/tfg/models/block/grass/snowy_kaolin.json new file mode 100644 index 000000000..9addd6405 --- /dev/null +++ b/kubejs/assets/tfg/models/block/grass/snowy_kaolin.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "up": "minecraft:block/snow", + "down": "tfc:block/red_kaolin_clay", + "north": "tfg:block/grass/snowy_kaolin", + "south": "tfg:block/grass/snowy_kaolin", + "east": "tfg:block/grass/snowy_kaolin", + "west": "tfg:block/grass/snowy_kaolin", + "particle": "tfg:block/grass/snowy_kaolin" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_warped_wraptor_0.json b/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_warped_wraptor_0.json new file mode 100644 index 000000000..dfb6ea81d --- /dev/null +++ b/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_warped_wraptor_0.json @@ -0,0 +1,88 @@ +{ + "parent": "minecraft:block/block", + "credit": "made with BlockBench", + "textures": { + "texture": "tfg:block/large_nest/large_nest_warped_sniffer_0", + "particle": "tfg:block/large_nest/large_nest_warped_sniffer_0" + }, + "elements": [ + { + "from": [4, 1, 12], + "to": [16, 3, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 2, 13]}, + "faces": { + "north": {"uv": [0.25, 6.875, 1.75, 7.125], "texture": "texture"}, + "east": {"uv": [0, 6.875, 0.25, 7.125], "texture": "texture"}, + "south": {"uv": [2, 6.875, 3.5, 7.125], "texture": "texture"}, + "west": {"uv": [1.75, 6.875, 2, 7.125], "texture": "texture"}, + "up": {"uv": [1.75, 6.875, 0.25, 6.625], "texture": "texture"}, + "down": {"uv": [3.25, 6.625, 1.75, 6.875], "texture": "texture"} + } + }, + { + "from": [3, 0, 0], + "to": [16, 1, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 0.5, 6.5]}, + "faces": { + "north": {"uv": [1.625, 4.75, 3.25, 4.875], "texture": "texture"}, + "east": {"uv": [0, 4.75, 1.625, 4.875], "texture": "texture"}, + "south": {"uv": [4.875, 4.75, 6.5, 4.875], "texture": "texture"}, + "west": {"uv": [3.25, 4.75, 4.875, 4.875], "texture": "texture"}, + "up": {"uv": [3.25, 4.75, 1.625, 3.125], "texture": "texture"}, + "down": {"uv": [4.875, 3.125, 3.25, 4.75], "texture": "texture"} + } + }, + { + "from": [3, 3, 13], + "to": [16, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 3.5, 14]}, + "faces": { + "north": {"uv": [0.5, 6.5, 2.125, 6.625], "texture": "texture"}, + "east": {"uv": [0.25, 6.5, 0.5, 6.625], "texture": "texture"}, + "south": {"uv": [2.375, 6.5, 4, 6.625], "texture": "texture"}, + "west": {"uv": [2.125, 6.5, 2.375, 6.625], "texture": "texture"}, + "up": {"uv": [2.125, 6.5, 0.5, 6.25], "texture": "texture"}, + "down": {"uv": [3.75, 6.25, 2.125, 6.5], "texture": "texture"} + } + }, + { + "from": [1, 3, 0], + "to": [3, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [2, 3.5, 7.5]}, + "faces": { + "north": {"uv": [1.875, 6.125, 2.125, 6.25], "texture": "texture"}, + "east": {"uv": [0, 6.125, 1.875, 6.25], "texture": "texture"}, + "south": {"uv": [4, 6.125, 4.25, 6.25], "texture": "texture"}, + "west": {"uv": [2.125, 6.125, 4, 6.25], "texture": "texture"}, + "up": {"uv": [2.125, 6.125, 1.875, 4.25], "texture": "texture"}, + "down": {"uv": [2.375, 4.25, 2.125, 6.125], "texture": "texture"} + } + }, + { + "from": [2, 1, 0], + "to": [4, 3, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 2, 7]}, + "faces": { + "north": {"uv": [5.25, 6.875, 5.5, 7.125], "texture": "texture"}, + "east": {"uv": [3.5, 6.875, 5.25, 7.125], "texture": "texture"}, + "south": {"uv": [7.25, 6.875, 7.5, 7.125], "texture": "texture"}, + "west": {"uv": [5.5, 6.875, 7.25, 7.125], "texture": "texture"}, + "up": {"uv": [5.5, 6.875, 5.25, 5.125], "texture": "texture"}, + "down": {"uv": [5.75, 5.125, 5.5, 6.875], "texture": "texture"} + } + }, + { + "from": [6, 1, 1], + "to": [14, 11, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [14, 1, 5]}, + "faces": { + "north": {"uv": [6.375, 1.5, 7.375, 2.75], "texture": "texture"}, + "east": {"uv": [5.25, 1.5, 6.25, 2.75], "texture": "texture"}, + "south": {"uv": [8.75, 1.5, 9.75, 2.75], "texture": "texture"}, + "west": {"uv": [7.5, 1.5, 8.5, 2.75], "texture": "texture"}, + "up": {"uv": [7.5, 1.375, 6.5, 0.375], "texture": "texture"}, + "down": {"uv": [8.75, 0.25, 7.75, 1.25], "texture": "texture"} + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_warped_wraptor_1.json b/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_warped_wraptor_1.json new file mode 100644 index 000000000..7ad994634 --- /dev/null +++ b/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_warped_wraptor_1.json @@ -0,0 +1,88 @@ +{ + "parent": "minecraft:block/block", + "credit": "made with BlockBench", + "textures": { + "texture": "tfg:block/large_nest/large_nest_warped_sniffer_0", + "particle": "tfg:block/large_nest/large_nest_warped_sniffer_0" + }, + "elements": [ + { + "from": [4, 1, 12], + "to": [16, 3, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 2, 13]}, + "faces": { + "north": {"uv": [0.25, 6.5, 1.75, 6.75], "texture": "texture"}, + "east": {"uv": [0, 6.5, 0.25, 6.75], "texture": "texture"}, + "south": {"uv": [2, 6.5, 3.5, 6.75], "texture": "texture"}, + "west": {"uv": [1.75, 6.5, 2, 6.75], "texture": "texture"}, + "up": {"uv": [1.75, 6.5, 0.25, 6.25], "texture": "texture"}, + "down": {"uv": [3.25, 6.25, 1.75, 6.5], "texture": "texture"} + } + }, + { + "from": [3, 0, 0], + "to": [16, 1, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 0.5, 6.5]}, + "faces": { + "north": {"uv": [1.625, 4.75, 3.25, 4.875], "texture": "texture"}, + "east": {"uv": [0, 4.75, 1.625, 4.875], "texture": "texture"}, + "south": {"uv": [4.875, 4.75, 6.5, 4.875], "texture": "texture"}, + "west": {"uv": [3.25, 4.75, 4.875, 4.875], "texture": "texture"}, + "up": {"uv": [3.25, 4.75, 1.625, 3.125], "texture": "texture"}, + "down": {"uv": [4.875, 3.125, 3.25, 4.75], "texture": "texture"} + } + }, + { + "from": [3, 3, 13], + "to": [16, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 3.5, 14]}, + "faces": { + "north": {"uv": [0.375, 5.625, 2, 5.75], "texture": "texture"}, + "east": {"uv": [0.125, 5.625, 0.375, 5.75], "texture": "texture"}, + "south": {"uv": [2.25, 5.625, 3.875, 5.75], "texture": "texture"}, + "west": {"uv": [2, 5.625, 2.25, 5.75], "texture": "texture"}, + "up": {"uv": [2, 5.625, 0.375, 5.375], "texture": "texture"}, + "down": {"uv": [3.625, 5.375, 2, 5.625], "texture": "texture"} + } + }, + { + "from": [1, 3, 0], + "to": [3, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [2, 3.5, 7.5]}, + "faces": { + "north": {"uv": [3.625, 6.375, 3.875, 6.5], "texture": "texture"}, + "east": {"uv": [1.75, 6.375, 3.625, 6.5], "texture": "texture"}, + "south": {"uv": [5.75, 6.375, 6, 6.5], "texture": "texture"}, + "west": {"uv": [3.875, 6.375, 5.75, 6.5], "texture": "texture"}, + "up": {"uv": [3.875, 6.375, 3.625, 4.5], "texture": "texture"}, + "down": {"uv": [4.125, 4.5, 3.875, 6.375], "texture": "texture"} + } + }, + { + "from": [2, 1, 0], + "to": [4, 3, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 2, 7]}, + "faces": { + "north": {"uv": [4.375, 5.125, 4.625, 5.375], "texture": "texture"}, + "east": {"uv": [2.625, 5.125, 4.375, 5.375], "texture": "texture"}, + "south": {"uv": [6.375, 5.125, 6.625, 5.375], "texture": "texture"}, + "west": {"uv": [4.625, 5.125, 6.375, 5.375], "texture": "texture"}, + "up": {"uv": [4.625, 5.125, 4.375, 3.375], "texture": "texture"}, + "down": {"uv": [4.875, 3.375, 4.625, 5.125], "texture": "texture"} + } + }, + { + "from": [8, 1, 2], + "to": [15, 10, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [17, 1, 6]}, + "faces": { + "north": {"uv": [6.75, 1.75, 7.625, 2.875], "texture": "texture"}, + "east": {"uv": [5.875, 1.75, 6.75, 2.875], "texture": "texture"}, + "south": {"uv": [8.5, 1.75, 9.375, 2.875], "texture": "texture"}, + "west": {"uv": [7.625, 1.75, 8.5, 2.875], "texture": "texture"}, + "up": {"uv": [7.5, 1.25, 6.625, 0.375], "texture": "texture"}, + "down": {"uv": [8.625, 0.25, 7.75, 1.125], "texture": "texture"} + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_warped_wraptor_2.json b/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_warped_wraptor_2.json new file mode 100644 index 000000000..774605ee8 --- /dev/null +++ b/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_warped_wraptor_2.json @@ -0,0 +1,88 @@ +{ + "parent": "minecraft:block/block", + "credit": "made with BlockBench", + "textures": { + "texture": "tfg:block/large_nest/large_nest_warped_sniffer_0", + "particle": "tfg:block/large_nest/large_nest_warped_sniffer_0" + }, + "elements": [ + { + "from": [4, 1, 12], + "to": [16, 3, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 2, 13]}, + "faces": { + "north": {"uv": [0.5, 6.125, 2, 6.375], "texture": "texture"}, + "east": {"uv": [0.25, 6.125, 0.5, 6.375], "texture": "texture"}, + "south": {"uv": [2.25, 6.125, 3.75, 6.375], "texture": "texture"}, + "west": {"uv": [2, 6.125, 2.25, 6.375], "texture": "texture"}, + "up": {"uv": [2, 6.125, 0.5, 5.875], "texture": "texture"}, + "down": {"uv": [3.5, 5.875, 2, 6.125], "texture": "texture"} + } + }, + { + "from": [3, 0, 0], + "to": [16, 1, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 0.5, 6.5]}, + "faces": { + "north": {"uv": [1.625, 4.75, 3.25, 4.875], "texture": "texture"}, + "east": {"uv": [0, 4.75, 1.625, 4.875], "texture": "texture"}, + "south": {"uv": [4.875, 4.75, 6.5, 4.875], "texture": "texture"}, + "west": {"uv": [3.25, 4.75, 4.875, 4.875], "texture": "texture"}, + "up": {"uv": [3.25, 4.75, 1.625, 3.125], "texture": "texture"}, + "down": {"uv": [4.875, 3.125, 3.25, 4.75], "texture": "texture"} + } + }, + { + "from": [3, 3, 13], + "to": [16, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 3.5, 14]}, + "faces": { + "north": {"uv": [0.5, 5.5, 2.125, 5.625], "texture": "texture"}, + "east": {"uv": [0.25, 5.5, 0.5, 5.625], "texture": "texture"}, + "south": {"uv": [2.375, 5.5, 4, 5.625], "texture": "texture"}, + "west": {"uv": [2.125, 5.5, 2.375, 5.625], "texture": "texture"}, + "up": {"uv": [2.125, 5.5, 0.5, 5.25], "texture": "texture"}, + "down": {"uv": [3.75, 5.25, 2.125, 5.5], "texture": "texture"} + } + }, + { + "from": [1, 3, 0], + "to": [3, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [2, 3.5, 7.5]}, + "faces": { + "north": {"uv": [5.625, 5.125, 5.875, 5.25], "texture": "texture"}, + "east": {"uv": [3.75, 5.125, 5.625, 5.25], "texture": "texture"}, + "south": {"uv": [7.75, 5.125, 8, 5.25], "texture": "texture"}, + "west": {"uv": [5.875, 5.125, 7.75, 5.25], "texture": "texture"}, + "up": {"uv": [5.875, 5.125, 5.625, 3.25], "texture": "texture"}, + "down": {"uv": [6.125, 3.25, 5.875, 5.125], "texture": "texture"} + } + }, + { + "from": [2, 1, 0], + "to": [4, 3, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 2, 7]}, + "faces": { + "north": {"uv": [5.5, 6.125, 5.75, 6.375], "texture": "texture"}, + "east": {"uv": [3.75, 6.125, 5.5, 6.375], "texture": "texture"}, + "south": {"uv": [7.5, 6.125, 7.75, 6.375], "texture": "texture"}, + "west": {"uv": [5.75, 6.125, 7.5, 6.375], "texture": "texture"}, + "up": {"uv": [5.75, 6.125, 5.5, 4.375], "texture": "texture"}, + "down": {"uv": [6, 4.375, 5.75, 6.125], "texture": "texture"} + } + }, + { + "from": [9, 1, 0], + "to": [15, 9, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [17, 1, 4]}, + "faces": { + "north": {"uv": [6.875, 1.625, 7.625, 2.625], "texture": "texture"}, + "east": {"uv": [6.125, 1.625, 6.875, 2.625], "texture": "texture"}, + "south": {"uv": [8.375, 1.625, 9.125, 2.625], "texture": "texture"}, + "west": {"uv": [7.625, 1.625, 8.375, 2.625], "texture": "texture"}, + "up": {"uv": [7.375, 1.125, 6.625, 0.375], "texture": "texture"}, + "down": {"uv": [8.375, 0.5, 7.625, 1.25], "texture": "texture"} + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_warped_wraptor_3.json b/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_warped_wraptor_3.json new file mode 100644 index 000000000..7958f0d07 --- /dev/null +++ b/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_warped_wraptor_3.json @@ -0,0 +1,88 @@ +{ + "parent": "minecraft:block/block", + "credit": "made with BlockBench", + "textures": { + "texture": "tfg:block/large_nest/large_nest_warped_sniffer_0", + "particle": "tfg:block/large_nest/large_nest_warped_sniffer_0" + }, + "elements": [ + { + "from": [4, 1, 12], + "to": [16, 3, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 2, 13]}, + "faces": { + "north": {"uv": [1.375, 5.375, 2.875, 5.625], "texture": "texture"}, + "east": {"uv": [1.125, 5.375, 1.375, 5.625], "texture": "texture"}, + "south": {"uv": [3.125, 5.375, 4.625, 5.625], "texture": "texture"}, + "west": {"uv": [2.875, 5.375, 3.125, 5.625], "texture": "texture"}, + "up": {"uv": [2.875, 5.375, 1.375, 5.125], "texture": "texture"}, + "down": {"uv": [4.375, 5.125, 2.875, 5.375], "texture": "texture"} + } + }, + { + "from": [3, 0, 0], + "to": [16, 1, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 0.5, 6.5]}, + "faces": { + "north": {"uv": [1.75, 4.75, 3.375, 4.875], "texture": "texture"}, + "east": {"uv": [0.125, 4.75, 1.75, 4.875], "texture": "texture"}, + "south": {"uv": [5, 4.75, 6.625, 4.875], "texture": "texture"}, + "west": {"uv": [3.375, 4.75, 5, 4.875], "texture": "texture"}, + "up": {"uv": [3.375, 4.75, 1.75, 3.125], "texture": "texture"}, + "down": {"uv": [5, 3.125, 3.375, 4.75], "texture": "texture"} + } + }, + { + "from": [3, 3, 13], + "to": [16, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 3.5, 14]}, + "faces": { + "north": {"uv": [2.875, 5.875, 4.5, 6], "texture": "texture"}, + "east": {"uv": [2.625, 5.875, 2.875, 6], "texture": "texture"}, + "south": {"uv": [4.75, 5.875, 6.375, 6], "texture": "texture"}, + "west": {"uv": [4.5, 5.875, 4.75, 6], "texture": "texture"}, + "up": {"uv": [4.5, 5.875, 2.875, 5.625], "texture": "texture"}, + "down": {"uv": [6.125, 5.625, 4.5, 5.875], "texture": "texture"} + } + }, + { + "from": [1, 3, 0], + "to": [3, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [2, 3.5, 7.5]}, + "faces": { + "north": {"uv": [1.875, 6.625, 2.125, 6.75], "texture": "texture"}, + "east": {"uv": [0, 6.625, 1.875, 6.75], "texture": "texture"}, + "south": {"uv": [4, 6.625, 4.25, 6.75], "texture": "texture"}, + "west": {"uv": [2.125, 6.625, 4, 6.75], "texture": "texture"}, + "up": {"uv": [2.125, 6.625, 1.875, 4.75], "texture": "texture"}, + "down": {"uv": [2.375, 4.75, 2.125, 6.625], "texture": "texture"} + } + }, + { + "from": [2, 1, 0], + "to": [4, 3, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 2, 7]}, + "faces": { + "north": {"uv": [5.25, 6.375, 5.5, 6.625], "texture": "texture"}, + "east": {"uv": [3.5, 6.375, 5.25, 6.625], "texture": "texture"}, + "south": {"uv": [7.25, 6.375, 7.5, 6.625], "texture": "texture"}, + "west": {"uv": [5.5, 6.375, 7.25, 6.625], "texture": "texture"}, + "up": {"uv": [5.5, 6.375, 5.25, 4.625], "texture": "texture"}, + "down": {"uv": [5.75, 4.625, 5.5, 6.375], "texture": "texture"} + } + }, + { + "from": [7, 1, 1], + "to": [14, 11, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [15, 1, 5]}, + "faces": { + "north": {"uv": [7, 1.5, 7.875, 2.75], "texture": "texture"}, + "east": {"uv": [6.125, 1.5, 7, 2.75], "texture": "texture"}, + "south": {"uv": [8.75, 1.625, 9.625, 2.875], "texture": "texture"}, + "west": {"uv": [7.875, 1.5, 8.75, 2.75], "texture": "texture"}, + "up": {"uv": [7.5, 1.125, 6.625, 0.25], "texture": "texture"}, + "down": {"uv": [8.75, 0.25, 7.875, 1.125], "texture": "texture", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_wraptor_0.json b/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_wraptor_0.json new file mode 100644 index 000000000..ee4ab4867 --- /dev/null +++ b/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_wraptor_0.json @@ -0,0 +1,88 @@ +{ + "parent": "minecraft:block/block", + "credit": "made with BlockBench", + "textures": { + "texture": "tfg:block/large_nest/large_nest_sniffer_0", + "particle": "tfg:block/large_nest/large_nest_sniffer_0" + }, + "elements": [ + { + "from": [4, 1, 12], + "to": [16, 3, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 2, 13]}, + "faces": { + "north": {"uv": [0.25, 6.875, 1.75, 7.125], "texture": "texture"}, + "east": {"uv": [0, 6.875, 0.25, 7.125], "texture": "texture"}, + "south": {"uv": [2, 6.875, 3.5, 7.125], "texture": "texture"}, + "west": {"uv": [1.75, 6.875, 2, 7.125], "texture": "texture"}, + "up": {"uv": [1.75, 6.875, 0.25, 6.625], "texture": "texture"}, + "down": {"uv": [3.25, 6.625, 1.75, 6.875], "texture": "texture"} + } + }, + { + "from": [3, 0, 0], + "to": [16, 1, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 0.5, 6.5]}, + "faces": { + "north": {"uv": [1.625, 4.75, 3.25, 4.875], "texture": "texture"}, + "east": {"uv": [0, 4.75, 1.625, 4.875], "texture": "texture"}, + "south": {"uv": [4.875, 4.75, 6.5, 4.875], "texture": "texture"}, + "west": {"uv": [3.25, 4.75, 4.875, 4.875], "texture": "texture"}, + "up": {"uv": [3.25, 4.75, 1.625, 3.125], "texture": "texture"}, + "down": {"uv": [4.875, 3.125, 3.25, 4.75], "texture": "texture"} + } + }, + { + "from": [3, 3, 13], + "to": [16, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 3.5, 14]}, + "faces": { + "north": {"uv": [0.5, 6.5, 2.125, 6.625], "texture": "texture"}, + "east": {"uv": [0.25, 6.5, 0.5, 6.625], "texture": "texture"}, + "south": {"uv": [2.375, 6.5, 4, 6.625], "texture": "texture"}, + "west": {"uv": [2.125, 6.5, 2.375, 6.625], "texture": "texture"}, + "up": {"uv": [2.125, 6.5, 0.5, 6.25], "texture": "texture"}, + "down": {"uv": [3.75, 6.25, 2.125, 6.5], "texture": "texture"} + } + }, + { + "from": [1, 3, 0], + "to": [3, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [2, 3.5, 7.5]}, + "faces": { + "north": {"uv": [1.875, 6.125, 2.125, 6.25], "texture": "texture"}, + "east": {"uv": [0, 6.125, 1.875, 6.25], "texture": "texture"}, + "south": {"uv": [4, 6.125, 4.25, 6.25], "texture": "texture"}, + "west": {"uv": [2.125, 6.125, 4, 6.25], "texture": "texture"}, + "up": {"uv": [2.125, 6.125, 1.875, 4.25], "texture": "texture"}, + "down": {"uv": [2.375, 4.25, 2.125, 6.125], "texture": "texture"} + } + }, + { + "from": [2, 1, 0], + "to": [4, 3, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 2, 7]}, + "faces": { + "north": {"uv": [5.25, 6.875, 5.5, 7.125], "texture": "texture"}, + "east": {"uv": [3.5, 6.875, 5.25, 7.125], "texture": "texture"}, + "south": {"uv": [7.25, 6.875, 7.5, 7.125], "texture": "texture"}, + "west": {"uv": [5.5, 6.875, 7.25, 7.125], "texture": "texture"}, + "up": {"uv": [5.5, 6.875, 5.25, 5.125], "texture": "texture"}, + "down": {"uv": [5.75, 5.125, 5.5, 6.875], "texture": "texture"} + } + }, + { + "from": [6, 1, 1], + "to": [14, 11, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [14, 1, 5]}, + "faces": { + "north": {"uv": [6.375, 1.5, 7.375, 2.75], "texture": "texture"}, + "east": {"uv": [5.25, 1.5, 6.25, 2.75], "texture": "texture"}, + "south": {"uv": [8.75, 1.5, 9.75, 2.75], "texture": "texture"}, + "west": {"uv": [7.5, 1.5, 8.5, 2.75], "texture": "texture"}, + "up": {"uv": [7.5, 1.375, 6.5, 0.375], "texture": "texture"}, + "down": {"uv": [8.75, 0.25, 7.75, 1.25], "texture": "texture"} + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_wraptor_1.json b/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_wraptor_1.json new file mode 100644 index 000000000..923132c0e --- /dev/null +++ b/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_wraptor_1.json @@ -0,0 +1,88 @@ +{ + "parent": "minecraft:block/block", + "credit": "made with BlockBench", + "textures": { + "texture": "tfg:block/large_nest/large_nest_sniffer_0", + "particle": "tfg:block/large_nest/large_nest_sniffer_0" + }, + "elements": [ + { + "from": [4, 1, 12], + "to": [16, 3, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 2, 13]}, + "faces": { + "north": {"uv": [0.25, 6.5, 1.75, 6.75], "texture": "texture"}, + "east": {"uv": [0, 6.5, 0.25, 6.75], "texture": "texture"}, + "south": {"uv": [2, 6.5, 3.5, 6.75], "texture": "texture"}, + "west": {"uv": [1.75, 6.5, 2, 6.75], "texture": "texture"}, + "up": {"uv": [1.75, 6.5, 0.25, 6.25], "texture": "texture"}, + "down": {"uv": [3.25, 6.25, 1.75, 6.5], "texture": "texture"} + } + }, + { + "from": [3, 0, 0], + "to": [16, 1, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 0.5, 6.5]}, + "faces": { + "north": {"uv": [1.625, 4.75, 3.25, 4.875], "texture": "texture"}, + "east": {"uv": [0, 4.75, 1.625, 4.875], "texture": "texture"}, + "south": {"uv": [4.875, 4.75, 6.5, 4.875], "texture": "texture"}, + "west": {"uv": [3.25, 4.75, 4.875, 4.875], "texture": "texture"}, + "up": {"uv": [3.25, 4.75, 1.625, 3.125], "texture": "texture"}, + "down": {"uv": [4.875, 3.125, 3.25, 4.75], "texture": "texture"} + } + }, + { + "from": [3, 3, 13], + "to": [16, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 3.5, 14]}, + "faces": { + "north": {"uv": [0.375, 5.625, 2, 5.75], "texture": "texture"}, + "east": {"uv": [0.125, 5.625, 0.375, 5.75], "texture": "texture"}, + "south": {"uv": [2.25, 5.625, 3.875, 5.75], "texture": "texture"}, + "west": {"uv": [2, 5.625, 2.25, 5.75], "texture": "texture"}, + "up": {"uv": [2, 5.625, 0.375, 5.375], "texture": "texture"}, + "down": {"uv": [3.625, 5.375, 2, 5.625], "texture": "texture"} + } + }, + { + "from": [1, 3, 0], + "to": [3, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [2, 3.5, 7.5]}, + "faces": { + "north": {"uv": [3.625, 6.375, 3.875, 6.5], "texture": "texture"}, + "east": {"uv": [1.75, 6.375, 3.625, 6.5], "texture": "texture"}, + "south": {"uv": [5.75, 6.375, 6, 6.5], "texture": "texture"}, + "west": {"uv": [3.875, 6.375, 5.75, 6.5], "texture": "texture"}, + "up": {"uv": [3.875, 6.375, 3.625, 4.5], "texture": "texture"}, + "down": {"uv": [4.125, 4.5, 3.875, 6.375], "texture": "texture"} + } + }, + { + "from": [2, 1, 0], + "to": [4, 3, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 2, 7]}, + "faces": { + "north": {"uv": [4.375, 5.125, 4.625, 5.375], "texture": "texture"}, + "east": {"uv": [2.625, 5.125, 4.375, 5.375], "texture": "texture"}, + "south": {"uv": [6.375, 5.125, 6.625, 5.375], "texture": "texture"}, + "west": {"uv": [4.625, 5.125, 6.375, 5.375], "texture": "texture"}, + "up": {"uv": [4.625, 5.125, 4.375, 3.375], "texture": "texture"}, + "down": {"uv": [4.875, 3.375, 4.625, 5.125], "texture": "texture"} + } + }, + { + "from": [8, 1, 2], + "to": [15, 10, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [17, 1, 6]}, + "faces": { + "north": {"uv": [6.75, 1.75, 7.625, 2.875], "texture": "texture"}, + "east": {"uv": [5.875, 1.75, 6.75, 2.875], "texture": "texture"}, + "south": {"uv": [8.5, 1.75, 9.375, 2.875], "texture": "texture"}, + "west": {"uv": [7.625, 1.75, 8.5, 2.875], "texture": "texture"}, + "up": {"uv": [7.5, 1.25, 6.625, 0.375], "texture": "texture"}, + "down": {"uv": [8.625, 0.25, 7.75, 1.125], "texture": "texture"} + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_wraptor_2.json b/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_wraptor_2.json new file mode 100644 index 000000000..623dbc70e --- /dev/null +++ b/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_wraptor_2.json @@ -0,0 +1,88 @@ +{ + "parent": "minecraft:block/block", + "credit": "made with BlockBench", + "textures": { + "texture": "tfg:block/large_nest/large_nest_sniffer_0", + "particle": "tfg:block/large_nest/large_nest_sniffer_0" + }, + "elements": [ + { + "from": [4, 1, 12], + "to": [16, 3, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 2, 13]}, + "faces": { + "north": {"uv": [0.5, 6.125, 2, 6.375], "texture": "texture"}, + "east": {"uv": [0.25, 6.125, 0.5, 6.375], "texture": "texture"}, + "south": {"uv": [2.25, 6.125, 3.75, 6.375], "texture": "texture"}, + "west": {"uv": [2, 6.125, 2.25, 6.375], "texture": "texture"}, + "up": {"uv": [2, 6.125, 0.5, 5.875], "texture": "texture"}, + "down": {"uv": [3.5, 5.875, 2, 6.125], "texture": "texture"} + } + }, + { + "from": [3, 0, 0], + "to": [16, 1, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 0.5, 6.5]}, + "faces": { + "north": {"uv": [1.625, 4.75, 3.25, 4.875], "texture": "texture"}, + "east": {"uv": [0, 4.75, 1.625, 4.875], "texture": "texture"}, + "south": {"uv": [4.875, 4.75, 6.5, 4.875], "texture": "texture"}, + "west": {"uv": [3.25, 4.75, 4.875, 4.875], "texture": "texture"}, + "up": {"uv": [3.25, 4.75, 1.625, 3.125], "texture": "texture"}, + "down": {"uv": [4.875, 3.125, 3.25, 4.75], "texture": "texture"} + } + }, + { + "from": [3, 3, 13], + "to": [16, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 3.5, 14]}, + "faces": { + "north": {"uv": [0.5, 5.5, 2.125, 5.625], "texture": "texture"}, + "east": {"uv": [0.25, 5.5, 0.5, 5.625], "texture": "texture"}, + "south": {"uv": [2.375, 5.5, 4, 5.625], "texture": "texture"}, + "west": {"uv": [2.125, 5.5, 2.375, 5.625], "texture": "texture"}, + "up": {"uv": [2.125, 5.5, 0.5, 5.25], "texture": "texture"}, + "down": {"uv": [3.75, 5.25, 2.125, 5.5], "texture": "texture"} + } + }, + { + "from": [1, 3, 0], + "to": [3, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [2, 3.5, 7.5]}, + "faces": { + "north": {"uv": [5.625, 5.125, 5.875, 5.25], "texture": "texture"}, + "east": {"uv": [3.75, 5.125, 5.625, 5.25], "texture": "texture"}, + "south": {"uv": [7.75, 5.125, 8, 5.25], "texture": "texture"}, + "west": {"uv": [5.875, 5.125, 7.75, 5.25], "texture": "texture"}, + "up": {"uv": [5.875, 5.125, 5.625, 3.25], "texture": "texture"}, + "down": {"uv": [6.125, 3.25, 5.875, 5.125], "texture": "texture"} + } + }, + { + "from": [2, 1, 0], + "to": [4, 3, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 2, 7]}, + "faces": { + "north": {"uv": [5.5, 6.125, 5.75, 6.375], "texture": "texture"}, + "east": {"uv": [3.75, 6.125, 5.5, 6.375], "texture": "texture"}, + "south": {"uv": [7.5, 6.125, 7.75, 6.375], "texture": "texture"}, + "west": {"uv": [5.75, 6.125, 7.5, 6.375], "texture": "texture"}, + "up": {"uv": [5.75, 6.125, 5.5, 4.375], "texture": "texture"}, + "down": {"uv": [6, 4.375, 5.75, 6.125], "texture": "texture"} + } + }, + { + "from": [9, 1, 0], + "to": [15, 9, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [17, 1, 4]}, + "faces": { + "north": {"uv": [6.875, 1.625, 7.625, 2.625], "texture": "texture"}, + "east": {"uv": [6.125, 1.625, 6.875, 2.625], "texture": "texture"}, + "south": {"uv": [8.375, 1.625, 9.125, 2.625], "texture": "texture"}, + "west": {"uv": [7.625, 1.625, 8.375, 2.625], "texture": "texture"}, + "up": {"uv": [7.375, 1.125, 6.625, 0.375], "texture": "texture"}, + "down": {"uv": [8.375, 0.5, 7.625, 1.25], "texture": "texture"} + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_wraptor_3.json b/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_wraptor_3.json new file mode 100644 index 000000000..80d3c0646 --- /dev/null +++ b/kubejs/assets/tfg/models/block/large_nest_box/large_nest_box_wraptor_3.json @@ -0,0 +1,88 @@ +{ + "parent": "minecraft:block/block", + "credit": "made with BlockBench", + "textures": { + "texture": "tfg:block/large_nest/large_nest_sniffer_0", + "particle": "tfg:block/large_nest/large_nest_sniffer_0" + }, + "elements": [ + { + "from": [4, 1, 12], + "to": [16, 3, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 2, 13]}, + "faces": { + "north": {"uv": [1.375, 5.375, 2.875, 5.625], "texture": "texture"}, + "east": {"uv": [1.125, 5.375, 1.375, 5.625], "texture": "texture"}, + "south": {"uv": [3.125, 5.375, 4.625, 5.625], "texture": "texture"}, + "west": {"uv": [2.875, 5.375, 3.125, 5.625], "texture": "texture"}, + "up": {"uv": [2.875, 5.375, 1.375, 5.125], "texture": "texture"}, + "down": {"uv": [4.375, 5.125, 2.875, 5.375], "texture": "texture"} + } + }, + { + "from": [3, 0, 0], + "to": [16, 1, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 0.5, 6.5]}, + "faces": { + "north": {"uv": [1.75, 4.75, 3.375, 4.875], "texture": "texture"}, + "east": {"uv": [0.125, 4.75, 1.75, 4.875], "texture": "texture"}, + "south": {"uv": [5, 4.75, 6.625, 4.875], "texture": "texture"}, + "west": {"uv": [3.375, 4.75, 5, 4.875], "texture": "texture"}, + "up": {"uv": [3.375, 4.75, 1.75, 3.125], "texture": "texture"}, + "down": {"uv": [5, 3.125, 3.375, 4.75], "texture": "texture"} + } + }, + { + "from": [3, 3, 13], + "to": [16, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 3.5, 14]}, + "faces": { + "north": {"uv": [2.875, 5.875, 4.5, 6], "texture": "texture"}, + "east": {"uv": [2.625, 5.875, 2.875, 6], "texture": "texture"}, + "south": {"uv": [4.75, 5.875, 6.375, 6], "texture": "texture"}, + "west": {"uv": [4.5, 5.875, 4.75, 6], "texture": "texture"}, + "up": {"uv": [4.5, 5.875, 2.875, 5.625], "texture": "texture"}, + "down": {"uv": [6.125, 5.625, 4.5, 5.875], "texture": "texture"} + } + }, + { + "from": [1, 3, 0], + "to": [3, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [2, 3.5, 7.5]}, + "faces": { + "north": {"uv": [1.875, 6.625, 2.125, 6.75], "texture": "texture"}, + "east": {"uv": [0, 6.625, 1.875, 6.75], "texture": "texture"}, + "south": {"uv": [4, 6.625, 4.25, 6.75], "texture": "texture"}, + "west": {"uv": [2.125, 6.625, 4, 6.75], "texture": "texture"}, + "up": {"uv": [2.125, 6.625, 1.875, 4.75], "texture": "texture"}, + "down": {"uv": [2.375, 4.75, 2.125, 6.625], "texture": "texture"} + } + }, + { + "from": [2, 1, 0], + "to": [4, 3, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 2, 7]}, + "faces": { + "north": {"uv": [5.25, 6.375, 5.5, 6.625], "texture": "texture"}, + "east": {"uv": [3.5, 6.375, 5.25, 6.625], "texture": "texture"}, + "south": {"uv": [7.25, 6.375, 7.5, 6.625], "texture": "texture"}, + "west": {"uv": [5.5, 6.375, 7.25, 6.625], "texture": "texture"}, + "up": {"uv": [5.5, 6.375, 5.25, 4.625], "texture": "texture"}, + "down": {"uv": [5.75, 4.625, 5.5, 6.375], "texture": "texture"} + } + }, + { + "from": [7, 1, 1], + "to": [14, 11, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [15, 1, 5]}, + "faces": { + "north": {"uv": [7, 1.5, 7.875, 2.75], "texture": "texture"}, + "east": {"uv": [6.125, 1.5, 7, 2.75], "texture": "texture"}, + "south": {"uv": [8.75, 1.625, 9.625, 2.875], "texture": "texture"}, + "west": {"uv": [7.875, 1.5, 8.75, 2.75], "texture": "texture"}, + "up": {"uv": [7.5, 1.125, 6.625, 0.25], "texture": "texture"}, + "down": {"uv": [8.75, 0.25, 7.875, 1.125], "texture": "texture", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/machines/bioreactor.json b/kubejs/assets/tfg/models/block/machines/bioreactor.json new file mode 100644 index 000000000..350d31c29 --- /dev/null +++ b/kubejs/assets/tfg/models/block/machines/bioreactor.json @@ -0,0 +1,90 @@ +{ + "parent": "minecraft:block/block", + "loader": "gtceu:machine", + "machine": "tfg:bioreactor", + "texture_overrides": { + "all": "tfg:block/casings/machine_casing_bioculture" + }, + "variants": { + "is_formed=false,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_bioculture", + "overlay_front": "tfg:block/machines/bioreactor/overlay_front", + "overlay_front_emissive": "tfg:block/machines/bioreactor/overlay_front_emissive" + } + } + }, + "is_formed=false,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_bioculture", + "overlay_front": "tfg:block/machines/bioreactor/overlay_front", + "overlay_front_emissive": "tfg:block/machines/bioreactor/overlay_front_emissive" + } + } + }, + "is_formed=false,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_bioculture", + "overlay_front": "tfg:block/machines/bioreactor/overlay_front_active", + "overlay_front_emissive": "tfg:block/machines/bioreactor/overlay_front_active_emissive" + } + } + }, + "is_formed=false,recipe_logic_status=working": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_bioculture", + "overlay_front": "tfg:block/machines/bioreactor/overlay_front_active", + "overlay_front_emissive": "tfg:block/machines/bioreactor/overlay_front_active_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_bioculture", + "overlay_front": "tfg:block/machines/bioreactor/overlay_front", + "overlay_front_emissive": "tfg:block/machines/bioreactor/overlay_front_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_bioculture", + "overlay_front": "tfg:block/machines/bioreactor/overlay_front", + "overlay_front_emissive": "tfg:block/machines/bioreactor/overlay_front_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_bioculture", + "overlay_front": "tfg:block/machines/bioreactor/overlay_front_active", + "overlay_front_emissive": "tfg:block/machines/bioreactor/overlay_front_active_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=working": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_bioculture", + "overlay_front": "tfg:block/machines/bioreactor/overlay_front_active", + "overlay_front_emissive": "tfg:block/machines/bioreactor/overlay_front_active_emissive" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/sand_spice.json b/kubejs/assets/tfg/models/block/sand_spice.json new file mode 100644 index 000000000..6adc983e4 --- /dev/null +++ b/kubejs/assets/tfg/models/block/sand_spice.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "tfg:block/sand_spice" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/blackstone_base.json b/kubejs/assets/tfg/models/block/spike/blackstone_base.json deleted file mode 100644 index 85b687af0..000000000 --- a/kubejs/assets/tfg/models/block/spike/blackstone_base.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_base", - "textures": { - "texture": "minecraft:block/blackstone", - "particle": "minecraft:block/blackstone" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/blackstone_middle.json b/kubejs/assets/tfg/models/block/spike/blackstone_middle.json deleted file mode 100644 index c97f86e7c..000000000 --- a/kubejs/assets/tfg/models/block/spike/blackstone_middle.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_middle", - "textures": { - "texture": "minecraft:block/blackstone", - "particle": "minecraft:block/blackstone" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/blackstone_tip.json b/kubejs/assets/tfg/models/block/spike/blackstone_tip.json deleted file mode 100644 index c5cc7ee46..000000000 --- a/kubejs/assets/tfg/models/block/spike/blackstone_tip.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_tip", - "textures": { - "texture": "minecraft:block/blackstone", - "particle": "minecraft:block/blackstone" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/deepslate_base.json b/kubejs/assets/tfg/models/block/spike/deepslate_base.json deleted file mode 100644 index d2eedaedb..000000000 --- a/kubejs/assets/tfg/models/block/spike/deepslate_base.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_base", - "textures": { - "texture": "minecraft:block/deepslate", - "particle": "minecraft:block/deepslate" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/deepslate_middle.json b/kubejs/assets/tfg/models/block/spike/deepslate_middle.json deleted file mode 100644 index d05f072e8..000000000 --- a/kubejs/assets/tfg/models/block/spike/deepslate_middle.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_middle", - "textures": { - "texture": "minecraft:block/deepslate", - "particle": "minecraft:block/deepslate" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/deepslate_tip.json b/kubejs/assets/tfg/models/block/spike/deepslate_tip.json deleted file mode 100644 index a5e1642c1..000000000 --- a/kubejs/assets/tfg/models/block/spike/deepslate_tip.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_tip", - "textures": { - "texture": "minecraft:block/deepslate", - "particle": "minecraft:block/deepslate" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/dripstone_base.json b/kubejs/assets/tfg/models/block/spike/dripstone_base.json deleted file mode 100644 index 5071380fa..000000000 --- a/kubejs/assets/tfg/models/block/spike/dripstone_base.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_base", - "textures": { - "texture": "minecraft:block/dripstone_block", - "particle": "minecraft:block/dripstone_block" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/dripstone_middle.json b/kubejs/assets/tfg/models/block/spike/dripstone_middle.json deleted file mode 100644 index 49152e0c5..000000000 --- a/kubejs/assets/tfg/models/block/spike/dripstone_middle.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_middle", - "textures": { - "texture": "minecraft:block/dripstone_block", - "particle": "minecraft:block/dripstone_block" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/dripstone_tip.json b/kubejs/assets/tfg/models/block/spike/dripstone_tip.json deleted file mode 100644 index ee555face..000000000 --- a/kubejs/assets/tfg/models/block/spike/dripstone_tip.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_tip", - "textures": { - "texture": "minecraft:block/dripstone_block", - "particle": "minecraft:block/dripstone_block" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/glacio_stone_base.json b/kubejs/assets/tfg/models/block/spike/glacio_stone_base.json deleted file mode 100644 index c4edc4623..000000000 --- a/kubejs/assets/tfg/models/block/spike/glacio_stone_base.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_base", - "textures": { - "texture": "ad_astra:block/glacio_stone", - "particle": "ad_astra:block/glacio_stone" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/glacio_stone_middle.json b/kubejs/assets/tfg/models/block/spike/glacio_stone_middle.json deleted file mode 100644 index b9827a74f..000000000 --- a/kubejs/assets/tfg/models/block/spike/glacio_stone_middle.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_middle", - "textures": { - "texture": "ad_astra:block/glacio_stone", - "particle": "ad_astra:block/glacio_stone" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/glacio_stone_tip.json b/kubejs/assets/tfg/models/block/spike/glacio_stone_tip.json deleted file mode 100644 index 2ee4306fd..000000000 --- a/kubejs/assets/tfg/models/block/spike/glacio_stone_tip.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_tip", - "textures": { - "texture": "ad_astra:block/glacio_stone", - "particle": "ad_astra:block/glacio_stone" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/mars_stone_base.json b/kubejs/assets/tfg/models/block/spike/mars_stone_base.json deleted file mode 100644 index 63b3f3ad6..000000000 --- a/kubejs/assets/tfg/models/block/spike/mars_stone_base.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_base", - "textures": { - "texture": "ad_astra:block/mars_stone", - "particle": "ad_astra:block/mars_stone" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/mars_stone_middle.json b/kubejs/assets/tfg/models/block/spike/mars_stone_middle.json deleted file mode 100644 index 436acdd69..000000000 --- a/kubejs/assets/tfg/models/block/spike/mars_stone_middle.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_middle", - "textures": { - "texture": "ad_astra:block/mars_stone", - "particle": "ad_astra:block/mars_stone" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/mars_stone_tip.json b/kubejs/assets/tfg/models/block/spike/mars_stone_tip.json deleted file mode 100644 index 0b142eaa7..000000000 --- a/kubejs/assets/tfg/models/block/spike/mars_stone_tip.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_tip", - "textures": { - "texture": "ad_astra:block/mars_stone", - "particle": "ad_astra:block/mars_stone" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/mercury_stone_base.json b/kubejs/assets/tfg/models/block/spike/mercury_stone_base.json deleted file mode 100644 index 856a11273..000000000 --- a/kubejs/assets/tfg/models/block/spike/mercury_stone_base.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_base", - "textures": { - "texture": "ad_astra:block/mercury_stone", - "particle": "ad_astra:block/mercury_stone" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/mercury_stone_middle.json b/kubejs/assets/tfg/models/block/spike/mercury_stone_middle.json deleted file mode 100644 index 5e1ae1476..000000000 --- a/kubejs/assets/tfg/models/block/spike/mercury_stone_middle.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_middle", - "textures": { - "texture": "ad_astra:block/mercury_stone", - "particle": "ad_astra:block/mercury_stone" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/mercury_stone_tip.json b/kubejs/assets/tfg/models/block/spike/mercury_stone_tip.json deleted file mode 100644 index 58672e57c..000000000 --- a/kubejs/assets/tfg/models/block/spike/mercury_stone_tip.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_tip", - "textures": { - "texture": "ad_astra:block/mercury_stone", - "particle": "ad_astra:block/mercury_stone" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/moon_deepslate_base.json b/kubejs/assets/tfg/models/block/spike/moon_deepslate_base.json deleted file mode 100644 index 005003d00..000000000 --- a/kubejs/assets/tfg/models/block/spike/moon_deepslate_base.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_base", - "textures": { - "texture": "ad_astra:block/moon_deepslate", - "particle": "ad_astra:block/moon_deepslate" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/moon_deepslate_middle.json b/kubejs/assets/tfg/models/block/spike/moon_deepslate_middle.json deleted file mode 100644 index 4c9c84dfa..000000000 --- a/kubejs/assets/tfg/models/block/spike/moon_deepslate_middle.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_middle", - "textures": { - "texture": "ad_astra:block/moon_deepslate", - "particle": "ad_astra:block/moon_deepslate" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/moon_deepslate_tip.json b/kubejs/assets/tfg/models/block/spike/moon_deepslate_tip.json deleted file mode 100644 index f9739416b..000000000 --- a/kubejs/assets/tfg/models/block/spike/moon_deepslate_tip.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_tip", - "textures": { - "texture": "ad_astra:block/moon_deepslate", - "particle": "ad_astra:block/moon_deepslate" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/moon_stone_base.json b/kubejs/assets/tfg/models/block/spike/moon_stone_base.json deleted file mode 100644 index ebe669ef3..000000000 --- a/kubejs/assets/tfg/models/block/spike/moon_stone_base.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_base", - "textures": { - "texture": "ad_astra:block/moon_stone", - "particle": "ad_astra:block/moon_stone" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/moon_stone_middle.json b/kubejs/assets/tfg/models/block/spike/moon_stone_middle.json deleted file mode 100644 index 03f7da72f..000000000 --- a/kubejs/assets/tfg/models/block/spike/moon_stone_middle.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_middle", - "textures": { - "texture": "ad_astra:block/moon_stone", - "particle": "ad_astra:block/moon_stone" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/moon_stone_tip.json b/kubejs/assets/tfg/models/block/spike/moon_stone_tip.json deleted file mode 100644 index a22a4e791..000000000 --- a/kubejs/assets/tfg/models/block/spike/moon_stone_tip.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_tip", - "textures": { - "texture": "ad_astra:block/moon_stone", - "particle": "ad_astra:block/moon_stone" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/permafrost_base.json b/kubejs/assets/tfg/models/block/spike/permafrost_base.json deleted file mode 100644 index d813dcf32..000000000 --- a/kubejs/assets/tfg/models/block/spike/permafrost_base.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_base", - "textures": { - "texture": "ad_astra:block/permafrost", - "particle": "ad_astra:block/permafrost" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/permafrost_middle.json b/kubejs/assets/tfg/models/block/spike/permafrost_middle.json deleted file mode 100644 index 01e3b5a50..000000000 --- a/kubejs/assets/tfg/models/block/spike/permafrost_middle.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_middle", - "textures": { - "texture": "ad_astra:block/permafrost", - "particle": "ad_astra:block/permafrost" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/permafrost_tip.json b/kubejs/assets/tfg/models/block/spike/permafrost_tip.json deleted file mode 100644 index 8257dc629..000000000 --- a/kubejs/assets/tfg/models/block/spike/permafrost_tip.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_tip", - "textures": { - "texture": "ad_astra:block/permafrost", - "particle": "ad_astra:block/permafrost" - } -} \ 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 deleted file mode 100644 index 043779ceb..000000000 --- a/kubejs/assets/tfg/models/block/spike/red_granite_base.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "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 deleted file mode 100644 index 5ee27d884..000000000 --- a/kubejs/assets/tfg/models/block/spike/red_granite_middle.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "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 deleted file mode 100644 index 0a70c78b8..000000000 --- a/kubejs/assets/tfg/models/block/spike/red_granite_tip.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "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/block/spike/venus_stone_base.json b/kubejs/assets/tfg/models/block/spike/venus_stone_base.json deleted file mode 100644 index b39e1a5b2..000000000 --- a/kubejs/assets/tfg/models/block/spike/venus_stone_base.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_base", - "textures": { - "texture": "ad_astra:block/venus_stone", - "particle": "ad_astra:block/venus_stone" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/venus_stone_middle.json b/kubejs/assets/tfg/models/block/spike/venus_stone_middle.json deleted file mode 100644 index 32351495c..000000000 --- a/kubejs/assets/tfg/models/block/spike/venus_stone_middle.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_middle", - "textures": { - "texture": "ad_astra:block/venus_stone", - "particle": "ad_astra:block/venus_stone" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/venus_stone_tip.json b/kubejs/assets/tfg/models/block/spike/venus_stone_tip.json deleted file mode 100644 index 654aac6cf..000000000 --- a/kubejs/assets/tfg/models/block/spike/venus_stone_tip.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "tfc:block/rock/spike_tip", - "textures": { - "texture": "ad_astra:block/venus_stone", - "particle": "ad_astra:block/venus_stone" - } -} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/bioculture_rotor_primary.json b/kubejs/assets/tfg/models/item/bioculture_rotor_primary.json new file mode 100644 index 000000000..7d410e5fa --- /dev/null +++ b/kubejs/assets/tfg/models/item/bioculture_rotor_primary.json @@ -0,0 +1,3 @@ +{ + "parent": "tfg:block/casings/bioculture_rotor_primary" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/bioculture_rotor_primary_active.json b/kubejs/assets/tfg/models/item/bioculture_rotor_primary_active.json new file mode 100644 index 000000000..3b2149d67 --- /dev/null +++ b/kubejs/assets/tfg/models/item/bioculture_rotor_primary_active.json @@ -0,0 +1,3 @@ +{ + "parent": "tfg:block/casings/bioculture_rotor_primary_active" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/bioculture_rotor_secondary.json b/kubejs/assets/tfg/models/item/bioculture_rotor_secondary.json new file mode 100644 index 000000000..11b7547ac --- /dev/null +++ b/kubejs/assets/tfg/models/item/bioculture_rotor_secondary.json @@ -0,0 +1,3 @@ +{ + "parent": "tfg:block/casings/bioculture_rotor_secondary" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/bioculture_rotor_secondary_active.json b/kubejs/assets/tfg/models/item/bioculture_rotor_secondary_active.json new file mode 100644 index 000000000..5aa33a043 --- /dev/null +++ b/kubejs/assets/tfg/models/item/bioculture_rotor_secondary_active.json @@ -0,0 +1,3 @@ +{ + "parent": "tfg:block/casings/bioculture_rotor_secondary_active" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/bioreactor.json b/kubejs/assets/tfg/models/item/bioreactor.json new file mode 100644 index 000000000..3da90f5bd --- /dev/null +++ b/kubejs/assets/tfg/models/item/bioreactor.json @@ -0,0 +1,3 @@ +{ + "parent": "tfg:block/machines/bioreactor" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/flax_line.json b/kubejs/assets/tfg/models/item/flax_line.json new file mode 100644 index 000000000..4e95ef350 --- /dev/null +++ b/kubejs/assets/tfg/models/item/flax_line.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "tfg:item/flax_line" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/flax_product.json b/kubejs/assets/tfg/models/item/flax_product.json new file mode 100644 index 000000000..1df7e23a2 --- /dev/null +++ b/kubejs/assets/tfg/models/item/flax_product.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "tfg:item/flax_product" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/flax_tow.json b/kubejs/assets/tfg/models/item/flax_tow.json new file mode 100644 index 000000000..e55451cde --- /dev/null +++ b/kubejs/assets/tfg/models/item/flax_tow.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "tfg:item/flax_tow" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/flax_waste.json b/kubejs/assets/tfg/models/item/flax_waste.json new file mode 100644 index 000000000..d738595dd --- /dev/null +++ b/kubejs/assets/tfg/models/item/flax_waste.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "tfg:item/flax_waste" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/flax_wild.json b/kubejs/assets/tfg/models/item/flax_wild.json new file mode 100644 index 000000000..bc8d85359 --- /dev/null +++ b/kubejs/assets/tfg/models/item/flax_wild.json @@ -0,0 +1,3 @@ +{ + "parent": "tfg:block/crop/flax_wild" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/grass/amber_clay_mycelium.json b/kubejs/assets/tfg/models/item/grass/amber_clay_mycelium.json new file mode 100644 index 000000000..87564c1e6 --- /dev/null +++ b/kubejs/assets/tfg/models/item/grass/amber_clay_mycelium.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "up": "tfg:block/grass/amber_top", + "down": "tfg:block/grass/mars_clay_dirt", + "north": "tfg:block/grass/amber_clay_side", + "south": "tfg:block/grass/amber_clay_side", + "east": "tfg:block/grass/amber_clay_side", + "west": "tfg:block/grass/amber_clay_side", + "particle": "tfg:block/grass/amber_clay_side" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/grass/amber_kaolin_mycelium.json b/kubejs/assets/tfg/models/item/grass/amber_kaolin_mycelium.json new file mode 100644 index 000000000..573ef9584 --- /dev/null +++ b/kubejs/assets/tfg/models/item/grass/amber_kaolin_mycelium.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "up": "tfg:block/grass/amber_top", + "down": "tfc:block/red_kaolin_clay", + "north": "tfg:block/grass/amber_kaolin_side", + "south": "tfg:block/grass/amber_kaolin_side", + "east": "tfg:block/grass/amber_kaolin_side", + "west": "tfg:block/grass/amber_kaolin_side", + "particle": "tfg:block/grass/amber_kaolin_side" + } +} diff --git a/kubejs/assets/tfg/models/item/grass/rusticus_clay_mycelium.json b/kubejs/assets/tfg/models/item/grass/rusticus_clay_mycelium.json new file mode 100644 index 000000000..5a3d6bca5 --- /dev/null +++ b/kubejs/assets/tfg/models/item/grass/rusticus_clay_mycelium.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "up": "tfg:block/grass/rusticus_top_1", + "down": "tfg:block/grass/mars_clay_dirt", + "north": "tfg:block/grass/rusticus_clay_side", + "south": "tfg:block/grass/rusticus_clay_side", + "east": "tfg:block/grass/rusticus_clay_side", + "west": "tfg:block/grass/rusticus_clay_side", + "particle": "tfg:block/grass/rusticus_clay_side" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/grass/rusticus_kaolin_mycelium.json b/kubejs/assets/tfg/models/item/grass/rusticus_kaolin_mycelium.json new file mode 100644 index 000000000..fce361c1c --- /dev/null +++ b/kubejs/assets/tfg/models/item/grass/rusticus_kaolin_mycelium.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "up": "tfg:block/grass/rusticus_top_2", + "down": "tfc:block/red_kaolin_clay", + "north": "tfg:block/grass/rusticus_kaolin_side", + "south": "tfg:block/grass/rusticus_kaolin_side", + "east": "tfg:block/grass/rusticus_kaolin_side", + "west": "tfg:block/grass/rusticus_kaolin_side", + "particle": "tfg:block/grass/rusticus_kaolin_side" + } +} diff --git a/kubejs/assets/tfg/models/item/grass/sangnum_clay_mycelium.json b/kubejs/assets/tfg/models/item/grass/sangnum_clay_mycelium.json new file mode 100644 index 000000000..ed65a59ac --- /dev/null +++ b/kubejs/assets/tfg/models/item/grass/sangnum_clay_mycelium.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "up": "tfg:block/grass/sangnum_top", + "down": "tfg:block/grass/mars_clay_dirt", + "north": "tfg:block/grass/sangnum_clay_side", + "south": "tfg:block/grass/sangnum_clay_side", + "east": "tfg:block/grass/sangnum_clay_side", + "west": "tfg:block/grass/sangnum_clay_side", + "particle": "tfg:block/grass/sangnum_clay_side" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/grass/sangnum_kaolin_mycelium.json b/kubejs/assets/tfg/models/item/grass/sangnum_kaolin_mycelium.json new file mode 100644 index 000000000..3457ec822 --- /dev/null +++ b/kubejs/assets/tfg/models/item/grass/sangnum_kaolin_mycelium.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "up": "tfg:block/grass/sangnum_top", + "down": "tfc:block/red_kaolin_clay", + "north": "tfg:block/grass/sangnum_kaolin_side", + "south": "tfg:block/grass/sangnum_kaolin_side", + "east": "tfg:block/grass/sangnum_kaolin_side", + "west": "tfg:block/grass/sangnum_kaolin_side", + "particle": "tfg:block/grass/sangnum_kaolin_side" + } +} diff --git a/kubejs/assets/tfg/models/item/linen_cloth.json b/kubejs/assets/tfg/models/item/linen_cloth.json new file mode 100644 index 000000000..bfe64ab12 --- /dev/null +++ b/kubejs/assets/tfg/models/item/linen_cloth.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/linen_cloth" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/linen_thread.json b/kubejs/assets/tfg/models/item/linen_thread.json new file mode 100644 index 000000000..492133d0d --- /dev/null +++ b/kubejs/assets/tfg/models/item/linen_thread.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/linen_thread" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/machine_casing_bioculture.json b/kubejs/assets/tfg/models/item/machine_casing_bioculture.json new file mode 100644 index 000000000..08f56c0bd --- /dev/null +++ b/kubejs/assets/tfg/models/item/machine_casing_bioculture.json @@ -0,0 +1,3 @@ +{ + "parent": "tfg:block/casings/machine_casing_bioculture" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/machine_casing_bioculture_glass.json b/kubejs/assets/tfg/models/item/machine_casing_bioculture_glass.json new file mode 100644 index 000000000..52a14400f --- /dev/null +++ b/kubejs/assets/tfg/models/item/machine_casing_bioculture_glass.json @@ -0,0 +1,3 @@ +{ + "parent": "tfg:block/casings/machine_casing_bioculture_glass" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/saplings/glacian.json b/kubejs/assets/tfg/models/item/saplings/glacian.json new file mode 100644 index 000000000..653a72425 --- /dev/null +++ b/kubejs/assets/tfg/models/item/saplings/glacian.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "tfg:item/wood/glacian_mushroom" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/spawn_egg/wraptor.json b/kubejs/assets/tfg/models/item/spawn_egg/wraptor.json new file mode 100644 index 000000000..185724546 --- /dev/null +++ b/kubejs/assets/tfg/models/item/spawn_egg/wraptor.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "tfg:item/spawn_egg/moon_rabbit" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/washed_flax.json b/kubejs/assets/tfg/models/item/washed_flax.json new file mode 100644 index 000000000..3f67bc269 --- /dev/null +++ b/kubejs/assets/tfg/models/item/washed_flax.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "tfg:item/washed_flax" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/wraptor_egg.json b/kubejs/assets/tfg/models/item/wraptor_egg.json new file mode 100644 index 000000000..787da8b8a --- /dev/null +++ b/kubejs/assets/tfg/models/item/wraptor_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "species:item/wraptor_egg" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/wraptor_sugar.json b/kubejs/assets/tfg/models/item/wraptor_sugar.json new file mode 100644 index 000000000..9d9b5a455 --- /dev/null +++ b/kubejs/assets/tfg/models/item/wraptor_sugar.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/wraptor_sugar" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/wraptor_wool.json b/kubejs/assets/tfg/models/item/wraptor_wool.json new file mode 100644 index 000000000..bad6819a2 --- /dev/null +++ b/kubejs/assets/tfg/models/item/wraptor_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/wraptor_wool" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_side.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_side.png new file mode 100644 index 000000000..63ad012cc Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_side.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_side.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_side.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_side.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_side_n.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_side_n.png new file mode 100644 index 000000000..80abba23e Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_side_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_side_s.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_side_s.png new file mode 100644 index 000000000..e3f4976a3 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_side_s.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_side_s.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_side_s.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_side_s.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_top.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_top.png new file mode 100644 index 000000000..76075a239 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_top.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_top.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_top.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_top.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_top_n.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_top_n.png new file mode 100644 index 000000000..80abba23e Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_top_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_top_s.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_top_s.png new file mode 100644 index 000000000..348b62f13 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_top_s.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_top_s.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_top_s.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_primary_top_s.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_side.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_side.png new file mode 100644 index 000000000..e48f99733 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_side.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_side.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_side.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_side.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_side_n.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_side_n.png new file mode 100644 index 000000000..80abba23e Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_side_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_side_s.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_side_s.png new file mode 100644 index 000000000..e3f4976a3 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_side_s.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_side_s.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_side_s.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_side_s.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_top.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_top.png new file mode 100644 index 000000000..ad4108573 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_top.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_top.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_top.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_top.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_top_n.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_top_n.png new file mode 100644 index 000000000..80abba23e Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_top_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_top_s.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_top_s.png new file mode 100644 index 000000000..348b62f13 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_top_s.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_top_s.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_top_s.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_fluid_secondary_top_s.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side.png new file mode 100644 index 000000000..e4afcb1ad Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_active.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_active.png new file mode 100644 index 000000000..a8a646d28 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_active.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_active.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_active.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_active.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_active_n.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_active_n.png new file mode 100644 index 000000000..ad4c99941 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_active_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_active_n.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_active_n.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_active_n.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_active_s.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_active_s.png new file mode 100644 index 000000000..7a4925489 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_active_s.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_active_s.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_active_s.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_active_s.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_n.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_n.png new file mode 100644 index 000000000..42bd00011 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_s.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_s.png new file mode 100644 index 000000000..1a2786ee9 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_side_s.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top.png new file mode 100644 index 000000000..72e4f6c52 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_active.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_active.png new file mode 100644 index 000000000..9ccfabe7e Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_active.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_active.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_active.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_active.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_active_n.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_active_n.png new file mode 100644 index 000000000..fba693036 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_active_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_active_n.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_active_n.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_active_n.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_active_s.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_active_s.png new file mode 100644 index 000000000..f7a568344 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_active_s.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_active_s.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_active_s.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_active_s.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_n.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_n.png new file mode 100644 index 000000000..8c699fbed Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_s.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_s.png new file mode 100644 index 000000000..095ce3e82 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_primary_top_s.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side.png new file mode 100644 index 000000000..4636329d9 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_active.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_active.png new file mode 100644 index 000000000..f7e5528f9 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_active.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_active.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_active.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_active.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_active_n.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_active_n.png new file mode 100644 index 000000000..ad4c99941 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_active_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_active_n.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_active_n.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_active_n.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_active_s.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_active_s.png new file mode 100644 index 000000000..7a4925489 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_active_s.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_active_s.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_active_s.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_active_s.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_n.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_n.png new file mode 100644 index 000000000..c7248311c Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_s.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_s.png new file mode 100644 index 000000000..e71883126 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_side_s.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top.png new file mode 100644 index 000000000..d5737fd7d Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_active.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_active.png new file mode 100644 index 000000000..29efed6dc Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_active.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_active.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_active.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_active.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_active_n.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_active_n.png new file mode 100644 index 000000000..fba693036 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_active_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_active_n.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_active_n.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_active_n.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_active_s.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_active_s.png new file mode 100644 index 000000000..f7a568344 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_active_s.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_active_s.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_active_s.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_active_s.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_n.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_n.png new file mode 100644 index 000000000..adf90b683 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_s.png b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_s.png new file mode 100644 index 000000000..8a7e49714 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/bioculture_rotor_secondary_top_s.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture.png new file mode 100644 index 000000000..ed69bb482 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture.png.mcmeta new file mode 100644 index 000000000..32e26e9ba --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture.png.mcmeta @@ -0,0 +1,5 @@ +{ + "ldlib": { + "connection": "tfg:block/casings/machine_casing_bioculture_ctm" + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_ctm.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_ctm.png new file mode 100644 index 000000000..3449cb7d3 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_ctm.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_ctm_n.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_ctm_n.png new file mode 100644 index 000000000..086eecd3b Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_ctm_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_ctm_s.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_ctm_s.png new file mode 100644 index 000000000..002baa07b Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_ctm_s.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass.png new file mode 100644 index 000000000..34c4f7fef Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass.png.mcmeta new file mode 100644 index 000000000..578288d83 --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass.png.mcmeta @@ -0,0 +1,5 @@ +{ + "ldlib": { + "connection": "tfg:block/casings/machine_casing_bioculture_glass_ctm" + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_active.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_active.png new file mode 100644 index 000000000..8db553146 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_active.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_active.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_active.png.mcmeta new file mode 100644 index 000000000..d380a961f --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_active.png.mcmeta @@ -0,0 +1,8 @@ +{ + "animation": { + "frametime": 1 + }, + "ldlib": { + "connection": "tfg:block/casings/machine_casing_bioculture_glass_ctm_active" + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_ctm.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_ctm.png new file mode 100644 index 000000000..eb8036181 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_ctm.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_ctm_active.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_ctm_active.png new file mode 100644 index 000000000..6ea532665 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_ctm_active.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_ctm_active.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_ctm_active.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_ctm_active.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_ctm_n.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_ctm_n.png new file mode 100644 index 000000000..4743daeda Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_ctm_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_ctm_s.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_ctm_s.png new file mode 100644 index 000000000..9c4be1df0 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_ctm_s.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_n.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_n.png new file mode 100644 index 000000000..597b0bf47 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_s.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_s.png new file mode 100644 index 000000000..e0dbd2ca8 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_glass_s.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_n.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_n.png new file mode 100644 index 000000000..a3f120acd Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_s.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_s.png new file mode 100644 index 000000000..df37d336c Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_bioculture_s.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet.png new file mode 100644 index 000000000..164fb3ea3 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet.png.mcmeta new file mode 100644 index 000000000..7abcc19e0 --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet.png.mcmeta @@ -0,0 +1,5 @@ +{ + "ldlib": { + "connection": "tfg:block/casings/machine_casing_ultraviolet_ctm" + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_bloom.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_bloom.png new file mode 100644 index 000000000..a34b8ba2b Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_bloom.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_bloom.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_bloom.png.mcmeta new file mode 100644 index 000000000..c7dc0a321 --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_bloom.png.mcmeta @@ -0,0 +1,9 @@ +{ + "ldlib": { + "connection": "tfg:block/casings/machine_casing_ultraviolet_bloom_ctm", + "emissive": true + }, + "shimmer": { + "bloom": true + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_bloom_ctm.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_bloom_ctm.png new file mode 100644 index 000000000..39561b487 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_bloom_ctm.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_bloom_ctm_n.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_bloom_ctm_n.png new file mode 100644 index 000000000..3260987b2 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_bloom_ctm_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_bloom_ctm_s.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_bloom_ctm_s.png new file mode 100644 index 000000000..cb71d4ed9 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_bloom_ctm_s.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_bloom_n.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_bloom_n.png new file mode 100644 index 000000000..fbbe39a25 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_bloom_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_bloom_s.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_bloom_s.png new file mode 100644 index 000000000..cd14c8f0d Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_bloom_s.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_ctm.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_ctm.png new file mode 100644 index 000000000..8dcf11c47 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_ctm.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_ctm_n.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_ctm_n.png new file mode 100644 index 000000000..3260987b2 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_ctm_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_ctm_s.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_ctm_s.png new file mode 100644 index 000000000..cb71d4ed9 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_ctm_s.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_n.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_n.png new file mode 100644 index 000000000..fbbe39a25 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_s.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_s.png new file mode 100644 index 000000000..cd14c8f0d Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_ultraviolet_s.png differ diff --git a/kubejs/assets/tfg/textures/block/crop/flax_age_0.png b/kubejs/assets/tfg/textures/block/crop/flax_age_0.png new file mode 100644 index 000000000..b99477ad6 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/crop/flax_age_0.png differ diff --git a/kubejs/assets/tfg/textures/block/crop/flax_age_1.png b/kubejs/assets/tfg/textures/block/crop/flax_age_1.png new file mode 100644 index 000000000..d752f49a0 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/crop/flax_age_1.png differ diff --git a/kubejs/assets/tfg/textures/block/crop/flax_age_2.png b/kubejs/assets/tfg/textures/block/crop/flax_age_2.png new file mode 100644 index 000000000..ff2a41f78 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/crop/flax_age_2.png differ diff --git a/kubejs/assets/tfg/textures/block/crop/flax_age_3.png b/kubejs/assets/tfg/textures/block/crop/flax_age_3.png new file mode 100644 index 000000000..347557b6c Binary files /dev/null and b/kubejs/assets/tfg/textures/block/crop/flax_age_3.png differ diff --git a/kubejs/assets/tfg/textures/block/crop/flax_age_4_bottom.png b/kubejs/assets/tfg/textures/block/crop/flax_age_4_bottom.png new file mode 100644 index 000000000..49d943b57 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/crop/flax_age_4_bottom.png differ diff --git a/kubejs/assets/tfg/textures/block/crop/flax_age_4_top.png b/kubejs/assets/tfg/textures/block/crop/flax_age_4_top.png new file mode 100644 index 000000000..5ad34b4dd Binary files /dev/null and b/kubejs/assets/tfg/textures/block/crop/flax_age_4_top.png differ diff --git a/kubejs/assets/tfg/textures/block/crop/flax_age_5_bottom.png b/kubejs/assets/tfg/textures/block/crop/flax_age_5_bottom.png new file mode 100644 index 000000000..cd7efed0d Binary files /dev/null and b/kubejs/assets/tfg/textures/block/crop/flax_age_5_bottom.png differ diff --git a/kubejs/assets/tfg/textures/block/crop/flax_age_5_top.png b/kubejs/assets/tfg/textures/block/crop/flax_age_5_top.png new file mode 100644 index 000000000..c767d68e9 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/crop/flax_age_5_top.png differ diff --git a/kubejs/assets/tfg/textures/block/crop/flax_age_6_bottom.png b/kubejs/assets/tfg/textures/block/crop/flax_age_6_bottom.png new file mode 100644 index 000000000..33905b917 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/crop/flax_age_6_bottom.png differ diff --git a/kubejs/assets/tfg/textures/block/crop/flax_age_6_top.png b/kubejs/assets/tfg/textures/block/crop/flax_age_6_top.png new file mode 100644 index 000000000..edaa3caa2 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/crop/flax_age_6_top.png differ diff --git a/kubejs/assets/tfg/textures/block/crop/flax_dead_bottom.png b/kubejs/assets/tfg/textures/block/crop/flax_dead_bottom.png new file mode 100644 index 000000000..cdc109666 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/crop/flax_dead_bottom.png differ diff --git a/kubejs/assets/tfg/textures/block/crop/flax_dead_top.png b/kubejs/assets/tfg/textures/block/crop/flax_dead_top.png new file mode 100644 index 000000000..922995fca Binary files /dev/null and b/kubejs/assets/tfg/textures/block/crop/flax_dead_top.png differ diff --git a/kubejs/assets/tfg/textures/block/crop/flax_dead_young.png b/kubejs/assets/tfg/textures/block/crop/flax_dead_young.png new file mode 100644 index 000000000..537b89f0d Binary files /dev/null and b/kubejs/assets/tfg/textures/block/crop/flax_dead_young.png differ diff --git a/kubejs/assets/tfg/textures/block/grass/amber_clay_side.png b/kubejs/assets/tfg/textures/block/grass/amber_clay_side.png new file mode 100644 index 000000000..0ecd18fe6 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/grass/amber_clay_side.png differ diff --git a/kubejs/assets/tfg/textures/block/grass/amber_kaolin_side.png b/kubejs/assets/tfg/textures/block/grass/amber_kaolin_side.png new file mode 100644 index 000000000..a36d626f4 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/grass/amber_kaolin_side.png differ diff --git a/kubejs/assets/tfg/textures/block/grass/mars_clay_dirt.png b/kubejs/assets/tfg/textures/block/grass/mars_clay_dirt.png new file mode 100644 index 000000000..5143d8a69 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/grass/mars_clay_dirt.png differ diff --git a/kubejs/assets/tfg/textures/block/grass/rusticus_clay_side.png b/kubejs/assets/tfg/textures/block/grass/rusticus_clay_side.png new file mode 100644 index 000000000..98ec9563d Binary files /dev/null and b/kubejs/assets/tfg/textures/block/grass/rusticus_clay_side.png differ diff --git a/kubejs/assets/tfg/textures/block/grass/rusticus_kaolin_side.png b/kubejs/assets/tfg/textures/block/grass/rusticus_kaolin_side.png new file mode 100644 index 000000000..6a8033075 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/grass/rusticus_kaolin_side.png differ diff --git a/kubejs/assets/tfg/textures/block/grass/sangnum_clay_side.png b/kubejs/assets/tfg/textures/block/grass/sangnum_clay_side.png new file mode 100644 index 000000000..e21be29d6 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/grass/sangnum_clay_side.png differ diff --git a/kubejs/assets/tfg/textures/block/grass/sangnum_kaolin_side.png b/kubejs/assets/tfg/textures/block/grass/sangnum_kaolin_side.png new file mode 100644 index 000000000..2984d4727 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/grass/sangnum_kaolin_side.png differ diff --git a/kubejs/assets/tfg/textures/block/grass/snowy_clay_side.png b/kubejs/assets/tfg/textures/block/grass/snowy_clay_side.png new file mode 100644 index 000000000..e96f3cb20 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/grass/snowy_clay_side.png differ diff --git a/kubejs/assets/tfg/textures/block/grass/snowy_kaolin.png b/kubejs/assets/tfg/textures/block/grass/snowy_kaolin.png new file mode 100644 index 000000000..4e62059ba Binary files /dev/null and b/kubejs/assets/tfg/textures/block/grass/snowy_kaolin.png differ diff --git a/kubejs/assets/tfg/textures/block/large_nest/large_nest_sniffer_0.png b/kubejs/assets/tfg/textures/block/large_nest/large_nest_sniffer_0.png index b8f371f0e..da5bc52a1 100644 Binary files a/kubejs/assets/tfg/textures/block/large_nest/large_nest_sniffer_0.png and b/kubejs/assets/tfg/textures/block/large_nest/large_nest_sniffer_0.png differ diff --git a/kubejs/assets/tfg/textures/block/large_nest/large_nest_warped_sniffer_0.png b/kubejs/assets/tfg/textures/block/large_nest/large_nest_warped_sniffer_0.png index 0b01dc332..2e017a4d7 100644 Binary files a/kubejs/assets/tfg/textures/block/large_nest/large_nest_warped_sniffer_0.png and b/kubejs/assets/tfg/textures/block/large_nest/large_nest_warped_sniffer_0.png differ diff --git a/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front.png b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front.png new file mode 100644 index 000000000..9ae6a15d9 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front.png differ diff --git a/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active.png b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active.png new file mode 100644 index 000000000..15615a818 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active.png differ diff --git a/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active.png.mcmeta b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active.png.mcmeta new file mode 100644 index 000000000..92cc62352 --- /dev/null +++ b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation":{ + "frametime": 1 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active_emissive.png b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active_emissive.png new file mode 100644 index 000000000..e08e7519f Binary files /dev/null and b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active_emissive.png differ diff --git a/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active_emissive.png.mcmeta b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active_emissive.png.mcmeta new file mode 100644 index 000000000..92cc62352 --- /dev/null +++ b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active_emissive.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation":{ + "frametime": 1 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active_emissive_n.png b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active_emissive_n.png new file mode 100644 index 000000000..a56798b65 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active_emissive_n.png differ diff --git a/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active_emissive_s.png b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active_emissive_s.png new file mode 100644 index 000000000..ad8a15b66 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active_emissive_s.png differ diff --git a/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active_n.png b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active_n.png new file mode 100644 index 000000000..a56798b65 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active_n.png differ diff --git a/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active_s.png b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active_s.png new file mode 100644 index 000000000..ad8a15b66 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_active_s.png differ diff --git a/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_emissive.png b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_emissive.png new file mode 100644 index 000000000..c20a1c981 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_emissive.png differ diff --git a/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_n.png b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_n.png new file mode 100644 index 000000000..a56798b65 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_n.png differ diff --git a/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_s.png b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_s.png new file mode 100644 index 000000000..ad8a15b66 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/machines/bioreactor/overlay_front_s.png differ diff --git a/kubejs/assets/tfg/textures/block/metal/block/aluminium_silicate.png b/kubejs/assets/tfg/textures/block/metal/block/aluminium_silicate.png new file mode 100644 index 000000000..331e8c7f3 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/metal/block/aluminium_silicate.png differ diff --git a/kubejs/assets/tfg/textures/block/metal/block/cobalt.png b/kubejs/assets/tfg/textures/block/metal/block/cobalt.png new file mode 100644 index 000000000..84c6404ac Binary files /dev/null and b/kubejs/assets/tfg/textures/block/metal/block/cobalt.png differ diff --git a/kubejs/assets/tfg/textures/block/metal/block/cobalt_brass.png b/kubejs/assets/tfg/textures/block/metal/block/cobalt_brass.png new file mode 100644 index 000000000..0ca01375a Binary files /dev/null and b/kubejs/assets/tfg/textures/block/metal/block/cobalt_brass.png differ diff --git a/kubejs/assets/tfg/textures/block/metal/block/invar.png b/kubejs/assets/tfg/textures/block/metal/block/invar.png new file mode 100644 index 000000000..cc360e0df Binary files /dev/null and b/kubejs/assets/tfg/textures/block/metal/block/invar.png differ diff --git a/kubejs/assets/tfg/textures/block/metal/block/lead.png b/kubejs/assets/tfg/textures/block/metal/block/lead.png new file mode 100644 index 000000000..52f3b0b64 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/metal/block/lead.png differ diff --git a/kubejs/assets/tfg/textures/block/metal/block/red_alloy.png b/kubejs/assets/tfg/textures/block/metal/block/red_alloy.png new file mode 100644 index 000000000..498b5047d Binary files /dev/null and b/kubejs/assets/tfg/textures/block/metal/block/red_alloy.png differ diff --git a/kubejs/assets/tfg/textures/block/metal/block/tin_alloy.png b/kubejs/assets/tfg/textures/block/metal/block/tin_alloy.png new file mode 100644 index 000000000..d9a5b12e5 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/metal/block/tin_alloy.png differ diff --git a/kubejs/assets/tfg/textures/block/sand_spice.png b/kubejs/assets/tfg/textures/block/sand_spice.png index 2989871e6..34865a852 100644 Binary files a/kubejs/assets/tfg/textures/block/sand_spice.png and b/kubejs/assets/tfg/textures/block/sand_spice.png differ diff --git a/kubejs/assets/tfg/textures/gui/progress_bar/progress_bar_dna.png b/kubejs/assets/tfg/textures/gui/progress_bar/progress_bar_dna.png new file mode 100644 index 000000000..81ea2cf8d Binary files /dev/null and b/kubejs/assets/tfg/textures/gui/progress_bar/progress_bar_dna.png differ diff --git a/kubejs/assets/tfg/textures/item/flax_line.png b/kubejs/assets/tfg/textures/item/flax_line.png new file mode 100644 index 000000000..0ff9bc17f Binary files /dev/null and b/kubejs/assets/tfg/textures/item/flax_line.png differ diff --git a/kubejs/assets/tfg/textures/item/flax_product.png b/kubejs/assets/tfg/textures/item/flax_product.png new file mode 100644 index 000000000..e11d74c10 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/flax_product.png differ diff --git a/kubejs/assets/tfg/textures/item/flax_seed.png b/kubejs/assets/tfg/textures/item/flax_seed.png new file mode 100644 index 000000000..4ea5f5337 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/flax_seed.png differ diff --git a/kubejs/assets/tfg/textures/item/flax_tow.png b/kubejs/assets/tfg/textures/item/flax_tow.png new file mode 100644 index 000000000..e157552b7 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/flax_tow.png differ diff --git a/kubejs/assets/tfg/textures/item/flax_waste.png b/kubejs/assets/tfg/textures/item/flax_waste.png new file mode 100644 index 000000000..6825dab03 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/flax_waste.png differ diff --git a/kubejs/assets/tfg/textures/item/linen_cloth.png b/kubejs/assets/tfg/textures/item/linen_cloth.png new file mode 100644 index 000000000..6bd36cb28 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/linen_cloth.png differ diff --git a/kubejs/assets/tfg/textures/item/linen_thread.png b/kubejs/assets/tfg/textures/item/linen_thread.png new file mode 100644 index 000000000..1cb8f845f Binary files /dev/null and b/kubejs/assets/tfg/textures/item/linen_thread.png differ diff --git a/kubejs/assets/tfg/textures/item/smd_uv_led.png b/kubejs/assets/tfg/textures/item/smd_uv_led.png new file mode 100644 index 000000000..076733cc1 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/smd_uv_led.png differ diff --git a/kubejs/assets/tfg/textures/item/smd_uv_led.png.mcmeta b/kubejs/assets/tfg/textures/item/smd_uv_led.png.mcmeta new file mode 100644 index 000000000..062967259 --- /dev/null +++ b/kubejs/assets/tfg/textures/item/smd_uv_led.png.mcmeta @@ -0,0 +1 @@ +{"animation": {"frametime": 2, "frames": [{"index": 0, "time":60}, 1, 2, 3, 4, {"index": 5, "time":30}, 6, 7, 8, 9]}} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/item/uv_led.png b/kubejs/assets/tfg/textures/item/uv_led.png new file mode 100644 index 000000000..d3dd2b56c Binary files /dev/null and b/kubejs/assets/tfg/textures/item/uv_led.png differ diff --git a/kubejs/assets/tfg/textures/item/uv_led.png.mcmeta b/kubejs/assets/tfg/textures/item/uv_led.png.mcmeta new file mode 100644 index 000000000..062967259 --- /dev/null +++ b/kubejs/assets/tfg/textures/item/uv_led.png.mcmeta @@ -0,0 +1 @@ +{"animation": {"frametime": 2, "frames": [{"index": 0, "time":60}, 1, 2, 3, 4, {"index": 5, "time":30}, 6, 7, 8, 9]}} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/item/washed_flax.png b/kubejs/assets/tfg/textures/item/washed_flax.png new file mode 100644 index 000000000..20f41ed14 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/washed_flax.png differ diff --git a/kubejs/assets/tfg/textures/item/wood/glacian_mushroom.png b/kubejs/assets/tfg/textures/item/wood/glacian_mushroom.png new file mode 100644 index 000000000..228dd1653 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/wood/glacian_mushroom.png differ diff --git a/kubejs/assets/tfg/textures/item/wood/twig/aeronos.png b/kubejs/assets/tfg/textures/item/wood/twig/aeronos.png new file mode 100644 index 000000000..2c7d90688 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/wood/twig/aeronos.png differ diff --git a/kubejs/assets/tfg/textures/item/wood/twig/alphacene.png b/kubejs/assets/tfg/textures/item/wood/twig/alphacene.png new file mode 100644 index 000000000..92a3b8ade Binary files /dev/null and b/kubejs/assets/tfg/textures/item/wood/twig/alphacene.png differ diff --git a/kubejs/assets/tfg/textures/item/wood/twig/glacian.png b/kubejs/assets/tfg/textures/item/wood/twig/glacian.png new file mode 100644 index 000000000..8b8417ba5 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/wood/twig/glacian.png differ diff --git a/kubejs/assets/tfg/textures/item/wood/twig/strophar.png b/kubejs/assets/tfg/textures/item/wood/twig/strophar.png new file mode 100644 index 000000000..9c92f7a57 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/wood/twig/strophar.png differ diff --git a/kubejs/assets/tfg/textures/item/wraptor_sugar.png b/kubejs/assets/tfg/textures/item/wraptor_sugar.png new file mode 100644 index 000000000..837e58dd4 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/wraptor_sugar.png differ diff --git a/kubejs/assets/tfg/textures/item/wraptor_wool.png b/kubejs/assets/tfg/textures/item/wraptor_wool.png new file mode 100644 index 000000000..7f54b85b5 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/wraptor_wool.png differ diff --git a/kubejs/assets/tfg/textures/mob_effect/cooling.png b/kubejs/assets/tfg/textures/mob_effect/cooling.png new file mode 100644 index 000000000..609186a2b Binary files /dev/null and b/kubejs/assets/tfg/textures/mob_effect/cooling.png differ diff --git a/kubejs/assets/tfg/textures/mob_effect/instant_radiation.png b/kubejs/assets/tfg/textures/mob_effect/instant_radiation.png new file mode 100644 index 000000000..09a26283e Binary files /dev/null and b/kubejs/assets/tfg/textures/mob_effect/instant_radiation.png differ diff --git a/kubejs/assets/tfg/textures/mob_effect/warming.png b/kubejs/assets/tfg/textures/mob_effect/warming.png new file mode 100644 index 000000000..72ae45afb Binary files /dev/null and b/kubejs/assets/tfg/textures/mob_effect/warming.png differ diff --git a/kubejs/assets/vintageimprovements/lang/ru_ru.json b/kubejs/assets/vintageimprovements/lang/ru_ru.json new file mode 100644 index 000000000..4abf1e2e3 --- /dev/null +++ b/kubejs/assets/vintageimprovements/lang/ru_ru.json @@ -0,0 +1,29 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "item.vintageimprovements.aluminum_sheet": "Алюминий (Пластина)", + "item.vintageimprovements.andesite_sheet": "Андезит (Пластина)", + "item.vintageimprovements.bronze_sheet": "Бронза (Пластина)", + "item.vintageimprovements.calorite_sheet": "Калорит (Пластина)", + "item.vintageimprovements.cast_iron_sheet": "Чугун (Пластина)", + "item.vintageimprovements.cobalt_sheet": "Кобальт (Пластина)", + "item.vintageimprovements.desh_sheet": "Деш (Пластина)", + "item.vintageimprovements.invar_sheet": "Инвар (Пластина)", + "item.vintageimprovements.lead_sheet": "Свинец (Пластина)", + "item.vintageimprovements.netherite_sheet": "Незерит (Пластина)", + "item.vintageimprovements.nickel_sheet": "Никель (Пластина)", + "item.vintageimprovements.osmium_sheet": "Осмий (Пластина)", + "item.vintageimprovements.palladium_sheet": "Палладий (Пластина)", + "item.vintageimprovements.platinum_sheet": "Платина (Пластина)", + "item.vintageimprovements.rhodium_sheet": "Родий (Пластина)", + "item.vintageimprovements.rose_gold_sheet": "Розовое золото (Пластина)", + "item.vintageimprovements.silver_sheet": "Серебро (Пластина)", + "item.vintageimprovements.steel_sheet": "Сталь (Пластина)", + "item.vintageimprovements.tin_sheet": "Олово (Пластина)", + "item.vintageimprovements.uranium_sheet": "Уран (Пластина)", + "item.vintageimprovements.vanadium_sheet": "Ванадий (Пластина)", + "item.vintageimprovements.zinc_sheet": "Цинк (Пластина)", + "item.vintageimprovements.vanadium_nugget": "Ванадий (Самородок)", + "item.vintageimprovements.vanadium_ingot": "Ванадий (Слиток)", + "block.vintageimprovements.vanadium_block": "Ванадий (Блок)", + "block.vintageimprovements.vacuum_chamber": "Вакуумная камера" +} \ No newline at end of file diff --git a/kubejs/assets/vintageimprovements/lang/zh_cn.json b/kubejs/assets/vintageimprovements/lang/zh_cn.json new file mode 100644 index 000000000..4960be02d --- /dev/null +++ b/kubejs/assets/vintageimprovements/lang/zh_cn.json @@ -0,0 +1,21 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.vintageimprovements.vacuum_chamber": "真空腔室", + "item.vintageimprovements.aluminum_sheet": "铝板", + "item.vintageimprovements.calorite_sheet": "耐热金属板", + "item.vintageimprovements.cast_iron_sheet": "铸铁板", + "item.vintageimprovements.cobalt_sheet": "钴板", + "item.vintageimprovements.desh_sheet": "戴斯板", + "item.vintageimprovements.invar_sheet": "殷钢板", + "item.vintageimprovements.lead_sheet": "铅板", + "item.vintageimprovements.nickel_sheet": "镍板", + "item.vintageimprovements.osmium_sheet": "锇板", + "item.vintageimprovements.ostrum_sheet": "紫金板", + "item.vintageimprovements.palladium_sheet": "钯板", + "item.vintageimprovements.platinum_sheet": "铂板", + "item.vintageimprovements.rhodium_sheet": "铑板", + "item.vintageimprovements.rose_gold_sheet": "玫瑰金板", + "item.vintageimprovements.silver_sheet": "银板", + "item.vintageimprovements.vanadium_sheet": "钒板", + "item.vintageimprovements.zinc_sheet": "锌板" +} \ No newline at end of file diff --git a/kubejs/assets/wan_ancient_beasts/lang/en_us.json b/kubejs/assets/wan_ancient_beasts/lang/en_us.json new file mode 100644 index 000000000..cf9439081 --- /dev/null +++ b/kubejs/assets/wan_ancient_beasts/lang/en_us.json @@ -0,0 +1,4 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.wan_ancient_beasts.quick_red_sand": "Hematitic Quicksand" +} \ No newline at end of file diff --git a/kubejs/assets/wan_ancient_beasts/lang/uk_ua.json b/kubejs/assets/wan_ancient_beasts/lang/uk_ua.json new file mode 100644 index 000000000..d7de1c712 --- /dev/null +++ b/kubejs/assets/wan_ancient_beasts/lang/uk_ua.json @@ -0,0 +1,4 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.wan_ancient_beasts.quick_red_sand": "Гематитовий Пливун" +} \ No newline at end of file diff --git a/kubejs/assets/wan_ancient_beasts/lang/zh_cn.json b/kubejs/assets/wan_ancient_beasts/lang/zh_cn.json new file mode 100644 index 000000000..2091129e7 --- /dev/null +++ b/kubejs/assets/wan_ancient_beasts/lang/zh_cn.json @@ -0,0 +1,4 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.wan_ancient_beasts.quick_red_sand": "赤铁矿流沙" +} \ No newline at end of file diff --git a/kubejs/assets/waterflasks/lang/ru_ru.json b/kubejs/assets/waterflasks/lang/ru_ru.json new file mode 100644 index 000000000..934c25537 --- /dev/null +++ b/kubejs/assets/waterflasks/lang/ru_ru.json @@ -0,0 +1,17 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "waterflasks.item.flaskbreak": "Flask breaking", + "item.waterflasks.bladder": "Мочевой пузырь", + "item.waterflasks.leather_side": "Кожа на бурдюк", + "item.waterflasks.leather_flask.filled": "Бурдюк (%s)", + "item.waterflasks.leather_flask": "Бурдюк", + "item.waterflasks.broken_leather_flask": "Порванный бурдюк", + "item.waterflasks.iron_flask.filled": "Фляга (Кованое железо) (%s)", + "item.waterflasks.iron_flask": "Фляга (Кованое железо)", + "item.waterflasks.unfinished_iron_flask": "Недоделанная фляга (Кованое железо)", + "item.waterflasks.broken_iron_flask": "Сломанная фляга (Кованое железо)", + "_comment4": "Красная сталь", + "item.waterflasks.red_steel_flask.filled": "Фляга (Красная сталь) (%s)", + "item.waterflasks.red_steel_flask": "Фляга (Красная сталь)", + "item.waterflasks.unfinished_red_steel_flask": "Недоделанная фляга (Красная сталь)" +} \ No newline at end of file diff --git a/kubejs/client_scripts/tooltips.js b/kubejs/client_scripts/tooltips.js index c54b99749..c04dc2909 100644 --- a/kubejs/client_scripts/tooltips.js +++ b/kubejs/client_scripts/tooltips.js @@ -48,6 +48,9 @@ const registerTooltips = (event) => { text.add(1, Text.translate('tfg.tooltip.armor.nanomuscle_warmth')), text.add(2, Text.translate('tfg.tooltip.armor.nanomuscle_insulation')) text.add(3, Text.translate('tfg.tooltip.armor.nanomuscle_set')) + if (item == 'gtceu:nanomuscle_leggings') { + text.add(4, Text.translate('tfg.tooltip.armor.nanomuscle_legs_buff')) + } }) event.addAdvanced(['gtceu:quarktech_helmet', 'gtceu:quarktech_chestplate', 'gtceu:quarktech_leggings', 'gtceu:quarktech_boots', 'gtceu:advanced_quarktech_chestplate'], (item, advanced, text) => { text.add(1, Text.translate('tfg.tooltip.armor.quarktech_warmth')), @@ -122,6 +125,44 @@ const registerTooltips = (event) => { event.addAdvanced(['species:petrified_egg'], (item, advanced, text) => { text.add(1, Text.translate('tfg.tooltip.petrified_egg')) }) + + event.addAdvanced(['tfg:sniffer_egg'], (item, advanced, text) => { + text.add(1, Text.translate('tfg.tooltip.attribution.sniffer')), + text.add(2, Text.translate('tfg.tooltip.large_egg')) + + }) + + event.addAdvanced(['tfg:wraptor_egg'], (item, advanced, text) => { + text.add(1, Text.translate('tfg.tooltip.attribution.wraptor')), + text.add(2, Text.translate('tfg.tooltip.large_egg')) + }) + + event.addAdvanced(['tfg:sniffer_wool'], (item, advanced, text) => { + text.add(1, Text.translate('tfg.tooltip.sniffer_wool')) + }) + + event.addAdvanced(['tfg:wraptor_wool'], (item, advanced, text) => { + text.add(1, Text.translate('tfg.tooltip.wraptor_wool')) + }) + + event.addAdvanced(['tfg:wraptor_sugar'], (item, advanced, text) => { + text.add(1, Text.translate('tfg.tooltip.wraptor_sugar')) + }) + + //#region temperature changing foods + event.addAdvanced(['#tfg:cooling_foods'], (item, advanced, text) => { + text.add(1, Text.translate('tfg.tooltip.cooling_foods')) + }) + + event.addAdvanced(['#tfg:cooling_foods_strong'], (item, advanced, text) => { + text.add(1, Text.translate('tfg.tooltip.cooling_foods_strong')) + }) + + event.addAdvanced(['#tfg:warming_foods'], (item, advanced, text) => { + text.add(1, Text.translate('tfg.tooltip.warming_foods')) + }) + + //#endregion //#region Deprecated Items event.addAdvanced(['#megacells:mega_interface'], (item, advanced, text) => { diff --git a/kubejs/data/ad_astra/dimension/mars.json b/kubejs/data/ad_astra/dimension/mars.json index 6f6e98036..d244e8814 100644 --- a/kubejs/data/ad_astra/dimension/mars.json +++ b/kubejs/data/ad_astra/dimension/mars.json @@ -1,102583 +1,463 @@ { - "type": "ad_astra:mars", - "generator": { - "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": "ad_astra:mars_stone", - "hardened": "tfg:rock/hardened_mars_stone", - "gravel": "ad_astra:mars_cobblestone", - "cobble": "ad_astra:mars_cobblestone", - "sand": "ad_astra:mars_sand", - "sandstone": "ad_astra:mars_stone", - "spike": "tfg:spike/mars_stone_spike", - "loose": "tfg:loose/mars_stone" - }, - "venus": { - "raw": "ad_astra:venus_stone", - "hardened": "tfg:rock/hardened_venus_stone", - "gravel": "ad_astra:venus_cobblestone", - "cobble": "ad_astra:venus_cobblestone", - "sand": "ad_astra:venus_sand", - "sandstone": "ad_astra:venus_sandstone", - "spike": "tfg:spike/venus_stone_spike", - "loose": "tfg:loose/venus_stone" - }, - "red_granite": { - "raw": "gtceu:red_granite", - "hardened": "tfg:rock/hardened_red_granite", - "gravel": "gtceu:red_granite_cobblestone", - "cobble": "gtceu:red_granite_cobblestone", - "sand": "minecraft:red_sand", - "sandstone": "minecraft:red_sandstone", - "spike": "tfg:spike/red_granite_spike", - "loose": "tfg:loose/red_granite" - }, - "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", - "basalt": "tfc:basalt", - "dacite": "tfc:dacite" - }, - "layers": [ - { - "id": "mix", - "layers": { - "mars": "bottom", - "dolomite": "bottom", - "chert": "bottom", - "conglomerate": "bottom", - "red_granite": "bottom", - "basalt": "bottom", - "dacite": "bottom", - "venus": "bottom", - "shale": "bottom" - } - }, - { - "id": "sedimentary", - "layers": { - "mars": "mix", - "chalk": "mix", - "shale": "mix", - "dolomite": "mix", - "limestone": "mix", - "claystone": "mix", - "conglomerate": "mix", - "chert": "mix" - } - } - ], - "bottom": [ - "red_granite", - "gabbro", - "diorite", - "granite" - ], - "ocean_floor": [ - "sedimentary" - ], - "volcanic": [ - "sedimentary" - ], - "land": [ - "sedimentary" - ], - "uplift": [ - "sedimentary" - ] - } - }, - "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_riverbed", - "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_riverbed", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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": "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_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": "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/rusticus_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/sangnum_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": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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": [ - -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/sangnum_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": [ - -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/sangnum_plains", - "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/sangnum_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": "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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": "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_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": "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_hills", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_hills", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/amber_plains", - "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/amber_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": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "tfg:mars/amber_plains", - "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/amber_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": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "tfg:mars/amber_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": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "tfg:mars/amber_plains", - "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/amber_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": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "tfg:mars/amber_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": [ - -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/amber_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": [ - -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/amber_plains", - "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/amber_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": [ - -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/amber_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/amber_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/amber_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/rusticus_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/amber_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/amber_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/rusticus_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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": "tfg:mars/rusticus_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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_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": "tfg:mars/amber_plains", - "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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/sangnum_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.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_plains", - "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/sangnum_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": "tfg:mars/sangnum_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.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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": "tfg:mars/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/sangnum_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": "tfg:mars/amber_plains", - "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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/sangnum_hills", - "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/amber_plains", - "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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_hills", - "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/amber_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/amber_plains", - "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/amber_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.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/amber_plains", - "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/amber_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.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/amber_plains", - "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/amber_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.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/amber_plains", - "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/amber_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, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/amber_plains", - "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/amber_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, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/amber_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.9333, - -0.7666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_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/amber_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/amber_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/amber_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_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/amber_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/amber_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/amber_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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": "tfg:mars/sangnum_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": "tfg:mars/rusticus_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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_hills", - "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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_hills", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_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": "tfg:mars/sangnum_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": "tfg:mars/amber_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_hills", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_hills", - "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/sangnum_plains", - "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/sangnum_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.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/sangnum_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.5666 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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.5666 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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.5666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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": "tfg:mars/sangnum_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": "tfg:mars/sangnum_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.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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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": "tfg:mars/sangnum_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": "tfg:mars/rusticus_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/amber_plains", - "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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/sangnum_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": "tfg:mars/sangnum_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": "tfg:mars/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/sangnum_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.5666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_hills", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_hills", - "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/sangnum_hills", - "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/amber_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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.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/amber_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.5666 - ] - } - }, - { - "biome": "tfg:mars/amber_plains", - "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/amber_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.5666 - ] - } - }, - { - "biome": "tfg:mars/amber_plains", - "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/amber_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.5666 - ] - } - }, - { - "biome": "tfg:mars/amber_plains", - "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/amber_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.5666 - ] - } - }, - { - "biome": "tfg:mars/amber_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.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/sangnum_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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": "tfg:mars/rusticus_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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_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": "tfg:mars/amber_plains", - "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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/sangnum_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.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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.4 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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.4 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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.4 - ] - } - }, - { - "biome": "tfg:mars/sangnum_plains", - "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/sangnum_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": "tfg:mars/sangnum_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.4 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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": "tfg:mars/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/sangnum_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": "tfg:mars/amber_plains", - "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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/sangnum_hills", - "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/amber_plains", - "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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_hills", - "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/amber_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/amber_plains", - "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/amber_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.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/amber_plains", - "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/amber_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.4 - ] - } - }, - { - "biome": "tfg:mars/amber_plains", - "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/amber_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.4 - ] - } - }, - { - "biome": "tfg:mars/amber_plains", - "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/amber_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.4 - ] - } - }, - { - "biome": "tfg:mars/amber_plains", - "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/amber_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.4 - ] - } - }, - { - "biome": "tfg:mars/amber_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.4 - ] - } - }, - { - "biome": "tfg:mars/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_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/amber_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/amber_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/amber_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_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/amber_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/amber_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/amber_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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_riverbed", - "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_riverbed", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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": "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_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": "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/rusticus_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/sangnum_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.4, - -0.2666 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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.4, - -0.2666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.4, - -0.2666 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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.4, - -0.2666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.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/sangnum_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.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/sangnum_plains", - "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/sangnum_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": "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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": "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_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": "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_hills", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_hills", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/amber_plains", - "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/amber_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.4, - -0.2666 - ] - } - }, - { - "biome": "tfg:mars/amber_plains", - "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/amber_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.4, - -0.2666 - ] - } - }, - { - "biome": "tfg:mars/amber_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.4, - -0.2666 - ] - } - }, - { - "biome": "tfg:mars/amber_plains", - "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/amber_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.4, - -0.2666 - ] - } - }, - { - "biome": "tfg:mars/amber_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.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/amber_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.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/amber_plains", - "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/amber_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.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/amber_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/amber_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/amber_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/rusticus_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/amber_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/amber_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/rusticus_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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_riverbed", - "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_riverbed", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_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.2666, - -0.05 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.2666, - -0.05 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.2666, - -0.05 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.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/sangnum_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.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/sangnum_plains", - "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/sangnum_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.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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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.2666, - -0.05 - ] - } - }, - { - "biome": "tfg:mars/amber_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.2666, - -0.05 - ] - } - }, - { - "biome": "tfg:mars/amber_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.2666, - -0.05 - ] - } - }, - { - "biome": "tfg:mars/amber_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.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/amber_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.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/amber_plains", - "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/amber_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.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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_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/amber_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/rusticus_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_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/amber_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/rusticus_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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_river", - "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_river", - "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_river", - "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_river", - "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_river", - "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_river", - "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_river", - "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_river", - "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.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_riverbed", - "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_river", - "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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/amber_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/amber_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/amber_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_riverbed", - "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_riverbed", - "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/sangnum_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.05, - 0.2666 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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.05, - 0.2666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.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/sangnum_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.05, - 0.2666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_plains", - "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/sangnum_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.05, - 0.2666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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.05, - 0.2666 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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.05, - 0.2666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.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/sangnum_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.05, - 0.2666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_plains", - "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/sangnum_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.05, - 0.2666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.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/sangnum_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.05, - 0.2666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/sangnum_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/sangnum_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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_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/sangnum_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_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/sangnum_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/sangnum_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/sangnum_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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/sangnum_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/sangnum_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/rusticus_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/sangnum_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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_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/sangnum_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/sangnum_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/sangnum_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/sangnum_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/rusticus_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/rusticus_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/amber_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/amber_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/rusticus_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/amber_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/rusticus_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/rusticus_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/sangnum_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/sangnum_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/rusticus_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/rusticus_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/amber_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/amber_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/rusticus_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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_riverbed", - "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_riverbed", - "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/rusticus_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/rusticus_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/rusticus_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/sangnum_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.2666, - 0.4 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.2666, - 0.4 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.2666, - 0.4 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.2666, - 0.4 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.2666, - 0.4 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.2666, - 0.4 - ] - } - }, - { - "biome": "tfg:mars/sangnum_plains", - "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/sangnum_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.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/sangnum_plains", - "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/sangnum_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.4 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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.2666, - 0.4 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.2666, - 0.4 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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.2666, - 0.4 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.2666, - 0.4 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.2666, - 0.4 - ] - } - }, - { - "biome": "tfg:mars/sangnum_plains", - "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/sangnum_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.4 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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": "tfg:mars/sangnum_plains", - "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/sangnum_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.4 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/rusticus_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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/amber_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/rusticus_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/rusticus_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_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": "tfg:mars/amber_plains", - "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/rusticus_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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/amber_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/rusticus_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/rusticus_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/amber_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/sangnum_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/sangnum_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": "tfg:mars/rusticus_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/rusticus_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/rusticus_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/amber_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/rusticus_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/rusticus_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/amber_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/sangnum_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/sangnum_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": "tfg:mars/rusticus_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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_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/sangnum_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/sangnum_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": "tfg:mars/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_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/sangnum_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/sangnum_hills", - "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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_hills", - "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/amber_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/sangnum_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/sangnum_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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/sangnum_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/sangnum_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/rusticus_plains", - "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/rusticus_plains", - "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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/rusticus_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/amber_plains", - "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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/sangnum_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/rusticus_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/rusticus_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/amber_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_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/sangnum_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/sangnum_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/sangnum_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/sangnum_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/rusticus_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/amber_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/amber_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/rusticus_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/amber_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/rusticus_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/sangnum_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/sangnum_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/rusticus_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/amber_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/amber_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/rusticus_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/rusticus_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/rusticus_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/sangnum_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.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/rusticus_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/rusticus_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/sangnum_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.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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": "tfg:mars/sangnum_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.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_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/rusticus_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/sangnum_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": "tfg:mars/amber_plains", - "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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_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/rusticus_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/amber_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/rusticus_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/sangnum_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/sangnum_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": "tfg:mars/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_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/rusticus_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/amber_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/rusticus_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/sangnum_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/sangnum_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": "tfg:mars/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_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/sangnum_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": "tfg:mars/amber_plains", - "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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_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/sangnum_hills", - "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/amber_plains", - "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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_hills", - "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/amber_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/sangnum_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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/sangnum_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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/sangnum_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/rusticus_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/rusticus_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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/sangnum_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/rusticus_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/rusticus_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/rusticus_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/amber_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/amber_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/amber_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/amber_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/sangnum_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/rusticus_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/rusticus_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/rusticus_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/amber_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/amber_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/amber_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/amber_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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.7666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.7666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.7666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.7666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.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/sangnum_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.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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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.7666 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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.7666 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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.7666 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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": "tfg:mars/sangnum_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": "tfg:mars/sangnum_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.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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_hills", - "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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_hills", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/amber_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/rusticus_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_plains", - "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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/sangnum_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": "tfg:mars/sangnum_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": "tfg:mars/amber_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_hills", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_hills", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/amber_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/rusticus_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/amber_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/rusticus_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/sangnum_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/sangnum_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": "tfg:mars/rusticus_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/rusticus_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/rusticus_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/amber_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/rusticus_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/amber_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/rusticus_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/sangnum_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/sangnum_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": "tfg:mars/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_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/sangnum_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": "tfg:mars/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_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/sangnum_hills", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_hills", - "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/sangnum_hills", - "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/amber_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/sangnum_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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/sangnum_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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/sangnum_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/rusticus_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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/sangnum_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/sangnum_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/rusticus_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/sangnum_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/rusticus_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/rusticus_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/rusticus_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/sangnum_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.9333 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.9333 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.9333 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.9333 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.9333 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.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/sangnum_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.9333 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/rusticus_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/rusticus_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/sangnum_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.9333 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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.9333 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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.9333 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.7666, - 0.9333 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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": "tfg:mars/sangnum_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.9333 - ] - } - }, - { - "biome": "tfg:mars/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_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/rusticus_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/sangnum_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": "tfg:mars/amber_plains", - "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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_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/rusticus_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/amber_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/rusticus_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/sangnum_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/sangnum_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": "tfg:mars/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_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/rusticus_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/amber_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/rusticus_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/sangnum_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/sangnum_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": "tfg:mars/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_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/sangnum_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": "tfg:mars/amber_plains", - "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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_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/sangnum_hills", - "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/amber_plains", - "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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_hills", - "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/amber_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/sangnum_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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/sangnum_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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/sangnum_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/rusticus_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/rusticus_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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/sangnum_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/rusticus_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/rusticus_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/rusticus_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/amber_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/amber_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/amber_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/amber_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/sangnum_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/rusticus_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/rusticus_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/rusticus_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/amber_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/amber_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/amber_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/amber_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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_riverbed", - "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_riverbed", - "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/rusticus_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/rusticus_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/rusticus_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/sangnum_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.9333, - 1 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.9333, - 1 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.9333, - 1 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.9333, - 1 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.9333, - 1 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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, - 1 - ] - } - }, - { - "biome": "tfg:mars/sangnum_plains", - "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/sangnum_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.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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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.9333, - 1 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.9333, - 1 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/sangnum_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.9333, - 1 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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.9333, - 1 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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, - 1 - ] - } - }, - { - "biome": "tfg:mars/sangnum_plains", - "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/sangnum_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.9333, - 1 - ] - } - }, - { - "biome": "tfg:mars/sangnum_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": "tfg:mars/sangnum_plains", - "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/sangnum_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.9333, - 1 - ] - } - }, - { - "biome": "tfg:mars/rusticus_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/rusticus_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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/amber_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/rusticus_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/rusticus_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_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": "tfg:mars/amber_plains", - "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/rusticus_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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/rusticus_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_hills", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/amber_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/rusticus_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/rusticus_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/amber_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/sangnum_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/sangnum_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": "tfg:mars/rusticus_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/rusticus_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/rusticus_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/amber_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/rusticus_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/rusticus_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/amber_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/sangnum_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/sangnum_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": "tfg:mars/rusticus_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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_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/sangnum_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/sangnum_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": "tfg:mars/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_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/sangnum_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/sangnum_hills", - "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/amber_plains", - "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/rusticus_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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/amber_plains", - "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/sangnum_hills", - "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/amber_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/sangnum_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/sangnum_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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/amber_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/rusticus_plains", - "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/rusticus_plains", - "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/rusticus_plains", - "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/sangnum_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/sangnum_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/rusticus_plains", - "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/rusticus_plains", - "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/amber_plains", - "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/rusticus_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/amber_plains", - "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/rusticus_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/rusticus_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/amber_plains", - "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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/sangnum_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/rusticus_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/rusticus_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/amber_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/amber_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_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/sangnum_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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/sangnum_plains", - "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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/sangnum_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/sangnum_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/sangnum_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/sangnum_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/rusticus_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/amber_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/amber_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/rusticus_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/amber_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/rusticus_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/sangnum_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/sangnum_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/rusticus_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/rusticus_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/amber_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/amber_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/amber_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/rusticus_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/amber_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/amber_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/rusticus_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/amber_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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/rusticus_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" - } - } + "type": "ad_astra:mars", + "generator": { + "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": "ad_astra:mars_stone", + "hardened": "tfg:rock/hardened_mars_stone", + "gravel": "ad_astra:mars_cobblestone", + "cobble": "ad_astra:mars_cobblestone", + "sand": "ad_astra:mars_sand", + "sandstone": "ad_astra:mars_stone", + "spike": "tfg:spike/mars_stone_spike", + "loose": "tfg:loose/mars_stone" + }, + "venus": { + "raw": "ad_astra:venus_stone", + "hardened": "tfg:rock/hardened_venus_stone", + "gravel": "ad_astra:venus_cobblestone", + "cobble": "ad_astra:venus_cobblestone", + "sand": "ad_astra:venus_sand", + "sandstone": "ad_astra:venus_sandstone", + "spike": "tfg:spike/venus_stone_spike", + "loose": "tfg:loose/venus_stone" + }, + "red_granite": { + "raw": "gtceu:red_granite", + "hardened": "tfg:rock/hardened_red_granite", + "gravel": "gtceu:red_granite_cobblestone", + "cobble": "gtceu:red_granite_cobblestone", + "sand": "minecraft:red_sand", + "sandstone": "minecraft:red_sandstone", + "spike": "tfg:spike/red_granite_spike", + "loose": "tfg:loose/red_granite" + }, + "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", + "basalt": "tfc:basalt", + "dacite": "tfc:dacite" + }, + "layers": [ + { + "id": "mix", + "layers": { + "mars": "bottom", + "dolomite": "bottom", + "chert": "bottom", + "conglomerate": "bottom", + "red_granite": "bottom", + "basalt": "bottom", + "dacite": "bottom", + "venus": "bottom", + "shale": "bottom" + } + }, + { + "id": "sedimentary", + "layers": { + "mars": "mix", + "chalk": "mix", + "shale": "mix", + "dolomite": "mix", + "limestone": "mix", + "claystone": "mix", + "conglomerate": "mix", + "chert": "mix" + } + } + ], + "bottom": [ + "red_granite", + "gabbro", + "diorite", + "granite" + ], + "ocean_floor": [ + "sedimentary" + ], + "volcanic": [ + "sedimentary" + ], + "land": [ + "sedimentary" + ], + "uplift": [ + "sedimentary" + ] + } + }, + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "biomes": [ + { + "biome": "tfg:mars/martian_deep_desert", + "parameters": { + "continentalness": [ -1.2, -0.455 ], + "depth": 0, + "erosion": [ -1, 1 ], + "humidity": [ -1, 1 ], + "offset": 0, + "temperature": [ -1, 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": [ -1, 1 ], + "weirdness": [ -1, 1 ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ -0.19, -0.16 ], + "depth": 0, + "erosion": [ -1, 1 ], + "humidity": [ -1, 1 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ -1, 1 ] + } + }, + + + { + "biome": "tfg:mars/amber_edge", + "parameters": { + "continentalness": [ -0.16, -0.07 ], + "depth": 0, + "erosion": [ -1, 1 ], + "humidity": [ -1, 1 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ 0.3, 1 ] + } + }, + { + "biome": "tfg:mars/rusticus_edge", + "parameters": { + "continentalness": [ -0.16, -0.07 ], + "depth": 0, + "erosion": [ -1, 1 ], + "humidity": [ -1, 1 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ -0.3, 0.3 ] + } + }, + { + "biome": "tfg:mars/sangnum_edge", + "parameters": { + "continentalness": [ -0.16, -0.07 ], + "depth": 0, + "erosion": [ -1, 1 ], + "humidity": [ -1, 1 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ -1, -0.3 ] + } + }, + + + { + "biome": "tfg:mars/martian_river", + "parameters": { + "continentalness": [ -0.07, 0.65 ], + "depth": 0, + "erosion": [ 0, 1 ], + "humidity": [ -1, 1 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ -0.07, 0.07 ] + } + }, + + + { + "biome": "tfg:mars/amber_plains", + "parameters": { + "continentalness": [ -0.07, 0.65 ], + "depth": 0, + "erosion": [ 0, 1 ], + "humidity": [ -0.2, 0.2 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ 0.07, 1 ] + } + }, + { + "biome": "tfg:mars/rusticus_plains", + "parameters": { + "continentalness": [ -0.07, 0.65 ], + "depth": 0, + "erosion": [ 0, 1 ], + "humidity": [ -0.2, 0.2 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ -1, -0.07 ] + } + }, + + { + "biome": "tfg:mars/rusticus_plains", + "parameters": { + "continentalness": [ -0.07, 0.65 ], + "depth": 0, + "erosion": [ 0, 1 ], + "humidity": [ -1, -0.2 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ 0.07, 1 ] + } + }, + { + "biome": "tfg:mars/sangnum_plains", + "parameters": { + "continentalness": [ -0.07, 0.65 ], + "depth": 0, + "erosion": [ 0, 1 ], + "humidity": [ -1, -0.2 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ -1, -0.07 ] + } + }, + + { + "biome": "tfg:mars/sangnum_plains", + "parameters": { + "continentalness": [ -0.07, 0.65 ], + "depth": 0, + "erosion": [ 0, 1 ], + "humidity": [ 0.2, 1 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ 0.07, 1 ] + } + }, + { + "biome": "tfg:mars/amber_plains", + "parameters": { + "continentalness": [ -0.07, 0.65 ], + "depth": 0, + "erosion": [ 0, 1 ], + "humidity": [ 0.2, 1 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ -1, -0.07 ] + } + }, + + + + { + "biome": "tfg:mars/rusticus_hills", + "parameters": { + "continentalness": [ -0.07, 0.65 ], + "depth": 0, + "erosion": [ -1, 0 ], + "humidity": [ -0.2, 0.2 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ 0, 1 ] + } + }, + { + "biome": "tfg:mars/sangnum_hills", + "parameters": { + "continentalness": [ -0.07, 0.65 ], + "depth": 0, + "erosion": [ -1, 0 ], + "humidity": [ -0.2, 0.2 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ -1, 0 ] + } + }, + + { + "biome": "tfg:mars/sangnum_hills", + "parameters": { + "continentalness": [ -0.07, 0.65 ], + "depth": 0, + "erosion": [ -1, 0 ], + "humidity": [ -1, -0.2 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ 0, 1 ] + } + }, + { + "biome": "tfg:mars/amber_hills", + "parameters": { + "continentalness": [ -0.07, 0.65 ], + "depth": 0, + "erosion": [ -1, 0 ], + "humidity": [ -1, -0.2 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ -1, 0 ] + } + }, + + { + "biome": "tfg:mars/amber_hills", + "parameters": { + "continentalness": [ -0.07, 0.65 ], + "depth": 0, + "erosion": [ -1, 0 ], + "humidity": [ 0.2, 1 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ 0, 1 ] + } + }, + { + "biome": "tfg:mars/rusticus_hills", + "parameters": { + "continentalness": [ -0.07, 0.65 ], + "depth": 0, + "erosion": [ -1, 0 ], + "humidity": [ 0.2, 1 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ -1, 0 ] + } + }, + + + + { + "biome": "tfg:mars/rusticus_hills", + "parameters": { + "continentalness": [ 0.65, 1 ], + "depth": 0, + "erosion": [ -1, 1 ], + "humidity": [ -0.2, 0.2 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ 0, 0.8 ] + } + }, + { + "biome": "tfg:mars/sangnum_hills", + "parameters": { + "continentalness": [ 0.65, 1 ], + "depth": 0, + "erosion": [ -1, 1 ], + "humidity": [ -0.2, 0.2 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ -0.8, 0 ] + } + }, + + { + "biome": "tfg:mars/sangnum_hills", + "parameters": { + "continentalness": [ 0.65, 1 ], + "depth": 0, + "erosion": [ -1, 1 ], + "humidity": [ -1, -0.2 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ 0, 0.8 ] + } + }, + { + "biome": "tfg:mars/amber_hills", + "parameters": { + "continentalness": [ 0.65, 1 ], + "depth": 0, + "erosion": [ -1, 1 ], + "humidity": [ -1, -0.2 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ -0.8, 0 ] + } + }, + + { + "biome": "tfg:mars/amber_hills", + "parameters": { + "continentalness": [ 0.65, 1 ], + "depth": 0, + "erosion": [ -1, 1 ], + "humidity": [ 0.2, 1 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ 0, 0.8 ] + } + }, + { + "biome": "tfg:mars/rusticus_hills", + "parameters": { + "continentalness": [ 0.65, 1 ], + "depth": 0, + "erosion": [ -1, 1 ], + "humidity": [ 0.2, 1 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ -0.8, 0 ] + } + }, + + + + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ 0.65, 1 ], + "depth": 0, + "erosion": [ -1, 1 ], + "humidity": [ -1, 1 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ -1, -0.8 ] + } + }, + { + "biome": "tfg:mars/martian_mountains", + "parameters": { + "continentalness": [ 0.65, 1 ], + "depth": 0, + "erosion": [ -1, 1 ], + "humidity": [ -1, 1 ], + "offset": 0, + "temperature": [ -1, 1 ], + "weirdness": [ 0.8, 1 ] + } + } + ] + }, + "settings": "tfg:mars_noise" + } + } } \ No newline at end of file diff --git a/kubejs/data/ad_astra/loot_tables/blocks/aeronos_mushroom.json b/kubejs/data/ad_astra/loot_tables/blocks/aeronos_mushroom.json new file mode 100644 index 000000000..6942b4063 --- /dev/null +++ b/kubejs/data/ad_astra/loot_tables/blocks/aeronos_mushroom.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "name": "loot_pool", + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "tfg:saplings/aeronos" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/data/ad_astra/loot_tables/blocks/strophar_mushroom.json b/kubejs/data/ad_astra/loot_tables/blocks/strophar_mushroom.json new file mode 100644 index 000000000..b8351dbe7 --- /dev/null +++ b/kubejs/data/ad_astra/loot_tables/blocks/strophar_mushroom.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "name": "loot_pool", + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "tfg:saplings/strophar" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/biomass.json b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/biomass.json new file mode 100644 index 000000000..199fbd6c1 --- /dev/null +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/biomass.json @@ -0,0 +1,6 @@ +{ + "fluid": "gtceu:biomass", + "burnTime": 70, + "superHeat": false, + "amountConsumedPerTick" : 5 +} diff --git a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/creosote.json b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/creosote.json new file mode 100644 index 000000000..f97604eb6 --- /dev/null +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/creosote.json @@ -0,0 +1,6 @@ +{ + "fluid": "gtceu:creosote", + "burnTime": 88, + "superHeat": false, + "amountConsumedPerTick" : 25 +} diff --git a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/fish_oil.json b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/fish_oil.json new file mode 100644 index 000000000..43a493b0c --- /dev/null +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/fish_oil.json @@ -0,0 +1,6 @@ +{ + "fluid": "gtceu:fish_oil", + "burnTime": 88, + "superHeat": false, + "amountConsumedPerTick" : 25 +} diff --git a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/heavy_fuel.json b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/heavy_fuel.json new file mode 100644 index 000000000..6c232dfc3 --- /dev/null +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/heavy_fuel.json @@ -0,0 +1,6 @@ +{ + "fluid": "gtceu:heavy_fuel", + "burnTime": 210, + "superHeat": false, + "amountConsumedPerTick" : 2 +} diff --git a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/heavy_oil.json b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/heavy_oil.json new file mode 100644 index 000000000..35c685f71 --- /dev/null +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/heavy_oil.json @@ -0,0 +1,6 @@ +{ + "fluid": "gtceu:oil_heavy", + "burnTime": 88, + "superHeat": false, + "amountConsumedPerTick" : 5 +} diff --git a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/oil.json b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/oil.json new file mode 100644 index 000000000..9dc65463a --- /dev/null +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/oil.json @@ -0,0 +1,6 @@ +{ + "fluid": "gtceu:oil", + "burnTime": 90, + "superHeat": false, + "amountConsumedPerTick" : 32 +} diff --git a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/olive_oil.json b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/olive_oil.json new file mode 100644 index 000000000..d778bf834 --- /dev/null +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/olive_oil.json @@ -0,0 +1,6 @@ +{ + "fluid": "tfc:olive_oil", + "burnTime": 88, + "superHeat": false, + "amountConsumedPerTick" : 25 +} diff --git a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/seed_oil.json b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/seed_oil.json new file mode 100644 index 000000000..ad5d2eebd --- /dev/null +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/seed_oil.json @@ -0,0 +1,6 @@ +{ + "fluid": "gtceu:seed_oil", + "burnTime": 88, + "superHeat": false, + "amountConsumedPerTick" : 25 +} diff --git a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/soybean_oil.json b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/soybean_oil.json new file mode 100644 index 000000000..52c8e1f85 --- /dev/null +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/soybean_oil.json @@ -0,0 +1,6 @@ +{ + "fluid": "firmalife:soybean_oil", + "burnTime": 88, + "superHeat": false, + "amountConsumedPerTick" : 25 +} diff --git a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/steam.json b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/steam.json new file mode 100644 index 000000000..16675090b --- /dev/null +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/steam.json @@ -0,0 +1,6 @@ +{ + "fluid": "gtceu:steam", + "burnTime": 1, + "superHeat": false, + "amountConsumedPerTick" : 128 +} diff --git a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/sulfuric_heavy.json b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/sulfuric_heavy.json new file mode 100644 index 000000000..92a70c3aa --- /dev/null +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/sulfuric_heavy.json @@ -0,0 +1,6 @@ +{ + "fluid": "gtceu:sulfuric_heavy_fuel", + "burnTime": 80, + "superHeat": false, + "amountConsumedPerTick" : 5 +} diff --git a/kubejs/data/minecraft/loot_tables/blocks/crimson_fungus.json b/kubejs/data/minecraft/loot_tables/blocks/crimson_fungus.json new file mode 100644 index 000000000..8bbf2fcb3 --- /dev/null +++ b/kubejs/data/minecraft/loot_tables/blocks/crimson_fungus.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "name": "loot_pool", + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "tfg:saplings/crimson" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/data/minecraft/loot_tables/blocks/warped_fungus.json b/kubejs/data/minecraft/loot_tables/blocks/warped_fungus.json new file mode 100644 index 000000000..a77c0e67c --- /dev/null +++ b/kubejs/data/minecraft/loot_tables/blocks/warped_fungus.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "name": "loot_pool", + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "tfg:saplings/warped" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/data/species/loot_tables/blocks/alphacene_mushroom.json b/kubejs/data/species/loot_tables/blocks/alphacene_mushroom.json new file mode 100644 index 000000000..958bd8d61 --- /dev/null +++ b/kubejs/data/species/loot_tables/blocks/alphacene_mushroom.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "name": "loot_pool", + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "tfg:saplings/alphacene" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/loot_tables/blocks/grass/amber_clay_mycelium.json b/kubejs/data/tfg/loot_tables/blocks/grass/amber_clay_mycelium.json new file mode 100644 index 000000000..077c8a603 --- /dev/null +++ b/kubejs/data/tfg/loot_tables/blocks/grass/amber_clay_mycelium.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "name": "loot_pool", + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:clay_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3, + "type": "minecraft:uniform" + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/loot_tables/blocks/grass/amber_kaolin_mycelium.json b/kubejs/data/tfg/loot_tables/blocks/grass/amber_kaolin_mycelium.json new file mode 100644 index 000000000..4ce1779c2 --- /dev/null +++ b/kubejs/data/tfg/loot_tables/blocks/grass/amber_kaolin_mycelium.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "name": "loot_pool", + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "tfc:kaolin_clay", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "type": "minecraft:uniform", + "min": 1, + "max": 3 + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/loot_tables/blocks/grass/mars_clay_dirt.json b/kubejs/data/tfg/loot_tables/blocks/grass/mars_clay_dirt.json new file mode 100644 index 000000000..077c8a603 --- /dev/null +++ b/kubejs/data/tfg/loot_tables/blocks/grass/mars_clay_dirt.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "name": "loot_pool", + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:clay_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3, + "type": "minecraft:uniform" + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/loot_tables/blocks/grass/rusticus_clay_mycelium.json b/kubejs/data/tfg/loot_tables/blocks/grass/rusticus_clay_mycelium.json new file mode 100644 index 000000000..077c8a603 --- /dev/null +++ b/kubejs/data/tfg/loot_tables/blocks/grass/rusticus_clay_mycelium.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "name": "loot_pool", + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:clay_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3, + "type": "minecraft:uniform" + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/loot_tables/blocks/grass/rusticus_kaolin_mycelium.json b/kubejs/data/tfg/loot_tables/blocks/grass/rusticus_kaolin_mycelium.json new file mode 100644 index 000000000..4ce1779c2 --- /dev/null +++ b/kubejs/data/tfg/loot_tables/blocks/grass/rusticus_kaolin_mycelium.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "name": "loot_pool", + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "tfc:kaolin_clay", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "type": "minecraft:uniform", + "min": 1, + "max": 3 + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/loot_tables/blocks/grass/sangnum_clay_mycelium.json b/kubejs/data/tfg/loot_tables/blocks/grass/sangnum_clay_mycelium.json new file mode 100644 index 000000000..077c8a603 --- /dev/null +++ b/kubejs/data/tfg/loot_tables/blocks/grass/sangnum_clay_mycelium.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "name": "loot_pool", + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:clay_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3, + "type": "minecraft:uniform" + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/loot_tables/blocks/grass/sangnum_kaolin_mycelium.json b/kubejs/data/tfg/loot_tables/blocks/grass/sangnum_kaolin_mycelium.json new file mode 100644 index 000000000..4ce1779c2 --- /dev/null +++ b/kubejs/data/tfg/loot_tables/blocks/grass/sangnum_kaolin_mycelium.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "name": "loot_pool", + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "tfc:kaolin_clay", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "type": "minecraft:uniform", + "min": 1, + "max": 3 + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/loot_tables/blocks/spice.json b/kubejs/data/tfg/loot_tables/blocks/spice.json new file mode 100644 index 000000000..33509ae1a --- /dev/null +++ b/kubejs/data/tfg/loot_tables/blocks/spice.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "name": "loot_pool", + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_sand" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} diff --git a/kubejs/data/tfg/loot_tables/entities/glacian_ram.json b/kubejs/data/tfg/loot_tables/entities/glacian_ram.json index d6074695c..8c4311fb2 100644 --- a/kubejs/data/tfg/loot_tables/entities/glacian_ram.json +++ b/kubejs/data/tfg/loot_tables/entities/glacian_ram.json @@ -52,7 +52,7 @@ "entries": [ { "type": "minecraft:item", - "name": "tfc:small_raw_hide" + "name": "tfc:small_sheepskin_hide" } ] } diff --git a/kubejs/data/tfg/structures/norse/baseline/norse_burial_base.nbt b/kubejs/data/tfg/structures/norse/baseline/norse_burial_base.nbt new file mode 100644 index 000000000..4aeba9c6d Binary files /dev/null and b/kubejs/data/tfg/structures/norse/baseline/norse_burial_base.nbt differ diff --git a/kubejs/data/tfg/structures/norse/baseline/norse_farmhouse_base.nbt b/kubejs/data/tfg/structures/norse/baseline/norse_farmhouse_base.nbt new file mode 100644 index 000000000..a6d3e1579 Binary files /dev/null and b/kubejs/data/tfg/structures/norse/baseline/norse_farmhouse_base.nbt differ diff --git a/kubejs/data/tfg/structures/norse/baseline/norse_farmhousebig_base.nbt b/kubejs/data/tfg/structures/norse/baseline/norse_farmhousebig_base.nbt new file mode 100644 index 000000000..c0e794576 Binary files /dev/null and b/kubejs/data/tfg/structures/norse/baseline/norse_farmhousebig_base.nbt differ diff --git a/kubejs/data/tfg/structures/norse/baseline/norse_longhouse_base.nbt b/kubejs/data/tfg/structures/norse/baseline/norse_longhouse_base.nbt new file mode 100644 index 000000000..fd055d4a7 Binary files /dev/null and b/kubejs/data/tfg/structures/norse/baseline/norse_longhouse_base.nbt differ diff --git a/kubejs/data/tfg/structures/norse/baseline/norse_mosshouse_base.nbt b/kubejs/data/tfg/structures/norse/baseline/norse_mosshouse_base.nbt new file mode 100644 index 000000000..0acb113c8 Binary files /dev/null and b/kubejs/data/tfg/structures/norse/baseline/norse_mosshouse_base.nbt differ diff --git a/kubejs/data/tfg/structures/norse/baseline/norse_smithy_base.nbt b/kubejs/data/tfg/structures/norse/baseline/norse_smithy_base.nbt new file mode 100644 index 000000000..2578a949e Binary files /dev/null and b/kubejs/data/tfg/structures/norse/baseline/norse_smithy_base.nbt differ diff --git a/kubejs/data/tfg/structures/norse/burned/norse_mosshouse_burn.nbt b/kubejs/data/tfg/structures/norse/burned/norse_mosshouse_burn.nbt new file mode 100644 index 000000000..83d4c6c04 Binary files /dev/null and b/kubejs/data/tfg/structures/norse/burned/norse_mosshouse_burn.nbt differ diff --git a/kubejs/data/tfg/structures/norse/burned/norse_smithy_burn.nbt b/kubejs/data/tfg/structures/norse/burned/norse_smithy_burn.nbt new file mode 100644 index 000000000..62b6c2a13 Binary files /dev/null and b/kubejs/data/tfg/structures/norse/burned/norse_smithy_burn.nbt differ diff --git a/kubejs/data/tfg/structures/norse/ruins/norse_burial_ruin.nbt b/kubejs/data/tfg/structures/norse/ruins/norse_burial_ruin.nbt new file mode 100644 index 000000000..dae60614a Binary files /dev/null and b/kubejs/data/tfg/structures/norse/ruins/norse_burial_ruin.nbt differ diff --git a/kubejs/data/tfg/structures/norse/ruins/norse_farmhouse_ruin.nbt b/kubejs/data/tfg/structures/norse/ruins/norse_farmhouse_ruin.nbt new file mode 100644 index 000000000..327fd7329 Binary files /dev/null and b/kubejs/data/tfg/structures/norse/ruins/norse_farmhouse_ruin.nbt differ diff --git a/kubejs/data/tfg/structures/norse/ruins/norse_farmhousebig_ruin.nbt b/kubejs/data/tfg/structures/norse/ruins/norse_farmhousebig_ruin.nbt new file mode 100644 index 000000000..e31e61e92 Binary files /dev/null and b/kubejs/data/tfg/structures/norse/ruins/norse_farmhousebig_ruin.nbt differ diff --git a/kubejs/data/tfg/structures/norse/ruins/norse_longhouse_ruin.nbt b/kubejs/data/tfg/structures/norse/ruins/norse_longhouse_ruin.nbt new file mode 100644 index 000000000..f77e8034b Binary files /dev/null and b/kubejs/data/tfg/structures/norse/ruins/norse_longhouse_ruin.nbt differ diff --git a/kubejs/data/tfg/structures/norse/ruins/norse_mosshouse_ruin.nbt b/kubejs/data/tfg/structures/norse/ruins/norse_mosshouse_ruin.nbt new file mode 100644 index 000000000..914a4ad1b Binary files /dev/null and b/kubejs/data/tfg/structures/norse/ruins/norse_mosshouse_ruin.nbt differ diff --git a/kubejs/data/tfg/structures/norse/ruins/norse_smithy_ruin.nbt b/kubejs/data/tfg/structures/norse/ruins/norse_smithy_ruin.nbt new file mode 100644 index 000000000..be7a0442d Binary files /dev/null and b/kubejs/data/tfg/structures/norse/ruins/norse_smithy_ruin.nbt differ diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_riverbed.json b/kubejs/data/tfg/worldgen/biome/mars/amber_edge.json similarity index 53% rename from kubejs/data/tfg/worldgen/biome/mars/martian_riverbed.json rename to kubejs/data/tfg/worldgen/biome/mars/amber_edge.json index f7eb9f539..574172873 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/martian_riverbed.json +++ b/kubejs/data/tfg/worldgen/biome/mars/amber_edge.json @@ -1,9 +1,6 @@ { "carvers": { - "air": [ - "tfg:mars_cave", - "tfg:mars_canyon" - ] + "air": [] }, "downfall": 0.0, "effects": { @@ -24,31 +21,26 @@ ], [], [ - "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" - ], - [ - + "tfg:mars/terrain/clay_disc", + "tfg:mars/terrain/peat_disc", + "tfg:mars/terrain/venus_sand_disc" ], [], [], + [], "#tfg:mars_veins", - [], + "#tfg:mars_underground_decoration", [ "tfg:mars_forest", - "tfc:raw_boulder", - "tfc:cobble_boulder", - "tfc:raw_boulder_small_patch", - "tfc:cobble_boulder_small_patch" - ], - [ - + "tfg:mars/surface/small_skull_and_bones", + "tfg:mars/surface/large_skull_and_bones", + "tfg:mars/surface/rotten_flesh_patch", + "tfg:mars/surface/pile_red_sand", + "tfg:mars/surface/pile_venus_sand_no_water", + "tfg:mars/surface/pile_mars_sand", + "tfg:mars/surface/flint_patch" ], + "#tfg:mars_amber_vegetal_decoration", "#tfg:mars_top_layer_modification" ], "has_precipitation": false, @@ -68,6 +60,14 @@ "minecraft:enderman": { "energy_budget": 0.05, "charge": 0.9 + }, + "endermanoverhaul:cave_enderman": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "species:quake": { + "energy_budget": 0.2, + "charge": 0.7 } }, "spawners": { @@ -75,32 +75,62 @@ "axolotls": [], "creature": [ { - "type": "species:wraptor", - "maxCount": 2, + "type": "tfg:sniffer", + "maxCount": 3, + "minCount": 1, + "weight": 100 + }, + { + "type": "tfg:wraptor", + "maxCount": 4, + "minCount": 2, + "weight": 100 + }, + { + "type": "wan_ancient_beasts:walker", + "maxCount": 3, "minCount": 1, "weight": 50 }, + { + "type": "wan_ancient_beasts:crusher", + "maxCount": 5, + "minCount": 1, + "weight": 100 + }, + { + "type": "wan_ancient_beasts:glider", + "maxCount": 2, + "minCount": 1, + "weight": 20 + }, + { + "type": "wan_ancient_beasts:soarer", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "tfg:glacian_ram", + "maxCount": 5, + "minCount": 1, + "weight": 100 + }, + { + "type": "wan_ancient_beasts:eater", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, { "type": "species:goober", "maxCount": 2, "minCount": 1, - "weight": 100 + "weight": 30 } ], "misc": [], "monster": [ - { - "type": "endermanoverhaul:crimson_forest_enderman", - "maxCount": 1, - "minCount": 1, - "weight": 100 - }, - { - "type": "endermanoverhaul:warped_forest_enderman", - "maxCount": 1, - "minCount": 1, - "weight": 100 - }, { "type": "endermanoverhaul:badlands_enderman", "maxCount": 1, @@ -112,17 +142,29 @@ "maxCount": 1, "minCount": 1, "weight": 20 + }, + { + "type": "endermanoverhaul:cave_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 50 + }, + { + "type": "ad_astra:martian_raptor", + "maxCount": 2, + "minCount": 1, + "weight": 100 + }, + { + "type": "species:quake", + "maxCount": 1, + "minCount": 1, + "weight": 100 } ], "underground_water_creature": [], "water_ambient": [], "water_creature": [ - { - "type": "wan_ancient_beasts:toxlacanth", - "maxCount": 5, - "minCount": 2, - "weight": 100 - }, { "type": "wan_ancient_beasts:surfer", "maxCount": 3, diff --git a/kubejs/data/tfg/worldgen/biome/mars/amber_hills.json b/kubejs/data/tfg/worldgen/biome/mars/amber_hills.json index 84c8887ee..92a495cca 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/amber_hills.json +++ b/kubejs/data/tfg/worldgen/biome/mars/amber_hills.json @@ -24,27 +24,26 @@ ], [], [ - "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" - ], - [ + "tfg:mars/terrain/clay_disc", + "tfg:mars/terrain/kaolin_clay_disc", + "tfg:mars/terrain/venus_sand_disc", "tfc:random_empty_hot_spring" ], [], [], - "#tfg:mars_veins", [], + "#tfg:mars_veins", + "#tfg:mars_underground_decoration", [ "tfg:mars_forest", "tfc:raw_boulder", "tfc:cobble_boulder", "tfc:raw_boulder_small_patch", - "tfc:cobble_boulder_small_patch" + "tfc:cobble_boulder_small_patch", + "tfg:mars/surface/small_skull_and_bones", + "tfg:mars/surface/large_skull_and_bones", + "tfg:mars/surface/rotten_flesh_patch", + "tfg:mars/surface/pile_venus_sand" ], "#tfg:mars_amber_vegetal_decoration", "#tfg:mars_top_layer_modification" @@ -66,6 +65,14 @@ "minecraft:enderman": { "energy_budget": 0.05, "charge": 0.9 + }, + "endermanoverhaul:cave_enderman": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "species:quake": { + "energy_budget": 0.2, + "charge": 0.7 } }, "spawners": { @@ -79,20 +86,26 @@ "weight": 50 }, { - "type": "species:wraptor", - "maxCount": 4, - "minCount": 1, + "type": "tfg:wraptor", + "maxCount": 3, + "minCount": 2, "weight": 100 }, + { + "type": "wan_ancient_beasts:walker", + "maxCount": 1, + "minCount": 1, + "weight": 20 + }, { "type": "wan_ancient_beasts:crusher", - "maxCount": 5, + "maxCount": 3, "minCount": 1, "weight": 100 }, { "type": "wan_ancient_beasts:glider", - "maxCount": 4, + "maxCount": 3, "minCount": 1, "weight": 100 }, @@ -106,7 +119,7 @@ "type": "wan_ancient_beasts:eater", "maxCount": 1, "minCount": 1, - "weight": 10 + "weight": 20 }, { "type": "species:springling", @@ -135,22 +148,47 @@ "minCount": 1, "weight": 100 }, - { - "type": "endermanoverhaul:badlands_enderman", - "maxCount": 1, - "minCount": 1, - "weight": 100 - }, { "type": "minecraft:enderman", "maxCount": 1, "minCount": 1, "weight": 20 + }, + { + "type": "endermanoverhaul:cave_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 50 + }, + { + "type": "ad_astra:martian_raptor", + "maxCount": 2, + "minCount": 1, + "weight": 100 + }, + { + "type": "species:quake", + "maxCount": 1, + "minCount": 1, + "weight": 100 } ], "underground_water_creature": [], "water_ambient": [], - "water_creature": [] + "water_creature": [ + { + "type": "wan_ancient_beasts:toxlacanth", + "maxCount": 5, + "minCount": 2, + "weight": 100 + }, + { + "type": "wan_ancient_beasts:surfer", + "maxCount": 3, + "minCount": 2, + "weight": 100 + } + ] }, "temperature": 0.8 } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/mars/amber_plains.json b/kubejs/data/tfg/worldgen/biome/mars/amber_plains.json index 25cb5ed0f..ff13b90cf 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/amber_plains.json +++ b/kubejs/data/tfg/worldgen/biome/mars/amber_plains.json @@ -24,22 +24,22 @@ ], [], [ - "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" + "tfg:mars/terrain/clay_disc", + "tfg:mars/terrain/peat_disc", + "tfg:mars/terrain/venus_sand_disc" ], [], [], [], "#tfg:mars_veins", - [], + "#tfg:mars_underground_decoration", [ "tfg:mars_forest", - "tfg:mars/semiheavy_ammoniacal_water" + "tfg:mars/semiheavy_ammoniacal_water", + "tfg:mars/surface/small_skull_and_bones", + "tfg:mars/surface/large_skull_and_bones", + "tfg:mars/surface/rotten_flesh_patch", + "tfg:mars/surface/pile_venus_sand" ], "#tfg:mars_amber_vegetal_decoration", "#tfg:mars_top_layer_modification" @@ -61,6 +61,14 @@ "minecraft:enderman": { "energy_budget": 0.05, "charge": 0.9 + }, + "endermanoverhaul:cave_enderman": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "species:quake": { + "energy_budget": 0.2, + "charge": 0.7 } }, "spawners": { @@ -70,15 +78,21 @@ { "type": "tfg:sniffer", "maxCount": 3, - "minCount": 1, + "minCount": 2, "weight": 100 }, { - "type": "species:wraptor", + "type": "tfg:wraptor", "maxCount": 4, "minCount": 2, "weight": 100 }, + { + "type": "species:goober", + "maxCount": 2, + "minCount": 1, + "weight": 30 + }, { "type": "wan_ancient_beasts:walker", "maxCount": 3, @@ -88,7 +102,7 @@ { "type": "wan_ancient_beasts:crusher", "maxCount": 5, - "minCount": 1, + "minCount": 3, "weight": 100 }, { @@ -106,14 +120,14 @@ { "type": "tfg:glacian_ram", "maxCount": 5, - "minCount": 1, + "minCount": 3, "weight": 100 }, { "type": "wan_ancient_beasts:eater", "maxCount": 1, "minCount": 1, - "weight": 5 + "weight": 10 } ], "misc": [], @@ -141,15 +155,39 @@ "maxCount": 1, "minCount": 1, "weight": 20 + }, + { + "type": "endermanoverhaul:cave_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 50 + }, + { + "type": "ad_astra:martian_raptor", + "maxCount": 2, + "minCount": 1, + "weight": 100 + }, + { + "type": "species:quake", + "maxCount": 1, + "minCount": 1, + "weight": 100 } ], "underground_water_creature": [], "water_ambient": [], "water_creature": [ + { + "type": "wan_ancient_beasts:toxlacanth", + "maxCount": 5, + "minCount": 2, + "weight": 100 + }, { "type": "wan_ancient_beasts:surfer", - "maxCount": 2, - "minCount": 1, + "maxCount": 3, + "minCount": 2, "weight": 100 } ] diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_deep_desert.json b/kubejs/data/tfg/worldgen/biome/mars/martian_deep_desert.json index 5f8417922..a2b8fbec5 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/martian_deep_desert.json +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_deep_desert.json @@ -1,7 +1,7 @@ { "carvers": { "air": [ - "tfg:mars_cave" + "tfg:mars_desert_cave" ] }, "downfall": 0.0, @@ -23,36 +23,68 @@ ], [], [ - "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" + "tfg:mars/terrain/spice_disc", + "tfg:mars/terrain/red_quicksand" ], [], [], [], "#tfg:mars_veins", - [], - [], + "#tfg:mars_underground_decoration", + [ + "tfg:mars/surface/small_skull_and_bones", + "tfg:mars/surface/large_skull_and_bones" + ], [ ], - [] + [ + "tfg:glow_lichen" + ] ], "has_precipitation": false, + "creature_spawn_probability": 0.00003, "spawn_costs": { - + "endermanoverhaul:cave_enderman": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "species:quake": { + "energy_budget": 0.2, + "charge": 0.7 + } }, "spawners": { "ambient": [], "axolotls": [], - "creature": [], + "creature": [ + { + "type": "species:stackatick", + "maxCount": 1, + "minCount": 1, + "weight": 100 + } + ], "misc": [], "monster": [ - + { + "type": "endermanoverhaul:cave_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 50 + }, + { + "type": "ad_astra:martian_raptor", + "maxCount": 2, + "minCount": 1, + "weight": 100 + }, + { + "type": "species:quake", + "maxCount": 1, + "minCount": 1, + "weight": 100 + } ], "underground_water_creature": [], "water_ambient": [], diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_dune_edge.json b/kubejs/data/tfg/worldgen/biome/mars/martian_dune_edge.json index f52a6a05e..f40f317bb 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/martian_dune_edge.json +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_dune_edge.json @@ -1,7 +1,7 @@ { "carvers": { "air": [ - "tfg:mars_cave" + "tfg:mars_desert_cave" ] }, "downfall": 0.0, @@ -23,31 +23,31 @@ ], [], [ - "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" + ], [], [], [], "#tfg:mars_veins", - [], + "#tfg:mars_underground_decoration", [ "tfc:raw_boulder", "tfc:cobble_boulder", "tfc:raw_boulder_small_patch", - "tfc:cobble_boulder_small_patch" + "tfc:cobble_boulder_small_patch", + "tfg:mars/surface/small_skull_and_bones", + "tfg:mars/surface/large_skull_and_bones", + "tfg:mars/surface/rotten_flesh_patch", + "tfg:mars/surface/pile_red_sand", + "tfg:mars/surface/pile_venus_sand_no_water", + "tfg:mars/surface/pile_mars_sand", + "tfg:mars/surface/flint_patch" ], [ - + "tfg:mars/surface/feather_patch_wraptor", + "tfg:mars/surface/feather_patch_glider" ], - [ - "tfc:surface_loose_rocks" - ] + "#tfg:mars_top_layer_modification" ], "has_precipitation": false, "spawn_costs": { @@ -66,6 +66,14 @@ "minecraft:enderman": { "energy_budget": 0.05, "charge": 0.9 + }, + "endermanoverhaul:cave_enderman": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "species:quake": { + "energy_budget": 0.2, + "charge": 0.7 } }, "spawners": { @@ -73,11 +81,17 @@ "axolotls": [], "creature": [ { - "type": "wan_ancient_beasts:crusher", + "type": "species:stackatick", "maxCount": 2, "minCount": 1, "weight": 100 }, + { + "type": "wan_ancient_beasts:crusher", + "maxCount": 2, + "minCount": 1, + "weight": 10 + }, { "type": "wan_ancient_beasts:glider", "maxCount": 2, @@ -87,18 +101,6 @@ ], "misc": [], "monster": [ - { - "type": "endermanoverhaul:crimson_forest_enderman", - "maxCount": 1, - "minCount": 1, - "weight": 100 - }, - { - "type": "endermanoverhaul:warped_forest_enderman", - "maxCount": 1, - "minCount": 1, - "weight": 100 - }, { "type": "endermanoverhaul:badlands_enderman", "maxCount": 1, @@ -110,6 +112,24 @@ "maxCount": 1, "minCount": 1, "weight": 20 + }, + { + "type": "endermanoverhaul:cave_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 50 + }, + { + "type": "ad_astra:martian_raptor", + "maxCount": 2, + "minCount": 1, + "weight": 100 + }, + { + "type": "species:quake", + "maxCount": 1, + "minCount": 1, + "weight": 100 } ], "underground_water_creature": [], diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_dunes.json b/kubejs/data/tfg/worldgen/biome/mars/martian_dunes.json index a9e2f7605..b3faedef0 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/martian_dunes.json +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_dunes.json @@ -1,7 +1,7 @@ { "carvers": { "air": [ - "tfg:mars_cave" + "tfg:mars_desert_cave" ] }, "downfall": 0.0, @@ -23,22 +23,18 @@ ], [], [ - "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" + "tfg:mars/terrain/red_quicksand" ], [], [], [], "#tfg:mars_veins", - [], + "#tfg:mars_underground_decoration", [ "tfc:raw_boulder_small_patch", - "tfc:cobble_boulder_small_patch" + "tfc:cobble_boulder_small_patch", + "tfg:mars/surface/small_skull_and_bones", + "tfg:mars/surface/large_skull_and_bones" ], [ @@ -46,31 +42,58 @@ "#tfg:mars_top_layer_modification" ], "has_precipitation": false, + "creature_spawn_probability": 0.00006, "spawn_costs": { - "endermanoverhaul:crimson_forest_enderman": { - "energy_budget": 0.05, - "charge": 0.9 - }, - "endermanoverhaul:warped_forest_enderman": { - "energy_budget": 0.05, - "charge": 0.9 - }, "endermanoverhaul:badlands_enderman": { "energy_budget": 0.05, "charge": 0.9 }, - "minecraft:enderman": { - "energy_budget": 0.05, - "charge": 0.9 + "endermanoverhaul:cave_enderman": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "species:quake": { + "energy_budget": 0.2, + "charge": 0.7 } }, "spawners": { "ambient": [], "axolotls": [], - "creature": [], + "creature": [ + { + "type": "species:stackatick", + "maxCount": 2, + "minCount": 1, + "weight": 100 + } + ], "misc": [], "monster": [ - + { + "type": "endermanoverhaul:badlands_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 50 + }, + { + "type": "endermanoverhaul:cave_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 50 + }, + { + "type": "ad_astra:martian_raptor", + "maxCount": 2, + "minCount": 1, + "weight": 100 + }, + { + "type": "species:quake", + "maxCount": 1, + "minCount": 1, + "weight": 100 + } ], "underground_water_creature": [], "water_ambient": [], diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_mountains.json b/kubejs/data/tfg/worldgen/biome/mars/martian_mountains.json index 434e22a43..1ff46117b 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/martian_mountains.json +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_mountains.json @@ -24,27 +24,42 @@ ], [], [ - "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" - ], - [ - + "tfg:mars/terrain/venus_sand_disc", + "tfg:mars/terrain/basalt_delta", + "tfg:mars/terrain/gabbro_delta", + "tfg:mars/terrain/red_granite_delta", + "tfc:random_empty_hot_spring", + "tfg:mars/terrain/empty_rivulet", + "tfg:mars/terrain/magma_rivulet", + "tfg:mars/terrain/basalt_rivulet", + "tfg:mars/terrain/water_fissure", + "tfg:mars/terrain/empty_fissure" ], [], [], + [], "#tfg:mars_veins", - [], + "#tfg:mars_underground_decoration", [ + "tfc:raw_boulder", "tfc:raw_boulder_small_patch", - "tfc:cobble_boulder_small_patch" + "tfc:cobble_boulder_small_patch", + "tfg:mars/surface/small_skull_and_bones", + "tfg:mars/surface/large_skull_and_bones", + "tfg:mars/surface/rotten_flesh_patch", + "tfg:mars/surface/pile_venus_sand", + "tfg:mars/surface/flint_patch" ], [ + "tfg:mars/surface/charnia", + "tfg:mars/surface/flamaea", + "tfg:mars/surface/aeridium", + "tfg:mars/surface/clawfern", + "tfg:mars/surface/flammalix", + + "tfg:mars/surface/feather_patch_wraptor", + "tfg:mars/surface/feather_patch_glider" ], "#tfg:mars_top_layer_modification" ], @@ -65,6 +80,14 @@ "minecraft:enderman": { "energy_budget": 0.05, "charge": 0.9 + }, + "endermanoverhaul:cave_enderman": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "species:quake": { + "energy_budget": 0.2, + "charge": 0.7 } }, "spawners": { @@ -72,10 +95,10 @@ "axolotls": [], "creature": [ { - "type": "species:wraptor", + "type": "tfg:wraptor", "maxCount": 2, "minCount": 1, - "weight": 100 + "weight": 20 }, { "type": "species:springling", @@ -87,19 +110,25 @@ "type": "wan_ancient_beasts:crusher", "maxCount": 2, "minCount": 1, - "weight": 80 + "weight": 30 }, { "type": "wan_ancient_beasts:glider", "maxCount": 2, "minCount": 1, - "weight": 50 + "weight": 100 }, { "type": "wan_ancient_beasts:soarer", "maxCount": 2, "minCount": 1, - "weight": 50 + "weight": 100 + }, + { + "type": "wan_ancient_beasts:eater", + "maxCount": 1, + "minCount": 1, + "weight": 10 } ], "misc": [], @@ -116,22 +145,47 @@ "minCount": 1, "weight": 100 }, - { - "type": "endermanoverhaul:badlands_enderman", - "maxCount": 1, - "minCount": 1, - "weight": 100 - }, { "type": "minecraft:enderman", "maxCount": 1, "minCount": 1, "weight": 20 + }, + { + "type": "endermanoverhaul:cave_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 50 + }, + { + "type": "ad_astra:martian_raptor", + "maxCount": 2, + "minCount": 1, + "weight": 100 + }, + { + "type": "species:quake", + "maxCount": 1, + "minCount": 1, + "weight": 100 } ], "underground_water_creature": [], "water_ambient": [], - "water_creature": [] + "water_creature": [ + { + "type": "wan_ancient_beasts:toxlacanth", + "maxCount": 5, + "minCount": 2, + "weight": 100 + }, + { + "type": "wan_ancient_beasts:surfer", + "maxCount": 3, + "minCount": 2, + "weight": 100 + } + ] }, "temperature": 0.8 } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_river.json b/kubejs/data/tfg/worldgen/biome/mars/martian_river.json index 304c71094..c3a0b1048 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/martian_river.json +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_river.json @@ -23,28 +23,22 @@ "tfc:erosion" ], [], - [ - "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" - ], [ ], [], [], + [], "#tfg:mars_veins", - [], + "#tfg:mars_underground_decoration", [ "tfc:raw_boulder_small_patch", - "tfc:cobble_boulder_small_patch" + "tfc:cobble_boulder_small_patch", + "tfg:mars/surface/pile_venus_sand_no_water", + "tfg:mars/surface/flint_patch" ], [ - + "tfg:mars/surface/charnia" ], "#tfg:mars_top_layer_modification" ], @@ -65,6 +59,14 @@ "minecraft:enderman": { "energy_budget": 0.05, "charge": 0.9 + }, + "endermanoverhaul:cave_enderman": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "species:quake": { + "energy_budget": 0.2, + "charge": 0.7 } }, "spawners": { @@ -72,16 +74,52 @@ "axolotls": [], "creature": [ { - "type": "species:wraptor", + "type": "tfg:sniffer", "maxCount": 2, "minCount": 1, "weight": 50 }, + { + "type": "tfg:wraptor", + "maxCount": 2, + "minCount": 1, + "weight": 50 + }, + { + "type": "wan_ancient_beasts:crusher", + "maxCount": 2, + "minCount": 1, + "weight": 20 + }, + { + "type": "wan_ancient_beasts:glider", + "maxCount": 2, + "minCount": 1, + "weight": 10 + }, { "type": "species:goober", "maxCount": 2, "minCount": 1, "weight": 100 + }, + { + "type": "wan_ancient_beasts:walker", + "maxCount": 1, + "minCount": 1, + "weight": 20 + }, + { + "type": "tfg:glacian_ram", + "maxCount": 2, + "minCount": 1, + "weight": 100 + }, + { + "type": "wan_ancient_beasts:eater", + "maxCount": 1, + "minCount": 1, + "weight": 10 } ], "misc": [], @@ -98,17 +136,29 @@ "minCount": 1, "weight": 100 }, - { - "type": "endermanoverhaul:badlands_enderman", - "maxCount": 1, - "minCount": 1, - "weight": 100 - }, { "type": "minecraft:enderman", "maxCount": 1, "minCount": 1, "weight": 20 + }, + { + "type": "endermanoverhaul:cave_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 50 + }, + { + "type": "ad_astra:martian_raptor", + "maxCount": 2, + "minCount": 1, + "weight": 100 + }, + { + "type": "species:quake", + "maxCount": 1, + "minCount": 1, + "weight": 100 } ], "underground_water_creature": [], diff --git a/kubejs/data/tfg/worldgen/biome/mars/rusticus_edge.json b/kubejs/data/tfg/worldgen/biome/mars/rusticus_edge.json new file mode 100644 index 000000000..5aca69444 --- /dev/null +++ b/kubejs/data/tfg/worldgen/biome/mars/rusticus_edge.json @@ -0,0 +1,170 @@ +{ + "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 + }, + "sky_color": 15117444, + "water_color": 4159204, + "water_fog_color": 1069623 + }, + "features": [ + [ + "tfc:erosion" + ], + [], + [ + "tfg:mars/terrain/clay_disc", + "tfg:mars/terrain/peat_disc", + "tfg:mars/terrain/venus_sand_disc" + ], + [], + [], + [], + "#tfg:mars_veins", + "#tfg:mars_underground_decoration", + [ + "tfg:mars_forest", + "tfg:mars/surface/small_skull_and_bones", + "tfg:mars/surface/large_skull_and_bones", + "tfg:mars/surface/rotten_flesh_patch", + "tfg:mars/surface/pile_red_sand", + "tfg:mars/surface/pile_venus_sand_no_water", + "tfg:mars/surface/pile_mars_sand", + "tfg:mars/surface/flint_patch" + ], + "#tfg:mars_rusticus_vegetal_decoration", + "#tfg:mars_top_layer_modification" + ], + "has_precipitation": false, + "spawn_costs": { + "endermanoverhaul:crimson_forest_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "endermanoverhaul:warped_forest_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "endermanoverhaul:badlands_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "minecraft:enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "endermanoverhaul:cave_enderman": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "species:quake": { + "energy_budget": 0.2, + "charge": 0.7 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "tfg:sniffer", + "maxCount": 3, + "minCount": 1, + "weight": 100 + }, + { + "type": "tfg:wraptor", + "maxCount": 4, + "minCount": 2, + "weight": 100 + }, + { + "type": "wan_ancient_beasts:walker", + "maxCount": 3, + "minCount": 1, + "weight": 50 + }, + { + "type": "wan_ancient_beasts:crusher", + "maxCount": 5, + "minCount": 1, + "weight": 100 + }, + { + "type": "wan_ancient_beasts:glider", + "maxCount": 2, + "minCount": 1, + "weight": 20 + }, + { + "type": "wan_ancient_beasts:soarer", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "tfg:glacian_ram", + "maxCount": 5, + "minCount": 1, + "weight": 100 + }, + { + "type": "wan_ancient_beasts:eater", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "species:goober", + "maxCount": 2, + "minCount": 1, + "weight": 30 + } + ], + "misc": [], + "monster": [ + { + "type": "endermanoverhaul:badlands_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 1, + "minCount": 1, + "weight": 20 + }, + { + "type": "endermanoverhaul:cave_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 50 + }, + { + "type": "ad_astra:martian_raptor", + "maxCount": 2, + "minCount": 1, + "weight": 100 + }, + { + "type": "species:quake", + "maxCount": 1, + "minCount": 1, + "weight": 100 + } + ], + "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/rusticus_hills.json b/kubejs/data/tfg/worldgen/biome/mars/rusticus_hills.json index 3745a481c..ba3e82942 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/rusticus_hills.json +++ b/kubejs/data/tfg/worldgen/biome/mars/rusticus_hills.json @@ -24,27 +24,26 @@ ], [], [ - "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" - ], - [ + "tfg:mars/terrain/clay_disc", + "tfg:mars/terrain/kaolin_clay_disc", + "tfg:mars/terrain/venus_sand_disc", "tfc:random_empty_hot_spring" ], [], [], - "#tfg:mars_veins", [], + "#tfg:mars_veins", + "#tfg:mars_underground_decoration", [ "tfg:mars_forest", "tfc:raw_boulder", "tfc:cobble_boulder", "tfc:raw_boulder_small_patch", - "tfc:cobble_boulder_small_patch" + "tfc:cobble_boulder_small_patch", + "tfg:mars/surface/small_skull_and_bones", + "tfg:mars/surface/large_skull_and_bones", + "tfg:mars/surface/rotten_flesh_patch", + "tfg:mars/surface/pile_venus_sand" ], "#tfg:mars_rusticus_vegetal_decoration", "#tfg:mars_top_layer_modification" @@ -66,6 +65,14 @@ "minecraft:enderman": { "energy_budget": 0.05, "charge": 0.9 + }, + "endermanoverhaul:cave_enderman": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "species:quake": { + "energy_budget": 0.2, + "charge": 0.7 } }, "spawners": { @@ -75,24 +82,30 @@ { "type": "tfg:sniffer", "maxCount": 3, - "minCount": 1, + "minCount": 2, "weight": 10 }, { - "type": "species:wraptor", + "type": "tfg:wraptor", + "maxCount": 3, + "minCount": 2, + "weight": 100 + }, + { + "type": "wan_ancient_beasts:walker", + "maxCount": 1, + "minCount": 1, + "weight": 20 + }, + { + "type": "wan_ancient_beasts:crusher", "maxCount": 4, "minCount": 2, "weight": 100 }, - { - "type": "wan_ancient_beasts:crusher", - "maxCount": 5, - "minCount": 1, - "weight": 100 - }, { "type": "wan_ancient_beasts:glider", - "maxCount": 4, + "maxCount": 3, "minCount": 1, "weight": 100 }, @@ -106,7 +119,7 @@ "type": "wan_ancient_beasts:eater", "maxCount": 1, "minCount": 1, - "weight": 10 + "weight": 20 }, { "type": "species:springling", @@ -135,22 +148,47 @@ "minCount": 1, "weight": 100 }, - { - "type": "endermanoverhaul:badlands_enderman", - "maxCount": 1, - "minCount": 1, - "weight": 100 - }, { "type": "minecraft:enderman", "maxCount": 1, "minCount": 1, "weight": 20 + }, + { + "type": "endermanoverhaul:cave_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 50 + }, + { + "type": "ad_astra:martian_raptor", + "maxCount": 2, + "minCount": 1, + "weight": 100 + }, + { + "type": "species:quake", + "maxCount": 1, + "minCount": 1, + "weight": 100 } ], "underground_water_creature": [], "water_ambient": [], - "water_creature": [] + "water_creature": [ + { + "type": "wan_ancient_beasts:toxlacanth", + "maxCount": 5, + "minCount": 2, + "weight": 100 + }, + { + "type": "wan_ancient_beasts:surfer", + "maxCount": 3, + "minCount": 2, + "weight": 100 + } + ] }, "temperature": 0.8 } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/mars/rusticus_plains.json b/kubejs/data/tfg/worldgen/biome/mars/rusticus_plains.json index 2fac9938b..91c878595 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/rusticus_plains.json +++ b/kubejs/data/tfg/worldgen/biome/mars/rusticus_plains.json @@ -24,22 +24,22 @@ ], [], [ - "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" + "tfg:mars/terrain/clay_disc", + "tfg:mars/terrain/peat_disc", + "tfg:mars/terrain/venus_sand_disc" ], [], [], [], "#tfg:mars_veins", - [], + "#tfg:mars_underground_decoration", [ "tfg:mars_forest", - "tfg:mars/semiheavy_ammoniacal_water" + "tfg:mars/semiheavy_ammoniacal_water", + "tfg:mars/surface/small_skull_and_bones", + "tfg:mars/surface/large_skull_and_bones", + "tfg:mars/surface/rotten_flesh_patch", + "tfg:mars/surface/pile_venus_sand" ], "#tfg:mars_rusticus_vegetal_decoration", "#tfg:mars_top_layer_modification" @@ -61,6 +61,14 @@ "minecraft:enderman": { "energy_budget": 0.05, "charge": 0.9 + }, + "endermanoverhaul:cave_enderman": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "species:quake": { + "energy_budget": 0.2, + "charge": 0.7 } }, "spawners": { @@ -70,15 +78,21 @@ { "type": "tfg:sniffer", "maxCount": 3, - "minCount": 1, + "minCount": 2, "weight": 100 }, { - "type": "species:wraptor", + "type": "tfg:wraptor", "maxCount": 4, "minCount": 2, "weight": 100 }, + { + "type": "species:goober", + "maxCount": 2, + "minCount": 1, + "weight": 30 + }, { "type": "wan_ancient_beasts:walker", "maxCount": 3, @@ -88,7 +102,7 @@ { "type": "wan_ancient_beasts:crusher", "maxCount": 5, - "minCount": 1, + "minCount": 3, "weight": 100 }, { @@ -106,14 +120,14 @@ { "type": "tfg:glacian_ram", "maxCount": 5, - "minCount": 1, + "minCount": 3, "weight": 100 }, { "type": "wan_ancient_beasts:eater", "maxCount": 1, "minCount": 1, - "weight": 5 + "weight": 10 } ], "misc": [], @@ -141,15 +155,39 @@ "maxCount": 1, "minCount": 1, "weight": 20 + }, + { + "type": "endermanoverhaul:cave_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 50 + }, + { + "type": "ad_astra:martian_raptor", + "maxCount": 2, + "minCount": 1, + "weight": 100 + }, + { + "type": "species:quake", + "maxCount": 1, + "minCount": 1, + "weight": 100 } ], "underground_water_creature": [], "water_ambient": [], "water_creature": [ + { + "type": "wan_ancient_beasts:toxlacanth", + "maxCount": 5, + "minCount": 2, + "weight": 100 + }, { "type": "wan_ancient_beasts:surfer", - "maxCount": 2, - "minCount": 1, + "maxCount": 3, + "minCount": 2, "weight": 100 } ] diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_oasis.json b/kubejs/data/tfg/worldgen/biome/mars/sangnum_edge.json similarity index 52% rename from kubejs/data/tfg/worldgen/biome/mars/martian_oasis.json rename to kubejs/data/tfg/worldgen/biome/mars/sangnum_edge.json index 4b4c5a4ef..1c1d6b0ca 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/martian_oasis.json +++ b/kubejs/data/tfg/worldgen/biome/mars/sangnum_edge.json @@ -1,8 +1,6 @@ { "carvers": { - "air": [ - "tfg:mars_cave" - ] + "air": [] }, "downfall": 0.0, "effects": { @@ -23,28 +21,24 @@ ], [], [ - "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:random_empty_hot_spring" + "tfg:mars/terrain/clay_disc", + "tfg:mars/terrain/peat_disc", + "tfg:mars/terrain/venus_sand_disc" ], [], [], + [], "#tfg:mars_veins", - [], + "#tfg:mars_underground_decoration", [ "tfg:mars_forest", - "tfc:raw_boulder", - "tfc:cobble_boulder", - "tfc:raw_boulder_small_patch", - "tfc:cobble_boulder_small_patch", - "tfg:mars/semiheavy_ammoniacal_water" + "tfg:mars/surface/small_skull_and_bones", + "tfg:mars/surface/large_skull_and_bones", + "tfg:mars/surface/rotten_flesh_patch", + "tfg:mars/surface/pile_red_sand", + "tfg:mars/surface/pile_venus_sand_no_water", + "tfg:mars/surface/pile_mars_sand", + "tfg:mars/surface/flint_patch" ], "#tfg:mars_sangnum_vegetal_decoration", "#tfg:mars_top_layer_modification" @@ -67,46 +61,105 @@ "energy_budget": 0.05, "charge": 0.9 }, - "species:quake": { + "endermanoverhaul:cave_enderman": { "energy_budget": 0.15, "charge": 0.7 + }, + "species:quake": { + "energy_budget": 0.2, + "charge": 0.7 } }, "spawners": { "ambient": [], "axolotls": [], - "creature": [], - "misc": [], - "monster": [ + "creature": [ { - "type": "species:quake", - "maxCount": 1, + "type": "tfg:sniffer", + "maxCount": 3, "minCount": 1, "weight": 100 }, { - "type": "endermanoverhaul:crimson_forest_enderman", - "maxCount": 1, + "type": "tfg:wraptor", + "maxCount": 4, + "minCount": 2, + "weight": 100 + }, + { + "type": "wan_ancient_beasts:walker", + "maxCount": 3, + "minCount": 1, + "weight": 50 + }, + { + "type": "wan_ancient_beasts:crusher", + "maxCount": 5, + "minCount": 1, + "weight": 100 + }, + { + "type": "wan_ancient_beasts:glider", + "maxCount": 2, "minCount": 1, "weight": 20 }, { - "type": "endermanoverhaul:warped_forest_enderman", + "type": "wan_ancient_beasts:soarer", "maxCount": 1, "minCount": 1, - "weight": 20 + "weight": 5 }, + { + "type": "tfg:glacian_ram", + "maxCount": 5, + "minCount": 1, + "weight": 100 + }, + { + "type": "wan_ancient_beasts:eater", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "species:goober", + "maxCount": 2, + "minCount": 1, + "weight": 30 + } + ], + "misc": [], + "monster": [ { "type": "endermanoverhaul:badlands_enderman", "maxCount": 1, "minCount": 1, - "weight": 50 + "weight": 100 }, { "type": "minecraft:enderman", "maxCount": 1, "minCount": 1, "weight": 20 + }, + { + "type": "endermanoverhaul:cave_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 50 + }, + { + "type": "ad_astra:martian_raptor", + "maxCount": 2, + "minCount": 1, + "weight": 100 + }, + { + "type": "species:quake", + "maxCount": 1, + "minCount": 1, + "weight": 100 } ], "underground_water_creature": [], @@ -114,8 +167,8 @@ "water_creature": [ { "type": "wan_ancient_beasts:surfer", - "maxCount": 2, - "minCount": 1, + "maxCount": 3, + "minCount": 2, "weight": 100 } ] diff --git a/kubejs/data/tfg/worldgen/biome/mars/sangnum_hills.json b/kubejs/data/tfg/worldgen/biome/mars/sangnum_hills.json index 30bbb9f21..4e934a127 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/sangnum_hills.json +++ b/kubejs/data/tfg/worldgen/biome/mars/sangnum_hills.json @@ -24,27 +24,26 @@ ], [], [ - "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" - ], - [ + "tfg:mars/terrain/clay_disc", + "tfg:mars/terrain/kaolin_clay_disc", + "tfg:mars/terrain/venus_sand_disc", "tfc:random_empty_hot_spring" ], [], [], - "#tfg:mars_veins", [], + "#tfg:mars_veins", + "#tfg:mars_underground_decoration", [ "tfg:mars_forest", "tfc:raw_boulder", "tfc:cobble_boulder", "tfc:raw_boulder_small_patch", - "tfc:cobble_boulder_small_patch" + "tfc:cobble_boulder_small_patch", + "tfg:mars/surface/small_skull_and_bones", + "tfg:mars/surface/large_skull_and_bones", + "tfg:mars/surface/rotten_flesh_patch", + "tfg:mars/surface/pile_venus_sand" ], "#tfg:mars_sangnum_vegetal_decoration", "#tfg:mars_top_layer_modification" @@ -66,6 +65,14 @@ "minecraft:enderman": { "energy_budget": 0.05, "charge": 0.9 + }, + "endermanoverhaul:cave_enderman": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "species:quake": { + "energy_budget": 0.2, + "charge": 0.7 } }, "spawners": { @@ -79,11 +86,17 @@ "weight": 20 }, { - "type": "species:wraptor", - "maxCount": 4, + "type": "tfg:wraptor", + "maxCount": 3, "minCount": 2, "weight": 100 }, + { + "type": "wan_ancient_beasts:walker", + "maxCount": 1, + "minCount": 1, + "weight": 20 + }, { "type": "wan_ancient_beasts:crusher", "maxCount": 3, @@ -106,7 +119,7 @@ "type": "wan_ancient_beasts:eater", "maxCount": 1, "minCount": 1, - "weight": 10 + "weight": 20 }, { "type": "species:springling", @@ -135,22 +148,47 @@ "minCount": 1, "weight": 100 }, - { - "type": "endermanoverhaul:badlands_enderman", - "maxCount": 1, - "minCount": 1, - "weight": 100 - }, { "type": "minecraft:enderman", "maxCount": 1, "minCount": 1, "weight": 20 + }, + { + "type": "endermanoverhaul:cave_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 50 + }, + { + "type": "ad_astra:martian_raptor", + "maxCount": 2, + "minCount": 1, + "weight": 100 + }, + { + "type": "species:quake", + "maxCount": 1, + "minCount": 1, + "weight": 100 } ], "underground_water_creature": [], "water_ambient": [], - "water_creature": [] + "water_creature": [ + { + "type": "wan_ancient_beasts:toxlacanth", + "maxCount": 5, + "minCount": 2, + "weight": 100 + }, + { + "type": "wan_ancient_beasts:surfer", + "maxCount": 3, + "minCount": 2, + "weight": 100 + } + ] }, "temperature": 0.8 } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/mars/sangnum_plains.json b/kubejs/data/tfg/worldgen/biome/mars/sangnum_plains.json index d1602f32f..1bd8e7a6f 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/sangnum_plains.json +++ b/kubejs/data/tfg/worldgen/biome/mars/sangnum_plains.json @@ -24,22 +24,22 @@ ], [], [ - "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" + "tfg:mars/terrain/clay_disc", + "tfg:mars/terrain/peat_disc", + "tfg:mars/terrain/venus_sand_disc" ], [], [], [], "#tfg:mars_veins", - [], + "#tfg:mars_underground_decoration", [ "tfg:mars_forest", - "tfg:mars/semiheavy_ammoniacal_water" + "tfg:mars/semiheavy_ammoniacal_water", + "tfg:mars/surface/small_skull_and_bones", + "tfg:mars/surface/large_skull_and_bones", + "tfg:mars/surface/rotten_flesh_patch", + "tfg:mars/surface/pile_venus_sand" ], "#tfg:mars_sangnum_vegetal_decoration", "#tfg:mars_top_layer_modification" @@ -61,6 +61,14 @@ "minecraft:enderman": { "energy_budget": 0.05, "charge": 0.9 + }, + "endermanoverhaul:cave_enderman": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "species:quake": { + "energy_budget": 0.2, + "charge": 0.7 } }, "spawners": { @@ -70,15 +78,21 @@ { "type": "tfg:sniffer", "maxCount": 3, - "minCount": 1, + "minCount": 2, "weight": 100 }, { - "type": "species:wraptor", + "type": "tfg:wraptor", "maxCount": 4, "minCount": 2, "weight": 100 }, + { + "type": "species:goober", + "maxCount": 2, + "minCount": 1, + "weight": 30 + }, { "type": "wan_ancient_beasts:walker", "maxCount": 3, @@ -88,7 +102,7 @@ { "type": "wan_ancient_beasts:crusher", "maxCount": 5, - "minCount": 1, + "minCount": 3, "weight": 100 }, { @@ -106,14 +120,14 @@ { "type": "tfg:glacian_ram", "maxCount": 5, - "minCount": 1, + "minCount": 3, "weight": 100 }, { "type": "wan_ancient_beasts:eater", "maxCount": 1, "minCount": 1, - "weight": 5 + "weight": 10 } ], "misc": [], @@ -141,15 +155,39 @@ "maxCount": 1, "minCount": 1, "weight": 20 + }, + { + "type": "endermanoverhaul:cave_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 50 + }, + { + "type": "ad_astra:martian_raptor", + "maxCount": 2, + "minCount": 1, + "weight": 100 + }, + { + "type": "species:quake", + "maxCount": 1, + "minCount": 1, + "weight": 100 } ], "underground_water_creature": [], "water_ambient": [], "water_creature": [ + { + "type": "wan_ancient_beasts:toxlacanth", + "maxCount": 5, + "minCount": 2, + "weight": 100 + }, { "type": "wan_ancient_beasts:surfer", - "maxCount": 2, - "minCount": 1, + "maxCount": 3, + "minCount": 2, "weight": 100 } ] diff --git a/kubejs/data/tfg/worldgen/configured_carver/mars_desert_cave.json b/kubejs/data/tfg/worldgen/configured_carver/mars_desert_cave.json new file mode 100644 index 000000000..25648bbd8 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_carver/mars_desert_cave.json @@ -0,0 +1,48 @@ +{ + "type": "minecraft:cave", + "config": { + "probability": 0.025, + "y": { + "type": "uniform", + "min_inclusive": { + "absolute": -20 + }, + "max_inclusive": { + "absolute": 50 + } + }, + "yScale": { + "type": "uniform", + "value": { + "min_inclusive": 0.1, + "max_exclusive": 1.0 + } + }, + "lava_level": { + "above_bottom": -2032 + }, + "aquifers_enabled": false, + "horizontal_radius_multiplier": { + "type": "uniform", + "value": { + "min_inclusive": 2.0, + "max_exclusive": 3.0 + } + }, + "vertical_radius_multiplier": { + "type": "uniform", + "value": { + "min_inclusive": 2.0, + "max_exclusive": 3.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/flax_patch.json b/kubejs/data/tfg/worldgen/configured_feature/earth/flax_patch.json new file mode 100644 index 000000000..a45b5eb4e --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/flax_patch.json @@ -0,0 +1,40 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "tfc:tall_wild_crop", + "config": { + "block": "tfg:flax_wild" + } + }, + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "block_predicate_filter", + "predicate": { + "type": "tfc:replaceable" + } + }, + { + "type": "block_predicate_filter", + "predicate": { + "type": "would_survive", + "state": { + "Name": "tfg:flax_wild", + "Properties": { + "part": "bottom" + } + } + } + } + ] + }, + "tries": 20, + "xz_spread": 16, + "y_spread": 1 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_pitchblende.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_pitchblende.json index 0465b213c..97a018fee 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_pitchblende.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_pitchblende.json @@ -3,7 +3,7 @@ "type": "tfc:cluster_vein", "config": { "size": 24, - "rarity": 220, + "rarity": 240, "density": 0.45, "min_y": -64, "max_y": -20, @@ -24,11 +24,11 @@ }, { "block": "gtceu:granite_uraninite_ore", - "weight": 50 + "weight": 20 }, { - "block": "gtceu:raw_uraninite_block", - "weight": 1 + "block": "gtceu:granite_wulfenite_ore", + "weight": 10 } ] }, @@ -47,11 +47,11 @@ }, { "block": "gtceu:diorite_uraninite_ore", - "weight": 50 + "weight": 20 }, { - "block": "gtceu:raw_uraninite_block", - "weight": 1 + "block": "gtceu:diorite_wulfenite_ore", + "weight": 10 } ] }, @@ -70,11 +70,11 @@ }, { "block": "gtceu:gabbro_uraninite_ore", - "weight": 50 + "weight": 20 }, { - "block": "gtceu:raw_uraninite_block", - "weight": 1 + "block": "gtceu:gabbro_wulfenite_ore", + "weight": 10 } ] }, @@ -93,11 +93,11 @@ }, { "block": "gtceu:quartzite_uraninite_ore", - "weight": 50 + "weight": 20 }, { - "block": "gtceu:raw_uraninite_block", - "weight": 1 + "block": "gtceu:quartzite_wulfenite_ore", + "weight": 10 } ] }, @@ -116,11 +116,11 @@ }, { "block": "gtceu:slate_uraninite_ore", - "weight": 50 + "weight": 20 }, { - "block": "gtceu:raw_uraninite_block", - "weight": 1 + "block": "gtceu:slate_wulfenite_ore", + "weight": 10 } ] }, @@ -139,11 +139,11 @@ }, { "block": "gtceu:phyllite_uraninite_ore", - "weight": 50 + "weight": 20 }, { - "block": "gtceu:raw_uraninite_block", - "weight": 1 + "block": "gtceu:phyllite_wulfenite_ore", + "weight": 10 } ] }, @@ -162,11 +162,11 @@ }, { "block": "gtceu:schist_uraninite_ore", - "weight": 50 + "weight": 20 }, { - "block": "gtceu:raw_uraninite_block", - "weight": 1 + "block": "gtceu:schist_wulfenite_ore", + "weight": 10 } ] }, @@ -185,11 +185,11 @@ }, { "block": "gtceu:gneiss_uraninite_ore", - "weight": 50 + "weight": 20 }, { - "block": "gtceu:raw_uraninite_block", - "weight": 1 + "block": "gtceu:gneiss_wulfenite_ore", + "weight": 10 } ] }, @@ -208,11 +208,11 @@ }, { "block": "gtceu:marble_uraninite_ore", - "weight": 50 + "weight": 20 }, { - "block": "gtceu:raw_uraninite_block", - "weight": 1 + "block": "gtceu:marble_wulfenite_ore", + "weight": 10 } ] } @@ -229,7 +229,11 @@ }, { "block": "gtceu:uraninite_indicator", - "weight": 50 + "weight": 20 + }, + { + "block": "gtceu:wulfenite_indicator", + "weight": 10 } ] } diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_bismuthinite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_bismuthinite.json index 7e3973619..ba1b76dd5 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_bismuthinite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_bismuthinite.json @@ -16,7 +16,7 @@ "with": [ { "block": "gtceu:granite_bismuth_ore", - "weight": 90 + "weight": 85 }, { "block": "gtceu:granite_sulfur_ore", @@ -25,6 +25,10 @@ { "block": "gtceu:granite_lead_ore", "weight": 7 + }, + { + "block": "gtceu:granite_silver_ore", + "weight": 5 } ] }, @@ -35,7 +39,7 @@ "with": [ { "block": "gtceu:diorite_bismuth_ore", - "weight": 90 + "weight": 85 }, { "block": "gtceu:diorite_sulfur_ore", @@ -44,6 +48,10 @@ { "block": "gtceu:diorite_lead_ore", "weight": 7 + }, + { + "block": "gtceu:diorite_silver_ore", + "weight": 5 } ] }, @@ -54,7 +62,7 @@ "with": [ { "block": "gtceu:gabbro_bismuth_ore", - "weight": 90 + "weight": 85 }, { "block": "gtceu:gabbro_sulfur_ore", @@ -63,6 +71,10 @@ { "block": "gtceu:gabbro_lead_ore", "weight": 7 + }, + { + "block": "gtceu:gabbro_silver_ore", + "weight": 5 } ] }, @@ -73,7 +85,7 @@ "with": [ { "block": "gtceu:shale_bismuth_ore", - "weight": 90 + "weight": 85 }, { "block": "gtceu:shale_sulfur_ore", @@ -82,6 +94,10 @@ { "block": "gtceu:shale_lead_ore", "weight": 7 + }, + { + "block": "gtceu:shale_silver_ore", + "weight": 5 } ] }, @@ -92,7 +108,7 @@ "with": [ { "block": "gtceu:claystone_bismuth_ore", - "weight": 90 + "weight": 85 }, { "block": "gtceu:claystone_sulfur_ore", @@ -101,6 +117,10 @@ { "block": "gtceu:claystone_lead_ore", "weight": 7 + }, + { + "block": "gtceu:claystone_silver_ore", + "weight": 5 } ] }, @@ -111,7 +131,7 @@ "with": [ { "block": "gtceu:limestone_bismuth_ore", - "weight": 90 + "weight": 85 }, { "block": "gtceu:limestone_sulfur_ore", @@ -120,6 +140,10 @@ { "block": "gtceu:limestone_lead_ore", "weight": 7 + }, + { + "block": "gtceu:limestone_silver_ore", + "weight": 5 } ] }, @@ -130,7 +154,7 @@ "with": [ { "block": "gtceu:conglomerate_bismuth_ore", - "weight": 90 + "weight": 85 }, { "block": "gtceu:conglomerate_sulfur_ore", @@ -139,6 +163,10 @@ { "block": "gtceu:conglomerate_lead_ore", "weight": 7 + }, + { + "block": "gtceu:conglomerate_silver_ore", + "weight": 5 } ] }, @@ -149,7 +177,7 @@ "with": [ { "block": "gtceu:dolomite_bismuth_ore", - "weight": 90 + "weight": 85 }, { "block": "gtceu:dolomite_sulfur_ore", @@ -158,6 +186,10 @@ { "block": "gtceu:dolomite_lead_ore", "weight": 7 + }, + { + "block": "gtceu:dolomite_silver_ore", + "weight": 5 } ] }, @@ -168,7 +200,7 @@ "with": [ { "block": "gtceu:chert_bismuth_ore", - "weight": 90 + "weight": 85 }, { "block": "gtceu:chert_sulfur_ore", @@ -177,6 +209,10 @@ { "block": "gtceu:chert_lead_ore", "weight": 7 + }, + { + "block": "gtceu:chert_silver_ore", + "weight": 5 } ] }, @@ -187,7 +223,7 @@ "with": [ { "block": "gtceu:chalk_bismuth_ore", - "weight": 90 + "weight": 85 }, { "block": "gtceu:chalk_sulfur_ore", @@ -196,6 +232,10 @@ { "block": "gtceu:chalk_lead_ore", "weight": 7 + }, + { + "block": "gtceu:chalk_silver_ore", + "weight": 5 } ] } @@ -208,7 +248,7 @@ "blocks": [ { "block": "tfc:ore/small_bismuthinite", - "weight": 90 + "weight": 85 }, { "block": "gtceu:sulfur_indicator", @@ -217,6 +257,10 @@ { "block": "gtceu:lead_indicator", "weight": 7 + }, + { + "block": "tfc:ore/small_native_silver", + "weight": 5 } ] } diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/crop/amber_root.json b/kubejs/data/tfg/worldgen/configured_feature/mars/crop/amber_root.json index adb77bb40..4bd283a30 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/mars/crop/amber_root.json +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/crop/amber_root.json @@ -8,7 +8,10 @@ "to_place": { "type": "minecraft:simple_state_provider", "state": { - "Name": "betterend:amber_root_wild" + "Name": "betterend:amber_root_wild", + "Properties": { + "mature": "true" + } } } } diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/crop/blossom_berry.json b/kubejs/data/tfg/worldgen/configured_feature/mars/crop/blossom_berry.json index dcff72864..0c922f4de 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/mars/crop/blossom_berry.json +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/crop/blossom_berry.json @@ -8,7 +8,10 @@ "to_place": { "type": "minecraft:simple_state_provider", "state": { - "Name": "betterend:blossom_berry_wild" + "Name": "betterend:blossom_berry_wild", + "Properties": { + "mature": "true" + } } } } diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/crop/bolux_mushroom.json b/kubejs/data/tfg/worldgen/configured_feature/mars/crop/bolux_mushroom.json index 7a4b3d1b6..916748a35 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/mars/crop/bolux_mushroom.json +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/crop/bolux_mushroom.json @@ -8,7 +8,10 @@ "to_place": { "type": "minecraft:simple_state_provider", "state": { - "Name": "betterend:bolux_mushroom_wild" + "Name": "betterend:bolux_mushroom_wild", + "Properties": { + "mature": "true" + } } } } diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/crop/chorus_mushroom.json b/kubejs/data/tfg/worldgen/configured_feature/mars/crop/chorus_mushroom.json index 004a6db4c..ee0685243 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/mars/crop/chorus_mushroom.json +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/crop/chorus_mushroom.json @@ -8,7 +8,10 @@ "to_place": { "type": "minecraft:simple_state_provider", "state": { - "Name": "betterend:chorus_mushroom_wild" + "Name": "betterend:chorus_mushroom_wild", + "Properties": { + "mature": "true" + } } } } diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/crop/shadow_berry.json b/kubejs/data/tfg/worldgen/configured_feature/mars/crop/shadow_berry.json index 6975247b2..f17fc0c9f 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/mars/crop/shadow_berry.json +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/crop/shadow_berry.json @@ -8,7 +8,10 @@ "to_place": { "type": "minecraft:simple_state_provider", "state": { - "Name": "betterend:shadow_berry_wild" + "Name": "betterend:shadow_berry_wild", + "Properties": { + "mature": "true" + } } } } diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/aeridium.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/aeridium.json index e933d24f0..bea04eca1 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/aeridium.json +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/aeridium.json @@ -24,9 +24,23 @@ "blocks": "minecraft:air" }, { - "type": "minecraft:matching_block_tag", - "offset": [0, -1, 0], - "tag": "tfg:mars_soil" + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "offset": [ 0, -1, 0 ], + "tag": "tfg:mars_soil" + }, + { + "type": "minecraft:matching_blocks", + "offset": [ 0, -1, 0 ], + "blocks": [ + "tfc:rock/raw/basalt", + "tfc:rock/raw/gabbro", + "gtceu:red_granite" + ] + } + ] } ] } diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/bone_patch.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/bone_patch.json new file mode 100644 index 000000000..2ce351fe3 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/bone_patch.json @@ -0,0 +1,56 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "tfc:groundcover/bone" + }, + "weight": 60 + }, + { + "data": { + "Name": "species:bone_spike", + "Properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + "weight": 40 + } + ] + } + } + }, + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + { + "type": "minecraft:matching_block_tag", + "offset": [ 0, -1, 0 ], + "tag": "ad_astra:mars_stone_replaceables" + } + ] + } + } + ] + }, + "tries": 8, + "xz_spread": 3, + "y_spread": 2 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/charnia.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/charnia.json new file mode 100644 index 000000000..b803c4af3 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/charnia.json @@ -0,0 +1,97 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "betterend:charnia_cyan", + "Properties": { + "fluid": "semiheavy_ammoniacal_water" + } + }, + "weight": 25 + }, + { + "data": { + "Name": "betterend:charnia_green", + "Properties": { + "fluid": "semiheavy_ammoniacal_water" + } + }, + "weight": 10 + }, + { + "data": { + "Name": "betterend:charnia_purple", + "Properties": { + "fluid": "semiheavy_ammoniacal_water" + } + }, + "weight": 5 + }, + { + "data": { + "Name": "betterend:charnia_light_blue", + "Properties": { + "fluid": "semiheavy_ammoniacal_water" + } + }, + "weight": 20 + }, + { + "data": { + "Name": "betterend:charnia_orange", + "Properties": { + "fluid": "semiheavy_ammoniacal_water" + } + }, + "weight": 15 + }, + { + "data": { + "Name": "betterend:charnia_red", + "Properties": { + "fluid": "semiheavy_ammoniacal_water" + } + }, + "weight": 15 + } + ] + } + } + }, + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_fluids", + "fluids": "tfg:semiheavy_ammoniacal_water" + }, + { + "type": "minecraft:matching_block_tag", + "offset": [ 0, -1, 0 ], + "tag": "ad_astra:mars_stone_replaceables" + } + ] + } + } + ] + }, + "tries": 28, + "xz_spread": 8, + "y_spread": 3 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/clawfern.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/clawfern.json index 5ca0f4db3..a1f6fd07f 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/clawfern.json +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/clawfern.json @@ -24,9 +24,23 @@ "blocks": "minecraft:air" }, { - "type": "minecraft:matching_block_tag", - "offset": [ 0, -1, 0 ], - "tag": "tfg:mars_soil" + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "offset": [ 0, -1, 0 ], + "tag": "tfg:mars_soil" + }, + { + "type": "minecraft:matching_blocks", + "offset": [ 0, -1, 0 ], + "blocks": [ + "tfc:rock/raw/basalt", + "tfc:rock/raw/gabbro", + "gtceu:red_granite" + ] + } + ] } ] } diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/feather_patch_glider.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/feather_patch_glider.json new file mode 100644 index 000000000..841d65adf --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/feather_patch_glider.json @@ -0,0 +1,40 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "tfg:groundcover/glider_feather" + } + } + } + }, + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + { + "type": "minecraft:matching_block_tag", + "offset": [ 0, -1, 0 ], + "tag": "ad_astra:mars_stone_replaceables" + } + ] + } + } + ] + }, + "tries": 8, + "xz_spread": 3, + "y_spread": 3 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/feather_patch_wraptor.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/feather_patch_wraptor.json new file mode 100644 index 000000000..aea74225e --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/feather_patch_wraptor.json @@ -0,0 +1,40 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "tfg:groundcover/wraptor_feather" + } + } + } + }, + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + { + "type": "minecraft:matching_block_tag", + "offset": [ 0, -1, 0 ], + "tag": "ad_astra:mars_stone_replaceables" + } + ] + } + } + ] + }, + "tries": 8, + "xz_spread": 3, + "y_spread": 3 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/flamaea.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/flamaea.json index 6251d7a73..5ca07f8fa 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/flamaea.json +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/flamaea.json @@ -14,6 +14,10 @@ } }, "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, { "type": "minecraft:block_predicate_filter", "predicate": { @@ -24,9 +28,9 @@ "blocks": "minecraft:air" }, { - "type": "minecraft:matching_block_tag", + "type": "minecraft:matching_blocks", "offset": [ 0, -1, 0 ], - "tag": "tfg:mars_soil" + "blocks": "tfg:fluid/semiheavy_ammoniacal_water" } ] } @@ -34,7 +38,7 @@ ] }, "tries": 16, - "xz_spread": 16, - "y_spread": 2 + "xz_spread": 10, + "y_spread": 0 } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/flammalix.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/flammalix.json index 7b5ba6122..5838ae8e7 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/flammalix.json +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/flammalix.json @@ -24,9 +24,23 @@ "blocks": "minecraft:air" }, { - "type": "minecraft:matching_block_tag", - "offset": [ 0, -1, 0 ], - "tag": "tfg:mars_soil" + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "offset": [ 0, -1, 0 ], + "tag": "tfg:mars_soil" + }, + { + "type": "minecraft:matching_blocks", + "offset": [ 0, -1, 0 ], + "blocks": [ + "tfc:rock/raw/basalt", + "tfc:rock/raw/gabbro", + "gtceu:red_granite" + ] + } + ] } ] } diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/flint_patch.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/flint_patch.json new file mode 100644 index 000000000..df3462c4f --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/flint_patch.json @@ -0,0 +1,40 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "tfc:groundcover/flint" + } + } + } + }, + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + { + "type": "minecraft:matching_block_tag", + "offset": [ 0, -1, 0 ], + "tag": "ad_astra:mars_stone_replaceables" + } + ] + } + } + ] + }, + "tries": 12, + "xz_spread": 5, + "y_spread": 2 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/lacugrove.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/lacugrove.json new file mode 100644 index 000000000..6baefb097 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/lacugrove.json @@ -0,0 +1,44 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "betterend:lacugrove" + } + } + } + }, + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "offset": [ 0, -1, 0 ], + "blocks": "tfg:fluid/semiheavy_ammoniacal_water" + } + ] + } + } + ] + }, + "tries": 16, + "xz_spread": 5, + "y_spread": 0 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/lanceleaf.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/lanceleaf.json new file mode 100644 index 000000000..6695ef740 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/lanceleaf.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "tfg:tall_decorative_plant", + "config": { + "block": "betterend:lanceleaf", + "plantHeight": 5, + "minHeight": 4, + "maxHeight": 7, + "middle": 2 + } + }, + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "offset": [ 0, -1, 0 ], + "tag": "tfg:mars_soil" + } + } + ] + }, + "tries": 8, + "xz_spread": 10, + "y_spread": 2 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/lanceleaf_small.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/lanceleaf_small.json new file mode 100644 index 000000000..c758a819c --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/lanceleaf_small.json @@ -0,0 +1,40 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "betterend:lanceleaf_small" + } + } + } + }, + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + { + "type": "minecraft:matching_block_tag", + "offset": [ 0, -1, 0 ], + "tag": "tfg:mars_soil" + } + ] + } + } + ] + }, + "tries": 16, + "xz_spread": 7, + "y_spread": 2 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/large_amaranita_mushroom.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/large_amaranita_mushroom.json new file mode 100644 index 000000000..807df6037 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/large_amaranita_mushroom.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "tfg:tall_decorative_plant", + "config": { + "block": "betterend:large_amaranita_mushroom", + "plantHeight": 3, + "minHeight": 2, + "maxHeight": 6, + "middle": 1 + } + }, + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "offset": [ 0, -1, 0 ], + "tag": "tfg:mars_soil" + } + } + ] + }, + "tries": 8, + "xz_spread": 10, + "y_spread": 3 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/large_bone_patch.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/large_bone_patch.json new file mode 100644 index 000000000..08ed4ce14 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/large_bone_patch.json @@ -0,0 +1,74 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "tfc:groundcover/bone" + }, + "weight": 40 + }, + { + "data": { + "Name": "minecraft:bone_block", + "Properties": { + "axis": "y" + } + }, + "weight": 20 + }, + { + "data": { + "Name": "species:bone_vertebra", + "Properties": { + "axis": "y" + } + }, + "weight": 20 + }, + { + "data": { + "Name": "species:bone_spike", + "Properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + "weight": 40 + } + ] + } + } + }, + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + { + "type": "minecraft:matching_block_tag", + "offset": [ 0, -1, 0 ], + "tag": "ad_astra:mars_stone_replaceables" + } + ] + } + } + ] + }, + "tries": 32, + "xz_spread": 6, + "y_spread": 2 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/large_skull.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/large_skull.json new file mode 100644 index 000000000..e8cc3b028 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/large_skull.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:simple_random_selector", + "config": { + "features": [ + { + "feature": "tfg:mars/surface/skulls/walker", + "placement": [] + }, + { + "feature": "tfg:mars/surface/skulls/eater", + "placement": [] + }, + { + "feature": "tfg:mars/surface/skulls/charger", + "placement": [] + } + ] + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/lucernia_outer_leaves.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/lucernia_outer_leaves.json new file mode 100644 index 000000000..98b334cf0 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/lucernia_outer_leaves.json @@ -0,0 +1,40 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "betterend:lucernia_outer_leaves" + } + } + } + }, + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + { + "type": "minecraft:matching_block_tag", + "offset": [ 0, -1, 0 ], + "tag": "tfg:mars_soil" + } + ] + } + } + ] + }, + "tries": 8, + "xz_spread": 10, + "y_spread": 2 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/pile_mars_sand.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/pile_mars_sand.json new file mode 100644 index 000000000..3453d126b --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/pile_mars_sand.json @@ -0,0 +1,57 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:randomized_int_state_provider", + "property": "layers", + "values": { + "type": "minecraft:biased_to_bottom", + "value": { + "min_inclusive": 1, + "max_inclusive": 2 + } + }, + "source": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "tfg:pile/mars_sand" + } + } + } + } + }, + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:has_sturdy_face", + "offset": [ + 0, + -1, + 0 + ], + "direction": "up" + } + } + ] + }, + "tries": 16, + "xz_spread": 16, + "y_spread": 2 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/pile_red_sand.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/pile_red_sand.json new file mode 100644 index 000000000..f3c1886a7 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/pile_red_sand.json @@ -0,0 +1,57 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:randomized_int_state_provider", + "property": "layers", + "values": { + "type": "minecraft:biased_to_bottom", + "value": { + "min_inclusive": 1, + "max_inclusive": 2 + } + }, + "source": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "tfg:pile/red_sand" + } + } + } + } + }, + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:has_sturdy_face", + "offset": [ + 0, + -1, + 0 + ], + "direction": "up" + } + } + ] + }, + "tries": 8, + "xz_spread": 16, + "y_spread": 2 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/pile_venus_sand.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/pile_venus_sand.json new file mode 100644 index 000000000..c8e501240 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/pile_venus_sand.json @@ -0,0 +1,57 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:randomized_int_state_provider", + "property": "layers", + "values": { + "type": "minecraft:biased_to_bottom", + "value": { + "min_inclusive": 1, + "max_inclusive": 2 + } + }, + "source": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "tfg:pile/venus_sand" + } + } + } + } + }, + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:has_sturdy_face", + "offset": [ + 0, + -1, + 0 + ], + "direction": "up" + } + } + ] + }, + "tries": 16, + "xz_spread": 16, + "y_spread": 2 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/pitcher_plant.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/pitcher_plant.json index 058c49e57..a650f7a23 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/pitcher_plant.json +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/pitcher_plant.json @@ -61,8 +61,8 @@ } ] }, - "tries": 8, - "xz_spread": 16, - "y_spread": 2 + "tries": 16, + "xz_spread": 6, + "y_spread": 1 } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/rotten_flesh_patch.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/rotten_flesh_patch.json new file mode 100644 index 000000000..900577909 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/rotten_flesh_patch.json @@ -0,0 +1,51 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "tfc:groundcover/bone" + }, + "weight": 20 + }, + { + "data": { + "Name": "tfc:groundcover/rotten_flesh" + }, + "weight": 80 + } + ] + } + } + }, + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + { + "type": "minecraft:matching_block_tag", + "offset": [ 0, -1, 0 ], + "tag": "ad_astra:mars_stone_replaceables" + } + ] + } + } + ] + }, + "tries": 8, + "xz_spread": 4, + "y_spread": 2 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/charger.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/charger.json new file mode 100644 index 000000000..a550e8198 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/charger.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:randomized_int_state_provider", + "property": "rotation", + "values": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 0, + "max_inclusive": 15 + } + }, + "source": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "wan_ancient_beasts:charger_skull" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/crusher.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/crusher.json new file mode 100644 index 000000000..2bd27ecc1 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/crusher.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:randomized_int_state_provider", + "property": "rotation", + "values": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 0, + "max_inclusive": 15 + } + }, + "source": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "wan_ancient_beasts:crusher_skull" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/eater.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/eater.json new file mode 100644 index 000000000..dad211431 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/eater.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:randomized_int_state_provider", + "property": "rotation", + "values": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 0, + "max_inclusive": 15 + } + }, + "source": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "wan_ancient_beasts:eater_skull" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/glider.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/glider.json new file mode 100644 index 000000000..1677e2538 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/glider.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:randomized_int_state_provider", + "property": "rotation", + "values": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 0, + "max_inclusive": 15 + } + }, + "source": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "wan_ancient_beasts:glider_skull" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/sniffer.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/sniffer.json new file mode 100644 index 000000000..a37afa288 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/sniffer.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:randomized_int_state_provider", + "property": "rotation", + "values": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 0, + "max_inclusive": 15 + } + }, + "source": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "wan_ancient_beasts:sniffer_skull" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/soarer.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/soarer.json new file mode 100644 index 000000000..94c12da11 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/soarer.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:randomized_int_state_provider", + "property": "rotation", + "values": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 0, + "max_inclusive": 15 + } + }, + "source": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "wan_ancient_beasts:soarer_skull" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/surfer.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/surfer.json new file mode 100644 index 000000000..99045c5f4 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/surfer.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:randomized_int_state_provider", + "property": "rotation", + "values": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 0, + "max_inclusive": 15 + } + }, + "source": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "wan_ancient_beasts:surfer_skull" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/tiny.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/tiny.json new file mode 100644 index 000000000..800f2b41c --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/tiny.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:randomized_int_state_provider", + "property": "rotation", + "values": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 0, + "max_inclusive": 15 + } + }, + "source": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "endermanoverhaul:tiny_skull" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/walker.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/walker.json new file mode 100644 index 000000000..a794d4fb5 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/skulls/walker.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:randomized_int_state_provider", + "property": "rotation", + "values": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 0, + "max_inclusive": 15 + } + }, + "source": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "wan_ancient_beasts:walker_skull" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/small_amaranita_mushroom.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/small_amaranita_mushroom.json index 61bae0e72..8224982e9 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/small_amaranita_mushroom.json +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/small_amaranita_mushroom.json @@ -35,6 +35,6 @@ }, "tries": 8, "xz_spread": 10, - "y_spread": 3 + "y_spread": 2 } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/small_skull.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/small_skull.json new file mode 100644 index 000000000..f413a15cf --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/small_skull.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:simple_random_selector", + "config": { + "features": [ + { + "feature": "tfg:mars/surface/skulls/crusher", + "placement": [] + }, + { + "feature": "tfg:mars/surface/skulls/glider", + "placement": [] + }, + { + "feature": "tfg:mars/surface/skulls/soarer", + "placement": [] + }, + { + "feature": "tfg:mars/surface/skulls/surfer", + "placement": [] + }, + { + "feature": "tfg:mars/surface/skulls/tiny", + "placement": [] + } + ] + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/torchflower.json b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/torchflower.json index 4c58a4854..a976b59b8 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/mars/surface/torchflower.json +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/surface/torchflower.json @@ -33,8 +33,8 @@ } ] }, - "tries": 8, - "xz_spread": 16, - "y_spread": 2 + "tries": 16, + "xz_spread": 6, + "y_spread": 1 } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/basalt_delta.json b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/basalt_delta.json new file mode 100644 index 000000000..8d32ba38b --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/basalt_delta.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:delta_feature", + "config": { + "contents": { + "Name": "tfc:rock/cobble/basalt_slab" + }, + "rim": { + "Name": "tfc:rock/hardened/basalt" + }, + "rim_size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 3, + "min_inclusive": 1 + } + }, + "size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 7, + "min_inclusive": 3 + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/basalt_rivulet.json b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/basalt_rivulet.json new file mode 100644 index 000000000..452475577 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/basalt_rivulet.json @@ -0,0 +1,6 @@ +{ + "type": "tfc:rivulet", + "config": { + "state": "tfc:rock/cobble/basalt" + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/clay_disc.json b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/clay_disc.json new file mode 100644 index 000000000..0ea0d966e --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/clay_disc.json @@ -0,0 +1,53 @@ +{ + "type": "tfc:if_then", + "config": { + "if": { + "feature": { + "type": "tfc:soil_disc", + "config": { + "min_radius": 3, + "max_radius": 5, + "height": 3, + "states": [ + { + "replace": "tfg:grass/mars_dirt", + "with": "tfg:grass/mars_clay_dirt" + }, + { + "replace": "tfg:grass/amber_mycelium", + "with": { + "Name": "tfg:grass/amber_clay_mycelium", + "Properties": { + "snowy": "false" + } + } + }, + { + "replace": "tfg:grass/rusticus_mycelium", + "with": { + "Name": "tfg:grass/rusticus_clay_mycelium", + "Properties": { + "snowy": "false" + } + } + }, + { + "replace": "tfg:grass/sangnum_mycelium", + "with": { + "Name": "tfg:grass/sangnum_clay_mycelium", + "Properties": { + "snowy": "false" + } + } + } + ] + } + }, + "placement": [] + }, + "then": { + "feature": "tfg:mars/surface/pitcher_plant", + "placement": [] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/empty_fissure.json b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/empty_fissure.json new file mode 100644 index 000000000..691512e47 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/empty_fissure.json @@ -0,0 +1,9 @@ +{ + "type": "tfc:fissure", + "config": { + "wall_state": "create:scorchia", + "fluid_state": "minecraft:air", + "count": 1, + "radius": 6 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/empty_rivulet.json b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/empty_rivulet.json new file mode 100644 index 000000000..7d6530c2f --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/empty_rivulet.json @@ -0,0 +1,6 @@ +{ + "type": "tfc:rivulet", + "config": { + "state": "create:scorchia" + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/gabbro_delta.json b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/gabbro_delta.json new file mode 100644 index 000000000..cd6155b18 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/gabbro_delta.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:delta_feature", + "config": { + "contents": { + "Name": "tfc:rock/cobble/gabbro_slab" + }, + "rim": { + "Name": "tfc:rock/hardened/gabbro" + }, + "rim_size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 3, + "min_inclusive": 1 + } + }, + "size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 7, + "min_inclusive": 3 + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/kaolin_clay_disc.json b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/kaolin_clay_disc.json new file mode 100644 index 000000000..90b0db7be --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/kaolin_clay_disc.json @@ -0,0 +1,53 @@ +{ + "type": "tfc:if_then", + "config": { + "if": { + "feature": { + "type": "tfc:soil_disc", + "config": { + "min_radius": 7, + "max_radius": 9, + "height": 6, + "states": [ + { + "replace": "tfg:grass/mars_dirt", + "with": "tfc:red_kaolin_clay" + }, + { + "replace": "tfg:grass/amber_mycelium", + "with": { + "Name": "tfg:grass/amber_kaolin_mycelium", + "Properties": { + "snowy": "false" + } + } + }, + { + "replace": "tfg:grass/rusticus_mycelium", + "with": { + "Name": "tfg:grass/rusticus_kaolin_mycelium", + "Properties": { + "snowy": "false" + } + } + }, + { + "replace": "tfg:grass/sangnum_mycelium", + "with": { + "Name": "tfg:grass/sangnum_kaolin_mycelium", + "Properties": { + "snowy": "false" + } + } + } + ] + } + }, + "placement": [] + }, + "then": { + "feature": "tfg:mars/surface/torchflower", + "placement": [] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/magma_rivulet.json b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/magma_rivulet.json new file mode 100644 index 000000000..d98126bb3 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/magma_rivulet.json @@ -0,0 +1,6 @@ +{ + "type": "tfc:rivulet", + "config": { + "state": "tfc:rock/magma/basalt" + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/peat_disc.json b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/peat_disc.json new file mode 100644 index 000000000..e0371073a --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/peat_disc.json @@ -0,0 +1,26 @@ +{ + "type": "tfc:soil_disc", + "config": { + "min_radius": 5, + "max_radius": 9, + "height": 7, + "states": [ + { + "replace": "tfg:grass/mars_dirt", + "with": "tfc:peat" + }, + { + "replace": "tfg:grass/amber_mycelium", + "with": "tfc:peat" + }, + { + "replace": "tfg:grass/rusticus_mycelium", + "with": "tfc:peat" + }, + { + "replace": "tfg:grass/sangnum_mycelium", + "with": "tfc:peat" + } + ] + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/red_granite_delta.json b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/red_granite_delta.json new file mode 100644 index 000000000..631597a6a --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/red_granite_delta.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:delta_feature", + "config": { + "contents": { + "Name": "gtceu:red_granite_cobblestone" + }, + "rim": { + "Name": "tfg:rock/hardened_red_granite" + }, + "rim_size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 3, + "min_inclusive": 1 + } + }, + "size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 7, + "min_inclusive": 3 + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/red_quicksand.json b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/red_quicksand.json new file mode 100644 index 000000000..34758d489 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/red_quicksand.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "tfc:soil_disc", + "config": { + "min_radius": 2, + "max_radius": 3, + "height": 2, + "states": [ + { + "replace": "minecraft:red_sand", + "with": "wan_ancient_beasts:quick_red_sand" + }, + { + "replace": "ad_astra:mars_sand", + "with": "wan_ancient_beasts:quick_red_sand" + } + ] + } + }, + "placement": [] + }, + "tries": 8, + "xz_spread": 8, + "y_spread": 2 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/spice_disc.json b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/spice_disc.json new file mode 100644 index 000000000..e21c9ad7a --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/spice_disc.json @@ -0,0 +1,74 @@ +{ + "type": "tfc:if_then", + "config": { + "if": { + "feature": { + "type": "tfc:soil_disc", + "config": { + "min_radius": 2, + "max_radius": 3, + "height": 4, + "states": [ + { + "replace": "minecraft:red_sand", + "with": "tfg:spice" + }, + { + "replace": "ad_astra:mars_sand", + "with": "tfg:spice" + } + ] + } + }, + "placement": [] + }, + "then": { + "feature": { + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "tfg:spice" + } + } + } + }, + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:red_sand" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "ad_astra:mars_sand" + } + ] + } + } + ] + }, + "tries": 32, + "xz_spread": 8, + "y_spread": 2 + } + }, + "placement": [ + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/venus_sand_disc.json b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/venus_sand_disc.json new file mode 100644 index 000000000..b9de460d1 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/venus_sand_disc.json @@ -0,0 +1,38 @@ +{ + "type": "tfc:soil_disc", + "config": { + "min_radius": 4, + "max_radius": 7, + "height": 2, + "states": [ + { + "replace": "tfg:grass/mars_dirt", + "with": "ad_astra:venus_sand" + }, + { + "replace": "tfg:grass/amber_mycelium", + "with": "ad_astra:venus_sand" + }, + { + "replace": "tfg:grass/rusticus_mycelium", + "with": "ad_astra:venus_sand" + }, + { + "replace": "tfg:grass/sangnum_mycelium", + "with": "ad_astra:venus_sand" + }, + { + "replace": "gtceu:red_granite", + "with": "ad_astra:venus_sand" + }, + { + "replace": "tfc:rock/raw/basalt", + "with": "ad_astra:venus_sand" + }, + { + "replace": "tfc:rock/raw/gabbro", + "with": "ad_astra:venus_sand" + } + ] + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/water_fissure.json b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/water_fissure.json new file mode 100644 index 000000000..ebcb34b40 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/water_fissure.json @@ -0,0 +1,9 @@ +{ + "type": "tfc:fissure", + "config": { + "wall_state": "create:scorchia", + "fluid_state": "tfg:fluid/semiheavy_ammoniacal_water", + "count": 1, + "radius": 6 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/underground/cave_spike.json b/kubejs/data/tfg/worldgen/configured_feature/mars/underground/cave_spike.json new file mode 100644 index 000000000..f7663894b --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/underground/cave_spike.json @@ -0,0 +1,4 @@ +{ + "type": "tfc:cave_spike", + "config": {} +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/underground/loose_rocks.json b/kubejs/data/tfg/worldgen/configured_feature/mars/underground/loose_rocks.json new file mode 100644 index 000000000..d61b9d3ca --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/underground/loose_rocks.json @@ -0,0 +1,4 @@ +{ + "type": "tfc:loose_rock", + "config": {} +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/underground/ochrum_blob.json b/kubejs/data/tfg/worldgen/configured_feature/mars/underground/ochrum_blob.json new file mode 100644 index 000000000..cf33edd51 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/underground/ochrum_blob.json @@ -0,0 +1,45 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 40, + "targets": [ + { + "state": { + "Name": "create:ochrum" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "forge:stone" + } + }, + { + "state": { + "Name": "create:ochrum" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "forge:gravel" + } + }, + { + "state": { + "Name": "create:ochrum" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "tfc:dirt" + } + }, + { + "state": { + "Name": "create:ochrum" + }, + "target": { + "predicate_type": "minecraft:block_match", + "block": "ad_astra:venus_sand" + } + } + ] + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/deep_mars_chromite.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/deep_mars_chromite.json new file mode 100644 index 000000000..7beb0d99c --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/deep_mars_chromite.json @@ -0,0 +1,219 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 60, + "rarity": 370, + "density": 0.3, + "min_y": -20, + "max_y": 0, + "random_name": "deep_mars_chromite", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_redstone_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_redstone_block", + "weight": 1 + }, + { + "block": "gtceu:mars_stone_ruby_ore", + "weight": 35 + }, + { + "block": "gtceu:mars_stone_chromite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_redstone_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_redstone_block", + "weight": 1 + }, + { + "block": "gtceu:shale_ruby_ore", + "weight": 35 + }, + { + "block": "gtceu:shale_chromite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_redstone_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_redstone_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_ruby_ore", + "weight": 35 + }, + { + "block": "gtceu:claystone_chromite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_redstone_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_redstone_block", + "weight": 1 + }, + { + "block": "gtceu:limestone_ruby_ore", + "weight": 35 + }, + { + "block": "gtceu:limestone_chromite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_redstone_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_redstone_block", + "weight": 1 + }, + { + "block": "gtceu:chert_ruby_ore", + "weight": 35 + }, + { + "block": "gtceu:chert_chromite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_redstone_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_redstone_block", + "weight": 1 + }, + { + "block": "gtceu:chalk_ruby_ore", + "weight": 35 + }, + { + "block": "gtceu:chalk_chromite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt", + "minecraft:basalt" + ], + "with": [ + { + "block": "gtceu:basalt_redstone_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_redstone_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_ruby_ore", + "weight": 35 + }, + { + "block": "gtceu:basalt_chromite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_redstone_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_redstone_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_ruby_ore", + "weight": 35 + }, + { + "block": "gtceu:dacite_chromite_ore", + "weight": 20 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:redstone_indicator", + "weight": 45 + }, + { + "block": "gtceu:ruby_bud_indicator", + "weight": 35 + }, + { + "block": "firmalife:ore/small_chromite", + "weight": 20 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/deep_mars_pitchblende.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/deep_mars_pitchblende.json new file mode 100644 index 000000000..fd2d9a311 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/deep_mars_pitchblende.json @@ -0,0 +1,195 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 60, + "rarity": 370, + "density": 0.3, + "min_y": -20, + "max_y": 0, + "random_name": "deep_mars_pitchblende", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:mars_stone_thorium_ore", + "weight": 25 + }, + { + "block": "gtceu:mars_stone_uraninite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "ad_astra:venus_stone" + ], + "with": [ + { + "block": "gtceu:venus_stone_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:venus_stone_thorium_ore", + "weight": 25 + }, + { + "block": "gtceu:venus_stone_uraninite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_thorium_ore", + "weight": 25 + }, + { + "block": "gtceu:diorite_uraninite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_thorium_ore", + "weight": 25 + }, + { + "block": "gtceu:gabbro_uraninite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:shale_thorium_ore", + "weight": 25 + }, + { + "block": "gtceu:shale_uraninite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_thorium_ore", + "weight": 25 + }, + { + "block": "gtceu:claystone_uraninite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_thorium_ore", + "weight": 25 + }, + { + "block": "gtceu:dacite_uraninite_ore", + "weight": 20 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:pitchblende_indicator", + "weight": 50 + }, + { + "block": "gtceu:thorium_indicator", + "weight": 25 + }, + { + "block": "gtceu:uraninite_indicator", + "weight": 20 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/deep_mars_sheldonite.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/deep_mars_sheldonite.json new file mode 100644 index 000000000..e7448f9e8 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/deep_mars_sheldonite.json @@ -0,0 +1,282 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 60, + "rarity": 370, + "density": 0.3, + "min_y": -20, + "max_y": 0, + "random_name": "deep_mars_sheldonite", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_bornite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bornite_block", + "weight": 1 + }, + { + "block": "gtceu:mars_stone_cooperite_ore", + "weight": 25 + }, + { + "block": "gtceu:mars_stone_nickel_ore", + "weight": 25 + }, + { + "block": "gtceu:mars_stone_platinum_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "ad_astra:venus_stone" + ], + "with": [ + { + "block": "gtceu:venus_stone_bornite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bornite_block", + "weight": 1 + }, + { + "block": "gtceu:venus_stone_cooperite_ore", + "weight": 25 + }, + { + "block": "gtceu:venus_stone_nickel_ore", + "weight": 25 + }, + { + "block": "gtceu:venus_stone_platinum_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "gtceu:red_granite" + ], + "with": [ + { + "block": "gtceu:red_granite_bornite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bornite_block", + "weight": 1 + }, + { + "block": "gtceu:red_granite_cooperite_ore", + "weight": 25 + }, + { + "block": "gtceu:red_granite_nickel_ore", + "weight": 25 + }, + { + "block": "gtceu:red_granite_platinum_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_bornite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bornite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_cooperite_ore", + "weight": 25 + }, + { + "block": "gtceu:diorite_nickel_ore", + "weight": 25 + }, + { + "block": "gtceu:diorite_platinum_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_bornite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bornite_block", + "weight": 1 + }, + { + "block": "gtceu:conglomerate_cooperite_ore", + "weight": 25 + }, + { + "block": "gtceu:conglomerate_nickel_ore", + "weight": 25 + }, + { + "block": "gtceu:conglomerate_platinum_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_bornite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bornite_block", + "weight": 1 + }, + { + "block": "gtceu:chert_cooperite_ore", + "weight": 25 + }, + { + "block": "gtceu:chert_nickel_ore", + "weight": 25 + }, + { + "block": "gtceu:chert_platinum_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_bornite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bornite_block", + "weight": 1 + }, + { + "block": "gtceu:chalk_cooperite_ore", + "weight": 25 + }, + { + "block": "gtceu:chalk_nickel_ore", + "weight": 25 + }, + { + "block": "gtceu:chalk_platinum_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt", + "minecraft:basalt" + ], + "with": [ + { + "block": "gtceu:basalt_bornite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bornite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_cooperite_ore", + "weight": 25 + }, + { + "block": "gtceu:basalt_nickel_ore", + "weight": 25 + }, + { + "block": "gtceu:basalt_platinum_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_bornite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bornite_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_cooperite_ore", + "weight": 25 + }, + { + "block": "gtceu:dacite_nickel_ore", + "weight": 25 + }, + { + "block": "gtceu:dacite_platinum_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:bornite_indicator", + "weight": 35 + }, + { + "block": "gtceu:cooperite_indicator", + "weight": 25 + }, + { + "block": "tfc:ore/small_garnierite", + "weight": 25 + }, + { + "block": "gtceu:platinum_indicator", + "weight": 15 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_almandine.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_almandine.json new file mode 100644 index 000000000..eb3c187ee --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_almandine.json @@ -0,0 +1,353 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:disc_vein", + "config": { + "height": 8, + "size": 65, + "rarity": 280, + "density": 0.35, + "min_y": 0, + "max_y": 70, + "random_name": "mars_almandine", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_almandine_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_almandine_block", + "weight": 1 + }, + { + "block": "gtceu:mars_stone_pyrope_ore", + "weight": 25 + }, + { + "block": "gtceu:mars_stone_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:mars_stone_green_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:mars_stone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "ad_astra:venus_stone" + ], + "with": [ + { + "block": "gtceu:venus_stone_almandine_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_almandine_block", + "weight": 1 + }, + { + "block": "gtceu:venus_stone_pyrope_ore", + "weight": 25 + }, + { + "block": "gtceu:venus_stone_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:venus_stone_green_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:venus_stone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "gtceu:red_granite" + ], + "with": [ + { + "block": "gtceu:red_granite_almandine_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_almandine_block", + "weight": 1 + }, + { + "block": "gtceu:red_granite_pyrope_ore", + "weight": 25 + }, + { + "block": "gtceu:red_granite_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:red_granite_green_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:red_granite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_almandine_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_almandine_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_pyrope_ore", + "weight": 25 + }, + { + "block": "gtceu:diorite_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:diorite_green_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:diorite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_almandine_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_almandine_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_pyrope_ore", + "weight": 25 + }, + { + "block": "gtceu:gabbro_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:gabbro_green_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:gabbro_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_almandine_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_almandine_block", + "weight": 1 + }, + { + "block": "gtceu:shale_pyrope_ore", + "weight": 25 + }, + { + "block": "gtceu:shale_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:shale_green_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:shale_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_almandine_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_almandine_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_pyrope_ore", + "weight": 25 + }, + { + "block": "gtceu:claystone_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:claystone_green_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:claystone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_almandine_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_almandine_block", + "weight": 1 + }, + { + "block": "gtceu:limestone_pyrope_ore", + "weight": 25 + }, + { + "block": "gtceu:limestone_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:limestone_green_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:limestone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_almandine_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_almandine_block", + "weight": 1 + }, + { + "block": "gtceu:dolomite_pyrope_ore", + "weight": 25 + }, + { + "block": "gtceu:dolomite_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:dolomite_green_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:dolomite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_almandine_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_almandine_block", + "weight": 1 + }, + { + "block": "gtceu:chert_pyrope_ore", + "weight": 25 + }, + { + "block": "gtceu:chert_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:chert_green_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:chert_hematite_ore", + "weight": 5 + } + ] + } + ], + "indicator": { + "rarity": 20, + "depth": 15, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:almandine_bud_indicator", + "weight": 35 + }, + { + "block": "gtceu:pyrope_bud_indicator", + "weight": 25 + }, + { + "block": "gtceu:sapphire_bud_indicator", + "weight": 15 + }, + { + "block": "gtceu:green_sapphire_bud_indicator", + "weight": 15 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 5 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_apatite.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_apatite.json new file mode 100644 index 000000000..0f27dfdff --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_apatite.json @@ -0,0 +1,309 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 45, + "rarity": 220, + "density": 0.25, + "min_y": 0, + "max_y": 70, + "random_name": "mars_apatite", + "blocks": [ + { + "replace": [ + "ad_astra:venus_stone" + ], + "with": [ + { + "block": "gtceu:venus_stone_apatite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_apatite_block", + "weight": 1 + }, + { + "block": "gtceu:venus_stone_tricalcium_phosphate_ore", + "weight": 35 + }, + { + "block": "gtceu:venus_stone_pyrochlore_ore", + "weight": 15 + }, + { + "block": "gtceu:venus_stone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "gtceu:red_granite" + ], + "with": [ + { + "block": "gtceu:red_granite_apatite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_apatite_block", + "weight": 1 + }, + { + "block": "gtceu:red_granite_tricalcium_phosphate_ore", + "weight": 35 + }, + { + "block": "gtceu:red_granite_pyrochlore_ore", + "weight": 15 + }, + { + "block": "gtceu:red_granite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_apatite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_apatite_block", + "weight": 1 + }, + { + "block": "gtceu:shale_tricalcium_phosphate_ore", + "weight": 35 + }, + { + "block": "gtceu:shale_pyrochlore_ore", + "weight": 15 + }, + { + "block": "gtceu:shale_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_apatite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_apatite_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_tricalcium_phosphate_ore", + "weight": 35 + }, + { + "block": "gtceu:claystone_pyrochlore_ore", + "weight": 15 + }, + { + "block": "gtceu:claystone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_apatite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_apatite_block", + "weight": 1 + }, + { + "block": "gtceu:limestone_tricalcium_phosphate_ore", + "weight": 35 + }, + { + "block": "gtceu:limestone_pyrochlore_ore", + "weight": 15 + }, + { + "block": "gtceu:limestone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_apatite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_apatite_block", + "weight": 1 + }, + { + "block": "gtceu:conglomerate_tricalcium_phosphate_ore", + "weight": 35 + }, + { + "block": "gtceu:conglomerate_pyrochlore_ore", + "weight": 15 + }, + { + "block": "gtceu:conglomerate_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_apatite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_apatite_block", + "weight": 1 + }, + { + "block": "gtceu:chert_tricalcium_phosphate_ore", + "weight": 35 + }, + { + "block": "gtceu:chert_pyrochlore_ore", + "weight": 15 + }, + { + "block": "gtceu:chert_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_apatite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_apatite_block", + "weight": 1 + }, + { + "block": "gtceu:chalk_tricalcium_phosphate_ore", + "weight": 35 + }, + { + "block": "gtceu:chalk_pyrochlore_ore", + "weight": 15 + }, + { + "block": "gtceu:chalk_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt", + "minecraft:basalt" + ], + "with": [ + { + "block": "gtceu:basalt_apatite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_apatite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_tricalcium_phosphate_ore", + "weight": 35 + }, + { + "block": "gtceu:basalt_pyrochlore_ore", + "weight": 15 + }, + { + "block": "gtceu:basalt_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_apatite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_apatite_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_tricalcium_phosphate_ore", + "weight": 35 + }, + { + "block": "gtceu:dacite_pyrochlore_ore", + "weight": 15 + }, + { + "block": "gtceu:dacite_hematite_ore", + "weight": 5 + } + ] + } + ], + "indicator": { + "rarity": 20, + "depth": 15, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:apatite_bud_indicator", + "weight": 50 + }, + { + "block": "gtceu:tricalcium_phosphate_indicator", + "weight": 35 + }, + { + "block": "gtceu:pyrochlore_indicator", + "weight": 15 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 5 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_beryllium.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_beryllium.json new file mode 100644 index 000000000..9a875c38c --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_beryllium.json @@ -0,0 +1,117 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:pipe_vein", + "config": { + "height": 40, + "radius": 8, + "min_skew": 6, + "max_skew": 18, + "min_slant": 0, + "max_slant": 4, + "sign": 0, + "rarity": 350, + "density": 0.35, + "min_y": -20, + "max_y": 50, + "random_name": "mars_beryllium", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "gtceu:rhyolite_beryllium_ore", + "weight": 35 + }, + { + "block": "gtceu:rhyolite_emerald_ore", + "weight": 50 + }, + { + "block": "gtceu:rhyolite_realgar_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt", + "minecraft:basalt" + ], + "with": [ + { + "block": "gtceu:basalt_beryllium_ore", + "weight": 35 + }, + { + "block": "gtceu:basalt_emerald_ore", + "weight": 50 + }, + { + "block": "gtceu:basalt_realgar_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "gtceu:andesite_beryllium_ore", + "weight": 35 + }, + { + "block": "gtceu:andesite_emerald_ore", + "weight": 50 + }, + { + "block": "gtceu:andesite_realgar_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_beryllium_ore", + "weight": 35 + }, + { + "block": "gtceu:dacite_emerald_ore", + "weight": 50 + }, + { + "block": "gtceu:dacite_realgar_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 20, + "depth": 15, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:beryllium_indicator", + "weight": 35 + }, + { + "block": "gtceu:emerald_bud_indicator", + "weight": 50 + }, + { + "block": "gtceu:realgar_bud_indicator", + "weight": 15 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_coal.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_coal.json new file mode 100644 index 000000000..30ad22d9c --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_coal.json @@ -0,0 +1,244 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 55, + "rarity": 215, + "density": 0.6, + "min_y": 0, + "max_y": 70, + "random_name": "mars_coal", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_coal_ore", + "weight": 70 + }, + { + "block": "gtceu:raw_coal_block", + "weight": 1 + }, + { + "block": "gtceu:mars_stone_hematite_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "ad_astra:venus_stone" + ], + "with": [ + { + "block": "gtceu:venus_stone_coal_ore", + "weight": 70 + }, + { + "block": "gtceu:raw_coal_block", + "weight": 1 + }, + { + "block": "gtceu:venus_stone_hematite_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "gtceu:red_granite" + ], + "with": [ + { + "block": "gtceu:red_granite_coal_ore", + "weight": 70 + }, + { + "block": "gtceu:raw_coal_block", + "weight": 1 + }, + { + "block": "gtceu:red_granite_hematite_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_coal_ore", + "weight": 70 + }, + { + "block": "gtceu:raw_coal_block", + "weight": 1 + }, + { + "block": "gtceu:granite_hematite_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_coal_ore", + "weight": 70 + }, + { + "block": "gtceu:raw_coal_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_hematite_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_coal_ore", + "weight": 70 + }, + { + "block": "gtceu:raw_coal_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_hematite_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_coal_ore", + "weight": 70 + }, + { + "block": "gtceu:raw_coal_block", + "weight": 1 + }, + { + "block": "gtceu:conglomerate_hematite_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_coal_ore", + "weight": 70 + }, + { + "block": "gtceu:raw_coal_block", + "weight": 1 + }, + { + "block": "gtceu:dolomite_hematite_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_coal_ore", + "weight": 70 + }, + { + "block": "gtceu:raw_coal_block", + "weight": 1 + }, + { + "block": "gtceu:chalk_hematite_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt", + "minecraft:basalt" + ], + "with": [ + { + "block": "gtceu:basalt_coal_ore", + "weight": 70 + }, + { + "block": "gtceu:raw_coal_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_hematite_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_coal_ore", + "weight": 70 + }, + { + "block": "gtceu:raw_coal_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_hematite_ore", + "weight": 30 + } + ] + } + ], + "indicator": { + "rarity": 20, + "depth": 10, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "tfc:ore/small_hematite", + "weight": 30 + }, + { + "block": "gtceu:coal_indicator", + "weight": 65 + }, + { + "block": "gtceu:coal_bud_indicator", + "weight": 5 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_copper.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_copper.json new file mode 100644 index 000000000..de69bcc25 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_copper.json @@ -0,0 +1,282 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 50, + "rarity": 220, + "density": 0.4, + "min_y": 0, + "max_y": 70, + "random_name": "mars_copper", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_chalcopyrite_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_chalcopyrite_block", + "weight": 1 + }, + { + "block": "gtceu:mars_stone_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:mars_stone_pyrite_ore", + "weight": 10 + }, + { + "block": "gtceu:mars_stone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "ad_astra:venus_stone" + ], + "with": [ + { + "block": "gtceu:venus_stone_chalcopyrite_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_chalcopyrite_block", + "weight": 1 + }, + { + "block": "gtceu:venus_stone_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:venus_stone_pyrite_ore", + "weight": 10 + }, + { + "block": "gtceu:venus_stone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_chalcopyrite_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_chalcopyrite_block", + "weight": 1 + }, + { + "block": "gtceu:shale_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:shale_pyrite_ore", + "weight": 10 + }, + { + "block": "gtceu:shale_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_chalcopyrite_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_chalcopyrite_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:claystone_pyrite_ore", + "weight": 10 + }, + { + "block": "gtceu:claystone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_chalcopyrite_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_chalcopyrite_block", + "weight": 1 + }, + { + "block": "gtceu:limestone_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:limestone_pyrite_ore", + "weight": 10 + }, + { + "block": "gtceu:limestone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_chalcopyrite_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_chalcopyrite_block", + "weight": 1 + }, + { + "block": "gtceu:conglomerate_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:conglomerate_pyrite_ore", + "weight": 10 + }, + { + "block": "gtceu:conglomerate_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_chalcopyrite_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_chalcopyrite_block", + "weight": 1 + }, + { + "block": "gtceu:dolomite_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:dolomite_pyrite_ore", + "weight": 10 + }, + { + "block": "gtceu:dolomite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt", + "minecraft:basalt" + ], + "with": [ + { + "block": "gtceu:basalt_chalcopyrite_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_chalcopyrite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:basalt_pyrite_ore", + "weight": 10 + }, + { + "block": "gtceu:basalt_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_chalcopyrite_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_chalcopyrite_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:dacite_pyrite_ore", + "weight": 10 + }, + { + "block": "gtceu:dacite_hematite_ore", + "weight": 5 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 40, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:chalcopyrite_indicator", + "weight": 65 + }, + { + "block": "tfc:ore/small_native_copper", + "weight": 20 + }, + { + "block": "gtceu:pyrite_indicator", + "weight": 10 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 5 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_galena.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_galena.json new file mode 100644 index 000000000..7bc89f609 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_galena.json @@ -0,0 +1,309 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 50, + "rarity": 215, + "density": 0.4, + "min_y": 0, + "max_y": 70, + "random_name": "mars_galena", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_galena_block", + "weight": 1 + }, + { + "block": "gtceu:mars_stone_silver_ore", + "weight": 15 + }, + { + "block": "gtceu:mars_stone_lead_ore", + "weight": 25 + }, + { + "block": "gtceu:mars_stone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "gtceu:red_granite" + ], + "with": [ + { + "block": "gtceu:red_granite_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_galena_block", + "weight": 1 + }, + { + "block": "gtceu:red_granite_silver_ore", + "weight": 15 + }, + { + "block": "gtceu:red_granite_lead_ore", + "weight": 25 + }, + { + "block": "gtceu:red_granite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_galena_block", + "weight": 1 + }, + { + "block": "gtceu:granite_silver_ore", + "weight": 15 + }, + { + "block": "gtceu:granite_lead_ore", + "weight": 25 + }, + { + "block": "gtceu:granite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_galena_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_silver_ore", + "weight": 15 + }, + { + "block": "gtceu:gabbro_lead_ore", + "weight": 25 + }, + { + "block": "gtceu:gabbro_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_galena_block", + "weight": 1 + }, + { + "block": "gtceu:shale_silver_ore", + "weight": 15 + }, + { + "block": "gtceu:shale_lead_ore", + "weight": 25 + }, + { + "block": "gtceu:shale_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_galena_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_silver_ore", + "weight": 15 + }, + { + "block": "gtceu:claystone_lead_ore", + "weight": 25 + }, + { + "block": "gtceu:claystone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_galena_block", + "weight": 1 + }, + { + "block": "gtceu:chert_silver_ore", + "weight": 15 + }, + { + "block": "gtceu:chert_lead_ore", + "weight": 25 + }, + { + "block": "gtceu:chert_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_galena_block", + "weight": 1 + }, + { + "block": "gtceu:chalk_silver_ore", + "weight": 15 + }, + { + "block": "gtceu:chalk_lead_ore", + "weight": 25 + }, + { + "block": "gtceu:chalk_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt", + "minecraft:basalt" + ], + "with": [ + { + "block": "gtceu:basalt_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_galena_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_silver_ore", + "weight": 15 + }, + { + "block": "gtceu:basalt_lead_ore", + "weight": 25 + }, + { + "block": "gtceu:basalt_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_galena_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_silver_ore", + "weight": 15 + }, + { + "block": "gtceu:dacite_lead_ore", + "weight": 25 + }, + { + "block": "gtceu:dacite_hematite_ore", + "weight": 5 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 40, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:galena_indicator", + "weight": 30 + }, + { + "block": "tfc:ore/small_native_silver", + "weight": 15 + }, + { + "block": "gtceu:lead_indicator", + "weight": 25 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 5 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_hematite.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_hematite.json index 9caaf4d83..9a97b5a72 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_hematite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_hematite.json @@ -5,8 +5,8 @@ "size": 40, "rarity": 210, "density": 0.4, - "min_y": -16, - "max_y": 100, + "min_y": 0, + "max_y": 70, "random_name": "mars_hematite", "blocks": [ { @@ -16,26 +16,23 @@ "with": [ { "block": "gtceu:mars_stone_hematite_ore", - "weight": 100 + "weight": 50 }, { "block": "gtceu:raw_hematite_block", "weight": 1 - } - ] - }, - { - "replace": [ - "ad_astra:venus_stone" - ], - "with": [ - { - "block": "gtceu:venus_stone_hematite_ore", - "weight": 100 }, { - "block": "gtceu:raw_hematite_block", - "weight": 1 + "block": "gtceu:mars_stone_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:mars_stone_goethite_ore", + "weight": 15 + }, + { + "block": "gtceu:mars_stone_gold_ore", + "weight": 5 } ] }, @@ -46,71 +43,23 @@ "with": [ { "block": "gtceu:red_granite_hematite_ore", - "weight": 100 + "weight": 50 }, { "block": "gtceu:raw_hematite_block", "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_hematite_ore", - "weight": 100 }, { - "block": "gtceu:raw_hematite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_hematite_ore", - "weight": 100 + "block": "gtceu:red_granite_yellow_limonite_ore", + "weight": 30 }, { - "block": "gtceu:raw_hematite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_hematite_ore", - "weight": 100 + "block": "gtceu:red_granite_goethite_ore", + "weight": 15 }, { - "block": "gtceu:raw_hematite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/shale" - ], - "with": [ - { - "block": "gtceu:shale_hematite_ore", - "weight": 100 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 + "block": "gtceu:red_granite_gold_ore", + "weight": 5 } ] }, @@ -121,11 +70,23 @@ "with": [ { "block": "gtceu:claystone_hematite_ore", - "weight": 100 + "weight": 50 }, { "block": "gtceu:raw_hematite_block", "weight": 1 + }, + { + "block": "gtceu:claystone_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:claystone_goethite_ore", + "weight": 15 + }, + { + "block": "gtceu:claystone_gold_ore", + "weight": 5 } ] }, @@ -136,11 +97,23 @@ "with": [ { "block": "gtceu:limestone_hematite_ore", - "weight": 100 + "weight": 50 }, { "block": "gtceu:raw_hematite_block", "weight": 1 + }, + { + "block": "gtceu:limestone_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:limestone_goethite_ore", + "weight": 15 + }, + { + "block": "gtceu:limestone_gold_ore", + "weight": 5 } ] }, @@ -151,11 +124,23 @@ "with": [ { "block": "gtceu:conglomerate_hematite_ore", - "weight": 100 + "weight": 50 }, { "block": "gtceu:raw_hematite_block", "weight": 1 + }, + { + "block": "gtceu:conglomerate_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:conglomerate_goethite_ore", + "weight": 15 + }, + { + "block": "gtceu:conglomerate_gold_ore", + "weight": 5 } ] }, @@ -166,41 +151,23 @@ "with": [ { "block": "gtceu:dolomite_hematite_ore", - "weight": 100 + "weight": 50 }, { "block": "gtceu:raw_hematite_block", "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chert" - ], - "with": [ - { - "block": "gtceu:chert_hematite_ore", - "weight": 100 }, { - "block": "gtceu:raw_hematite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chalk" - ], - "with": [ - { - "block": "gtceu:chalk_hematite_ore", - "weight": 100 + "block": "gtceu:dolomite_yellow_limonite_ore", + "weight": 30 }, { - "block": "gtceu:raw_hematite_block", - "weight": 1 + "block": "gtceu:dolomite_goethite_ore", + "weight": 15 + }, + { + "block": "gtceu:dolomite_gold_ore", + "weight": 5 } ] }, @@ -212,11 +179,23 @@ "with": [ { "block": "gtceu:basalt_hematite_ore", - "weight": 100 + "weight": 50 }, { "block": "gtceu:raw_hematite_block", "weight": 1 + }, + { + "block": "gtceu:basalt_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:basalt_goethite_ore", + "weight": 15 + }, + { + "block": "gtceu:basalt_gold_ore", + "weight": 5 } ] }, @@ -227,24 +206,48 @@ "with": [ { "block": "gtceu:dacite_hematite_ore", - "weight": 100 + "weight": 50 }, { "block": "gtceu:raw_hematite_block", "weight": 1 + }, + { + "block": "gtceu:dacite_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:dacite_goethite_ore", + "weight": 15 + }, + { + "block": "gtceu:dacite_gold_ore", + "weight": 5 } ] } ], "indicator": { - "rarity": 12, - "depth": 50, + "rarity": 15, + "depth": 30, "underground_rarity": 40, "underground_count": 200, "blocks": [ { "block": "tfc:ore/small_hematite", - "weight": 100 + "weight": 50 + }, + { + "block": "tfc:ore/small_limonite", + "weight": 30 + }, + { + "block": "gtceu:goethite_indicator", + "weight": 15 + }, + { + "block": "tfc:ore/small_native_gold", + "weight": 5 } ] } diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_lubricant.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_lubricant.json new file mode 100644 index 000000000..7036fa547 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_lubricant.json @@ -0,0 +1,352 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 30, + "rarity": 220, + "density": 0.25, + "min_y": 0, + "max_y": 70, + "random_name": "mars_lubricant", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_soapstone_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_soapstone_block", + "weight": 1 + }, + { + "block": "gtceu:mars_stone_talc_ore", + "weight": 20 + }, + { + "block": "gtceu:mars_stone_glauconite_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:mars_stone_pentlandite_ore", + "weight": 15 + }, + { + "block": "gtceu:mars_stone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "gtceu:red_granite" + ], + "with": [ + { + "block": "gtceu:red_granite_soapstone_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_soapstone_block", + "weight": 1 + }, + { + "block": "gtceu:red_granite_talc_ore", + "weight": 20 + }, + { + "block": "gtceu:red_granite_glauconite_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:red_granite_pentlandite_ore", + "weight": 15 + }, + { + "block": "gtceu:red_granite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_soapstone_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_soapstone_block", + "weight": 1 + }, + { + "block": "gtceu:granite_talc_ore", + "weight": 20 + }, + { + "block": "gtceu:granite_glauconite_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:granite_pentlandite_ore", + "weight": 15 + }, + { + "block": "gtceu:granite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_soapstone_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_soapstone_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_talc_ore", + "weight": 20 + }, + { + "block": "gtceu:diorite_glauconite_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:diorite_pentlandite_ore", + "weight": 15 + }, + { + "block": "gtceu:diorite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_soapstone_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_soapstone_block", + "weight": 1 + }, + { + "block": "gtceu:shale_talc_ore", + "weight": 20 + }, + { + "block": "gtceu:shale_glauconite_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:shale_pentlandite_ore", + "weight": 15 + }, + { + "block": "gtceu:shale_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_soapstone_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_soapstone_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_talc_ore", + "weight": 20 + }, + { + "block": "gtceu:claystone_glauconite_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:claystone_pentlandite_ore", + "weight": 15 + }, + { + "block": "gtceu:claystone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_soapstone_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_soapstone_block", + "weight": 1 + }, + { + "block": "gtceu:limestone_talc_ore", + "weight": 20 + }, + { + "block": "gtceu:limestone_glauconite_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:limestone_pentlandite_ore", + "weight": 15 + }, + { + "block": "gtceu:limestone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_soapstone_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_soapstone_block", + "weight": 1 + }, + { + "block": "gtceu:conglomerate_talc_ore", + "weight": 20 + }, + { + "block": "gtceu:conglomerate_glauconite_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:conglomerate_pentlandite_ore", + "weight": 15 + }, + { + "block": "gtceu:conglomerate_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_soapstone_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_soapstone_block", + "weight": 1 + }, + { + "block": "gtceu:dolomite_talc_ore", + "weight": 20 + }, + { + "block": "gtceu:dolomite_glauconite_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:dolomite_pentlandite_ore", + "weight": 15 + }, + { + "block": "gtceu:dolomite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_soapstone_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_soapstone_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_talc_ore", + "weight": 20 + }, + { + "block": "gtceu:dacite_glauconite_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:dacite_pentlandite_ore", + "weight": 15 + }, + { + "block": "gtceu:dacite_hematite_ore", + "weight": 5 + } + ] + } + ], + "indicator": { + "rarity": 20, + "depth": 15, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:soapstone_indicator", + "weight": 30 + }, + { + "block": "gtceu:talc_indicator", + "weight": 20 + }, + { + "block": "gtceu:glauconite_sand_indicator", + "weight": 25 + }, + { + "block": "gtceu:pentlandite_indicator", + "weight": 15 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 5 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_neodynium.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_neodynium.json new file mode 100644 index 000000000..892218d01 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_neodynium.json @@ -0,0 +1,255 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 45, + "rarity": 215, + "density": 0.4, + "min_y": 0, + "max_y": 70, + "random_name": "mars_neodynium", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_bastnasite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_bastnasite_block", + "weight": 1 + }, + { + "block": "gtceu:mars_stone_monazite_ore", + "weight": 25 + }, + { + "block": "gtceu:mars_stone_neodymium_ore", + "weight": 5 + }, + { + "block": "gtceu:mars_stone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "ad_astra:venus_stone" + ], + "with": [ + { + "block": "gtceu:venus_stone_bastnasite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_bastnasite_block", + "weight": 1 + }, + { + "block": "gtceu:venus_stone_monazite_ore", + "weight": 25 + }, + { + "block": "gtceu:venus_stone_neodymium_ore", + "weight": 5 + }, + { + "block": "gtceu:venus_stone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_bastnasite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_bastnasite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_monazite_ore", + "weight": 25 + }, + { + "block": "gtceu:diorite_neodymium_ore", + "weight": 5 + }, + { + "block": "gtceu:diorite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_bastnasite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_bastnasite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_monazite_ore", + "weight": 25 + }, + { + "block": "gtceu:gabbro_neodymium_ore", + "weight": 5 + }, + { + "block": "gtceu:gabbro_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_bastnasite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_bastnasite_block", + "weight": 1 + }, + { + "block": "gtceu:dolomite_monazite_ore", + "weight": 25 + }, + { + "block": "gtceu:dolomite_neodymium_ore", + "weight": 5 + }, + { + "block": "gtceu:dolomite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_bastnasite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_bastnasite_block", + "weight": 1 + }, + { + "block": "gtceu:chert_monazite_ore", + "weight": 25 + }, + { + "block": "gtceu:chert_neodymium_ore", + "weight": 5 + }, + { + "block": "gtceu:chert_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_bastnasite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_bastnasite_block", + "weight": 1 + }, + { + "block": "gtceu:chalk_monazite_ore", + "weight": 25 + }, + { + "block": "gtceu:chalk_neodymium_ore", + "weight": 5 + }, + { + "block": "gtceu:chalk_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt", + "minecraft:basalt" + ], + "with": [ + { + "block": "gtceu:basalt_bastnasite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_bastnasite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_monazite_ore", + "weight": 25 + }, + { + "block": "gtceu:basalt_neodymium_ore", + "weight": 5 + }, + { + "block": "gtceu:basalt_hematite_ore", + "weight": 5 + } + ] + } + ], + "indicator": { + "rarity": 20, + "depth": 15, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:bastnasite_indicator", + "weight": 50 + }, + { + "block": "gtceu:monazite_bud_indicator", + "weight": 25 + }, + { + "block": "gtceu:neodymium_indicator", + "weight": 5 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 5 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_nickel.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_nickel.json new file mode 100644 index 000000000..6cbda752e --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_nickel.json @@ -0,0 +1,282 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 55, + "rarity": 250, + "density": 0.4, + "min_y": 0, + "max_y": 70, + "random_name": "mars_nickel", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_garnierite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_garnierite_block", + "weight": 1 + }, + { + "block": "gtceu:mars_stone_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:mars_stone_cobaltite_ore", + "weight": 20 + }, + { + "block": "gtceu:mars_stone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "gtceu:red_granite" + ], + "with": [ + { + "block": "gtceu:red_granite_garnierite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_garnierite_block", + "weight": 1 + }, + { + "block": "gtceu:red_granite_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:red_granite_cobaltite_ore", + "weight": 20 + }, + { + "block": "gtceu:red_granite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_garnierite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_garnierite_block", + "weight": 1 + }, + { + "block": "gtceu:granite_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:granite_cobaltite_ore", + "weight": 20 + }, + { + "block": "gtceu:granite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_garnierite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_garnierite_block", + "weight": 1 + }, + { + "block": "gtceu:shale_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:shale_cobaltite_ore", + "weight": 20 + }, + { + "block": "gtceu:shale_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_garnierite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_garnierite_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:claystone_cobaltite_ore", + "weight": 20 + }, + { + "block": "gtceu:claystone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_garnierite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_garnierite_block", + "weight": 1 + }, + { + "block": "gtceu:limestone_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:limestone_cobaltite_ore", + "weight": 20 + }, + { + "block": "gtceu:limestone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_garnierite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_garnierite_block", + "weight": 1 + }, + { + "block": "gtceu:chalk_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:chalk_cobaltite_ore", + "weight": 20 + }, + { + "block": "gtceu:chalk_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt", + "minecraft:basalt" + ], + "with": [ + { + "block": "gtceu:basalt_garnierite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_garnierite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:basalt_cobaltite_ore", + "weight": 20 + }, + { + "block": "gtceu:basalt_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_garnierite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_garnierite_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:dacite_cobaltite_ore", + "weight": 20 + }, + { + "block": "gtceu:dacite_hematite_ore", + "weight": 5 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 40, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "tfc:ore/small_garnierite", + "weight": 55 + }, + { + "block": "gtceu:cobaltite_indicator", + "weight": 20 + }, + { + "block": "gtceu:pentlandite_indicator", + "weight": 10 + }, + { + "block": "gtceu:cobalt_indicator", + "weight": 15 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_pitchblende.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_pitchblende.json new file mode 100644 index 000000000..274bffe05 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_pitchblende.json @@ -0,0 +1,241 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 20, + "rarity": 220, + "density": 0.55, + "min_y": 0, + "max_y": 70, + "random_name": "mars_pitchblende", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_pitchblende_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:mars_stone_thorium_ore", + "weight": 25 + }, + { + "block": "gtceu:mars_stone_hematite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "ad_astra:venus_stone" + ], + "with": [ + { + "block": "gtceu:venus_stone_pitchblende_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:venus_stone_thorium_ore", + "weight": 25 + }, + { + "block": "gtceu:venus_stone_hematite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "gtceu:red_granite" + ], + "with": [ + { + "block": "gtceu:red_granite_pitchblende_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:red_granite_thorium_ore", + "weight": 25 + }, + { + "block": "gtceu:red_granite_hematite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_pitchblende_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_thorium_ore", + "weight": 25 + }, + { + "block": "gtceu:diorite_hematite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_pitchblende_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_thorium_ore", + "weight": 25 + }, + { + "block": "gtceu:gabbro_hematite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_pitchblende_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:shale_thorium_ore", + "weight": 25 + }, + { + "block": "gtceu:shale_hematite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_pitchblende_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:conglomerate_thorium_ore", + "weight": 25 + }, + { + "block": "gtceu:conglomerate_hematite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_pitchblende_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:dolomite_thorium_ore", + "weight": 25 + }, + { + "block": "gtceu:dolomite_hematite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_pitchblende_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_thorium_ore", + "weight": 25 + }, + { + "block": "gtceu:dacite_hematite_ore", + "weight": 25 + } + ] + } + ], + "indicator": { + "rarity": 20, + "depth": 15, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:pitchblende_indicator", + "weight": 35 + }, + { + "block": "gtceu:thorium_indicator", + "weight": 25 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 25 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_quartzite.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_quartzite.json new file mode 100644 index 000000000..d140902b0 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_quartzite.json @@ -0,0 +1,281 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 40, + "rarity": 210, + "density": 0.3, + "min_y": 0, + "max_y": 70, + "random_name": "mars_quartzite", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_quartzite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_quartzite_block", + "weight": 1 + }, + { + "block": "gtceu:mars_stone_barite_ore", + "weight": 30 + }, + { + "block": "gtceu:mars_stone_asbestos_ore", + "weight": 15 + }, + { + "block": "gtceu:mars_stone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "ad_astra:venus_stone" + ], + "with": [ + { + "block": "gtceu:venus_stone_quartzite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_quartzite_block", + "weight": 1 + }, + { + "block": "gtceu:venus_stone_barite_ore", + "weight": 30 + }, + { + "block": "gtceu:venus_stone_asbestos_ore", + "weight": 15 + }, + { + "block": "gtceu:venus_stone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "gtceu:red_granite" + ], + "with": [ + { + "block": "gtceu:red_granite_quartzite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_quartzite_block", + "weight": 1 + }, + { + "block": "gtceu:red_granite_barite_ore", + "weight": 30 + }, + { + "block": "gtceu:red_granite_asbestos_ore", + "weight": 15 + }, + { + "block": "gtceu:red_granite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_quartzite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_quartzite_block", + "weight": 1 + }, + { + "block": "gtceu:granite_barite_ore", + "weight": 30 + }, + { + "block": "gtceu:granite_asbestos_ore", + "weight": 15 + }, + { + "block": "gtceu:granite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_quartzite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_quartzite_block", + "weight": 1 + }, + { + "block": "gtceu:shale_barite_ore", + "weight": 30 + }, + { + "block": "gtceu:shale_asbestos_ore", + "weight": 15 + }, + { + "block": "gtceu:shale_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_quartzite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_quartzite_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_barite_ore", + "weight": 30 + }, + { + "block": "gtceu:claystone_asbestos_ore", + "weight": 15 + }, + { + "block": "gtceu:claystone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_quartzite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_quartzite_block", + "weight": 1 + }, + { + "block": "gtceu:limestone_barite_ore", + "weight": 30 + }, + { + "block": "gtceu:limestone_asbestos_ore", + "weight": 15 + }, + { + "block": "gtceu:limestone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_quartzite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_quartzite_block", + "weight": 1 + }, + { + "block": "gtceu:chert_barite_ore", + "weight": 30 + }, + { + "block": "gtceu:chert_asbestos_ore", + "weight": 15 + }, + { + "block": "gtceu:chert_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_quartzite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_quartzite_block", + "weight": 1 + }, + { + "block": "gtceu:chalk_barite_ore", + "weight": 30 + }, + { + "block": "gtceu:chalk_asbestos_ore", + "weight": 15 + }, + { + "block": "gtceu:chalk_hematite_ore", + "weight": 5 + } + ] + } + ], + "indicator": { + "rarity": 20, + "depth": 15, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:quartzite_bud_indicator", + "weight": 35 + }, + { + "block": "gtceu:barite_indicator", + "weight": 30 + }, + { + "block": "gtceu:asbestos_indicator", + "weight": 15 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 5 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_salt.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_salt.json new file mode 100644 index 000000000..7df225aa6 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_salt.json @@ -0,0 +1,282 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:disc_vein", + "config": { + "height": 6, + "size": 40, + "rarity": 210, + "density": 0.4, + "min_y": 0, + "max_y": 70, + "random_name": "mars_salt", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_rock_salt_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_rock_salt_block", + "weight": 1 + }, + { + "block": "gtceu:mars_stone_salt_ore", + "weight": 30 + }, + { + "block": "gtceu:mars_stone_lepidolite_ore", + "weight": 15 + }, + { + "block": "gtceu:mars_stone_spodumene_ore", + "weight": 35 + } + ] + }, + { + "replace": [ + "ad_astra:venus_stone" + ], + "with": [ + { + "block": "gtceu:venus_stone_rock_salt_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_rock_salt_block", + "weight": 1 + }, + { + "block": "gtceu:venus_stone_salt_ore", + "weight": 30 + }, + { + "block": "gtceu:venus_stone_lepidolite_ore", + "weight": 15 + }, + { + "block": "gtceu:venus_stone_spodumene_ore", + "weight": 35 + } + ] + }, + { + "replace": [ + "gtceu:red_granite" + ], + "with": [ + { + "block": "gtceu:red_granite_rock_salt_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_rock_salt_block", + "weight": 1 + }, + { + "block": "gtceu:red_granite_salt_ore", + "weight": 30 + }, + { + "block": "gtceu:red_granite_lepidolite_ore", + "weight": 15 + }, + { + "block": "gtceu:red_granite_spodumene_ore", + "weight": 35 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_rock_salt_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_rock_salt_block", + "weight": 1 + }, + { + "block": "gtceu:granite_salt_ore", + "weight": 30 + }, + { + "block": "gtceu:granite_lepidolite_ore", + "weight": 15 + }, + { + "block": "gtceu:granite_spodumene_ore", + "weight": 35 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_rock_salt_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_rock_salt_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_salt_ore", + "weight": 30 + }, + { + "block": "gtceu:diorite_lepidolite_ore", + "weight": 15 + }, + { + "block": "gtceu:diorite_spodumene_ore", + "weight": 35 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_rock_salt_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_rock_salt_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_salt_ore", + "weight": 30 + }, + { + "block": "gtceu:claystone_lepidolite_ore", + "weight": 15 + }, + { + "block": "gtceu:claystone_spodumene_ore", + "weight": 35 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_rock_salt_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_rock_salt_block", + "weight": 1 + }, + { + "block": "gtceu:limestone_salt_ore", + "weight": 30 + }, + { + "block": "gtceu:limestone_lepidolite_ore", + "weight": 15 + }, + { + "block": "gtceu:limestone_spodumene_ore", + "weight": 35 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_rock_salt_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_rock_salt_block", + "weight": 1 + }, + { + "block": "gtceu:chert_salt_ore", + "weight": 30 + }, + { + "block": "gtceu:chert_lepidolite_ore", + "weight": 15 + }, + { + "block": "gtceu:chert_spodumene_ore", + "weight": 35 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_rock_salt_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_rock_salt_block", + "weight": 1 + }, + { + "block": "gtceu:chalk_salt_ore", + "weight": 30 + }, + { + "block": "gtceu:chalk_lepidolite_ore", + "weight": 15 + }, + { + "block": "gtceu:chalk_spodumene_ore", + "weight": 35 + } + ] + } + ], + "indicator": { + "rarity": 20, + "depth": 15, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:rock_salt_indicator", + "weight": 20 + }, + { + "block": "gtceu:salt_indicator", + "weight": 30 + }, + { + "block": "gtceu:lepidolite_indicator", + "weight": 15 + }, + { + "block": "gtceu:spodumene_indicator", + "weight": 35 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_sapphire.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_sapphire.json new file mode 100644 index 000000000..b1e2477ad --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_sapphire.json @@ -0,0 +1,227 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 40, + "rarity": 230, + "density": 0.4, + "min_y": 0, + "max_y": 70, + "random_name": "mars_sapphire", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_green_sapphire_ore", + "weight": 5 + }, + { + "block": "gtceu:granite_bauxite_ore", + "weight": 20 + }, + { + "block": "gtceu:granite_electrotine_ore", + "weight": 20 + }, + { + "block": "gtceu:granite_gold_ore", + "weight": 55 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_green_sapphire_ore", + "weight": 5 + }, + { + "block": "gtceu:diorite_bauxite_ore", + "weight": 20 + }, + { + "block": "gtceu:diorite_electrotine_ore", + "weight": 20 + }, + { + "block": "gtceu:diorite_gold_ore", + "weight": 55 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_green_sapphire_ore", + "weight": 5 + }, + { + "block": "gtceu:gabbro_bauxite_ore", + "weight": 20 + }, + { + "block": "gtceu:gabbro_electrotine_ore", + "weight": 20 + }, + { + "block": "gtceu:gabbro_gold_ore", + "weight": 55 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_green_sapphire_ore", + "weight": 5 + }, + { + "block": "gtceu:shale_bauxite_ore", + "weight": 20 + }, + { + "block": "gtceu:shale_electrotine_ore", + "weight": 20 + }, + { + "block": "gtceu:shale_gold_ore", + "weight": 55 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_green_sapphire_ore", + "weight": 5 + }, + { + "block": "gtceu:claystone_bauxite_ore", + "weight": 20 + }, + { + "block": "gtceu:claystone_electrotine_ore", + "weight": 20 + }, + { + "block": "gtceu:claystone_gold_ore", + "weight": 55 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_green_sapphire_ore", + "weight": 5 + }, + { + "block": "gtceu:chert_bauxite_ore", + "weight": 20 + }, + { + "block": "gtceu:chert_electrotine_ore", + "weight": 20 + }, + { + "block": "gtceu:chert_gold_ore", + "weight": 55 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_green_sapphire_ore", + "weight": 5 + }, + { + "block": "gtceu:chalk_bauxite_ore", + "weight": 20 + }, + { + "block": "gtceu:chalk_electrotine_ore", + "weight": 20 + }, + { + "block": "gtceu:chalk_gold_ore", + "weight": 55 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 20, + "depth": 15, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:green_sapphire_bud_indicator", + "weight": 5 + }, + { + "block": "gtceu:bauxite_indicator", + "weight": 20 + }, + { + "block": "gtceu:electrotine_indicator", + "weight": 20 + }, + { + "block": "tfc:ore/small_native_gold", + "weight": 55 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_stibnite.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_stibnite.json new file mode 100644 index 000000000..290fe3904 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_stibnite.json @@ -0,0 +1,336 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 40, + "rarity": 210, + "density": 0.4, + "min_y": 0, + "max_y": 70, + "random_name": "mars_stibnite", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:mars_stone_copper_ore", + "weight": 30 + }, + { + "block": "gtceu:mars_stone_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:mars_stone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "ad_astra:venus_stone" + ], + "with": [ + { + "block": "gtceu:venus_stone_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:venus_stone_copper_ore", + "weight": 30 + }, + { + "block": "gtceu:venus_stone_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:venus_stone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "gtceu:red_granite" + ], + "with": [ + { + "block": "gtceu:red_granite_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:red_granite_copper_ore", + "weight": 30 + }, + { + "block": "gtceu:red_granite_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:red_granite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_copper_ore", + "weight": 30 + }, + { + "block": "gtceu:diorite_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:diorite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_copper_ore", + "weight": 30 + }, + { + "block": "gtceu:gabbro_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:gabbro_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:shale_copper_ore", + "weight": 30 + }, + { + "block": "gtceu:shale_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:shale_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:dolomite_copper_ore", + "weight": 30 + }, + { + "block": "gtceu:dolomite_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:dolomite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:chert_copper_ore", + "weight": 30 + }, + { + "block": "gtceu:chert_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:chert_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:chalk_copper_ore", + "weight": 30 + }, + { + "block": "gtceu:chalk_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:chalk_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt", + "minecraft:basalt" + ], + "with": [ + { + "block": "gtceu:basalt_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_copper_ore", + "weight": 30 + }, + { + "block": "gtceu:basalt_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:basalt_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_copper_ore", + "weight": 30 + }, + { + "block": "gtceu:dacite_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:dacite_hematite_ore", + "weight": 5 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 40, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "tfc:ore/small_tetrahedrite", + "weight": 50 + }, + { + "block": "tfc:ore/small_native_copper", + "weight": 30 + }, + { + "block": "gtceu:stibnite_indicator", + "weight": 20 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 5 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_sulfur.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_sulfur.json new file mode 100644 index 000000000..84581a657 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_sulfur.json @@ -0,0 +1,246 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 45, + "rarity": 215, + "density": 0.2, + "min_y": 0, + "max_y": 70, + "random_name": "mars_sulfur", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_sulfur_ore", + "weight": 15 + }, + { + "block": "gtceu:mars_stone_pyrite_ore", + "weight": 45 + }, + { + "block": "gtceu:mars_stone_sphalerite_ore", + "weight": 25 + }, + { + "block": "gtceu:mars_stone_hematite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "ad_astra:venus_stone" + ], + "with": [ + { + "block": "gtceu:venus_stone_sulfur_ore", + "weight": 15 + }, + { + "block": "gtceu:venus_stone_pyrite_ore", + "weight": 45 + }, + { + "block": "gtceu:venus_stone_sphalerite_ore", + "weight": 25 + }, + { + "block": "gtceu:venus_stone_hematite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_sulfur_ore", + "weight": 15 + }, + { + "block": "gtceu:granite_pyrite_ore", + "weight": 45 + }, + { + "block": "gtceu:granite_sphalerite_ore", + "weight": 25 + }, + { + "block": "gtceu:granite_hematite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_sulfur_ore", + "weight": 15 + }, + { + "block": "gtceu:diorite_pyrite_ore", + "weight": 45 + }, + { + "block": "gtceu:diorite_sphalerite_ore", + "weight": 25 + }, + { + "block": "gtceu:diorite_hematite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_sulfur_ore", + "weight": 15 + }, + { + "block": "gtceu:gabbro_pyrite_ore", + "weight": 45 + }, + { + "block": "gtceu:gabbro_sphalerite_ore", + "weight": 25 + }, + { + "block": "gtceu:gabbro_hematite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_sulfur_ore", + "weight": 15 + }, + { + "block": "gtceu:chert_pyrite_ore", + "weight": 45 + }, + { + "block": "gtceu:chert_sphalerite_ore", + "weight": 25 + }, + { + "block": "gtceu:chert_hematite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_sulfur_ore", + "weight": 15 + }, + { + "block": "gtceu:chalk_pyrite_ore", + "weight": 45 + }, + { + "block": "gtceu:chalk_sphalerite_ore", + "weight": 25 + }, + { + "block": "gtceu:chalk_hematite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt", + "minecraft:basalt" + ], + "with": [ + { + "block": "gtceu:basalt_sulfur_ore", + "weight": 15 + }, + { + "block": "gtceu:basalt_pyrite_ore", + "weight": 45 + }, + { + "block": "gtceu:basalt_sphalerite_ore", + "weight": 25 + }, + { + "block": "gtceu:basalt_hematite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_sulfur_ore", + "weight": 15 + }, + { + "block": "gtceu:dacite_pyrite_ore", + "weight": 45 + }, + { + "block": "gtceu:dacite_sphalerite_ore", + "weight": 25 + }, + { + "block": "gtceu:dacite_hematite_ore", + "weight": 20 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 30, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:sulfur_indicator", + "weight": 15 + }, + { + "block": "gtceu:pyrite_indicator", + "weight": 45 + }, + { + "block": "tfc:ore/small_sphalerite", + "weight": 25 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 20 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_tantalite.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_tantalite.json new file mode 100644 index 000000000..c418e8388 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_tantalite.json @@ -0,0 +1,309 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 42, + "rarity": 230, + "density": 0.3, + "min_y": 0, + "max_y": 70, + "random_name": "mars_tantalite", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_grossular_block", + "weight": 1 + }, + { + "block": "gtceu:mars_stone_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:mars_stone_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:mars_stone_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "ad_astra:venus_stone" + ], + "with": [ + { + "block": "gtceu:venus_stone_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_grossular_block", + "weight": 1 + }, + { + "block": "gtceu:venus_stone_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:venus_stone_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:venus_stone_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "gtceu:red_granite" + ], + "with": [ + { + "block": "gtceu:red_granite_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_grossular_block", + "weight": 1 + }, + { + "block": "gtceu:red_granite_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:red_granite_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:red_granite_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_grossular_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:gabbro_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:gabbro_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_grossular_block", + "weight": 1 + }, + { + "block": "gtceu:shale_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:shale_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:shale_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_grossular_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:claystone_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:claystone_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_grossular_block", + "weight": 1 + }, + { + "block": "gtceu:limestone_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:limestone_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:limestone_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_grossular_block", + "weight": 1 + }, + { + "block": "gtceu:chert_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:chert_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:chert_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_grossular_block", + "weight": 1 + }, + { + "block": "gtceu:chalk_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:chalk_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:chalk_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt", + "minecraft:basalt" + ], + "with": [ + { + "block": "gtceu:basalt_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_grossular_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:basalt_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:basalt_tantalite_ore", + "weight": 10 + } + ] + } + ], + "indicator": { + "rarity": 20, + "depth": 15, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:grossular_bud_indicator", + "weight": 30 + }, + { + "block": "gtceu:spessartine_bud_indicator", + "weight": 20 + }, + { + "block": "gtceu:pyrolusite_indicator", + "weight": 20 + }, + { + "block": "gtceu:tantalite_indicator", + "weight": 10 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_tungsten.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_tungsten.json new file mode 100644 index 000000000..5304acc71 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_tungsten.json @@ -0,0 +1,255 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 50, + "rarity": 280, + "density": 0.45, + "min_y": 0, + "max_y": 70, + "random_name": "mars_tungsten", + "blocks": [ + { + "replace": [ + "gtceu:red_granite" + ], + "with": [ + { + "block": "gtceu:red_granite_scheelite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_scheelite_block", + "weight": 1 + }, + { + "block": "gtceu:red_granite_tungstate_ore", + "weight": 35 + }, + { + "block": "gtceu:red_granite_lithium_ore", + "weight": 20 + }, + { + "block": "gtceu:red_granite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_scheelite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_scheelite_block", + "weight": 1 + }, + { + "block": "gtceu:shale_tungstate_ore", + "weight": 35 + }, + { + "block": "gtceu:shale_lithium_ore", + "weight": 20 + }, + { + "block": "gtceu:shale_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_scheelite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_scheelite_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_tungstate_ore", + "weight": 35 + }, + { + "block": "gtceu:claystone_lithium_ore", + "weight": 20 + }, + { + "block": "gtceu:claystone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_scheelite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_scheelite_block", + "weight": 1 + }, + { + "block": "gtceu:limestone_tungstate_ore", + "weight": 35 + }, + { + "block": "gtceu:limestone_lithium_ore", + "weight": 20 + }, + { + "block": "gtceu:limestone_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_scheelite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_scheelite_block", + "weight": 1 + }, + { + "block": "gtceu:dolomite_tungstate_ore", + "weight": 35 + }, + { + "block": "gtceu:dolomite_lithium_ore", + "weight": 20 + }, + { + "block": "gtceu:dolomite_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_scheelite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_scheelite_block", + "weight": 1 + }, + { + "block": "gtceu:chert_tungstate_ore", + "weight": 35 + }, + { + "block": "gtceu:chert_lithium_ore", + "weight": 20 + }, + { + "block": "gtceu:chert_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_scheelite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_scheelite_block", + "weight": 1 + }, + { + "block": "gtceu:chalk_tungstate_ore", + "weight": 35 + }, + { + "block": "gtceu:chalk_lithium_ore", + "weight": 20 + }, + { + "block": "gtceu:chalk_hematite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt", + "minecraft:basalt" + ], + "with": [ + { + "block": "gtceu:basalt_scheelite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_scheelite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_tungstate_ore", + "weight": 35 + }, + { + "block": "gtceu:basalt_lithium_ore", + "weight": 20 + }, + { + "block": "gtceu:basalt_hematite_ore", + "weight": 5 + } + ] + } + ], + "indicator": { + "rarity": 20, + "depth": 15, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:scheelite_indicator", + "weight": 45 + }, + { + "block": "gtceu:tungstate_indicator", + "weight": 35 + }, + { + "block": "gtceu:lithium_indicator", + "weight": 20 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 5 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/surface_bismuthinite.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/surface_bismuthinite.json new file mode 100644 index 000000000..0530f6213 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/surface_bismuthinite.json @@ -0,0 +1,444 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 45, + "rarity": 140, + "density": 0.25, + "min_y": 80, + "max_y": 180, + "random_name": "surface_bismuthinite", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_bismuth_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_bismuth_block", + "weight": 1 + }, + { + "block": "gtceu:mars_stone_hematite_ore", + "weight": 10 + }, + { + "block": "gtceu:mars_stone_sulfur_ore", + "weight": 10 + }, + { + "block": "gtceu:mars_stone_gypsum_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "ad_astra:venus_stone" + ], + "with": [ + { + "block": "gtceu:venus_stone_bismuth_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_bismuth_block", + "weight": 1 + }, + { + "block": "gtceu:venus_stone_hematite_ore", + "weight": 10 + }, + { + "block": "gtceu:venus_stone_sulfur_ore", + "weight": 10 + }, + { + "block": "gtceu:venus_stone_gypsum_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "gtceu:red_granite" + ], + "with": [ + { + "block": "gtceu:red_granite_bismuth_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_bismuth_block", + "weight": 1 + }, + { + "block": "gtceu:red_granite_hematite_ore", + "weight": 10 + }, + { + "block": "gtceu:red_granite_sulfur_ore", + "weight": 10 + }, + { + "block": "gtceu:red_granite_gypsum_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_bismuth_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_bismuth_block", + "weight": 1 + }, + { + "block": "gtceu:granite_hematite_ore", + "weight": 10 + }, + { + "block": "gtceu:granite_sulfur_ore", + "weight": 10 + }, + { + "block": "gtceu:granite_gypsum_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_bismuth_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_bismuth_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_hematite_ore", + "weight": 10 + }, + { + "block": "gtceu:diorite_sulfur_ore", + "weight": 10 + }, + { + "block": "gtceu:diorite_gypsum_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_bismuth_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_bismuth_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_hematite_ore", + "weight": 10 + }, + { + "block": "gtceu:gabbro_sulfur_ore", + "weight": 10 + }, + { + "block": "gtceu:gabbro_gypsum_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_bismuth_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_bismuth_block", + "weight": 1 + }, + { + "block": "gtceu:shale_hematite_ore", + "weight": 10 + }, + { + "block": "gtceu:shale_sulfur_ore", + "weight": 10 + }, + { + "block": "gtceu:shale_gypsum_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_bismuth_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_bismuth_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_hematite_ore", + "weight": 10 + }, + { + "block": "gtceu:claystone_sulfur_ore", + "weight": 10 + }, + { + "block": "gtceu:claystone_gypsum_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_bismuth_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_bismuth_block", + "weight": 1 + }, + { + "block": "gtceu:limestone_hematite_ore", + "weight": 10 + }, + { + "block": "gtceu:limestone_sulfur_ore", + "weight": 10 + }, + { + "block": "gtceu:limestone_gypsum_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_bismuth_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_bismuth_block", + "weight": 1 + }, + { + "block": "gtceu:conglomerate_hematite_ore", + "weight": 10 + }, + { + "block": "gtceu:conglomerate_sulfur_ore", + "weight": 10 + }, + { + "block": "gtceu:conglomerate_gypsum_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_bismuth_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_bismuth_block", + "weight": 1 + }, + { + "block": "gtceu:dolomite_hematite_ore", + "weight": 10 + }, + { + "block": "gtceu:dolomite_sulfur_ore", + "weight": 10 + }, + { + "block": "gtceu:dolomite_gypsum_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_bismuth_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_bismuth_block", + "weight": 1 + }, + { + "block": "gtceu:chert_hematite_ore", + "weight": 10 + }, + { + "block": "gtceu:chert_sulfur_ore", + "weight": 10 + }, + { + "block": "gtceu:chert_gypsum_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_bismuth_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_bismuth_block", + "weight": 1 + }, + { + "block": "gtceu:chalk_hematite_ore", + "weight": 10 + }, + { + "block": "gtceu:chalk_sulfur_ore", + "weight": 10 + }, + { + "block": "gtceu:chalk_gypsum_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt", + "minecraft:basalt" + ], + "with": [ + { + "block": "gtceu:basalt_bismuth_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_bismuth_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_hematite_ore", + "weight": 10 + }, + { + "block": "gtceu:basalt_sulfur_ore", + "weight": 10 + }, + { + "block": "gtceu:basalt_gypsum_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_bismuth_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_bismuth_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_hematite_ore", + "weight": 10 + }, + { + "block": "gtceu:dacite_sulfur_ore", + "weight": 10 + }, + { + "block": "gtceu:dacite_gypsum_ore", + "weight": 10 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 40, + "underground_rarity": 1, + "underground_count": 1, + "blocks": [ + { + "block": "tfc:ore/small_bismuthinite", + "weight": 20 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 10 + }, + { + "block": "gtceu:sulfur_indicator", + "weight": 10 + }, + { + "block": "gtceu:gypsum_indicator", + "weight": 10 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/surface_cassiterite.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/surface_cassiterite.json new file mode 100644 index 000000000..4b92a5834 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/surface_cassiterite.json @@ -0,0 +1,380 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 45, + "rarity": 135, + "density": 0.25, + "min_y": 80, + "max_y": 180, + "random_name": "surface_cassiterite", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_cassiterite_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 1 + }, + { + "block": "gtceu:mars_stone_tin_ore", + "weight": 35 + }, + { + "block": "gtceu:mars_stone_saltpeter_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "ad_astra:venus_stone" + ], + "with": [ + { + "block": "gtceu:venus_stone_cassiterite_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 1 + }, + { + "block": "gtceu:venus_stone_tin_ore", + "weight": 35 + }, + { + "block": "gtceu:venus_stone_saltpeter_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "gtceu:red_granite" + ], + "with": [ + { + "block": "gtceu:red_granite_cassiterite_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 1 + }, + { + "block": "gtceu:red_granite_tin_ore", + "weight": 35 + }, + { + "block": "gtceu:red_granite_saltpeter_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_cassiterite_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 1 + }, + { + "block": "gtceu:granite_tin_ore", + "weight": 35 + }, + { + "block": "gtceu:granite_saltpeter_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_cassiterite_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_tin_ore", + "weight": 35 + }, + { + "block": "gtceu:diorite_saltpeter_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_cassiterite_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_tin_ore", + "weight": 35 + }, + { + "block": "gtceu:gabbro_saltpeter_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_cassiterite_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 1 + }, + { + "block": "gtceu:shale_tin_ore", + "weight": 35 + }, + { + "block": "gtceu:shale_saltpeter_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_cassiterite_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_tin_ore", + "weight": 35 + }, + { + "block": "gtceu:claystone_saltpeter_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_cassiterite_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 1 + }, + { + "block": "gtceu:limestone_tin_ore", + "weight": 35 + }, + { + "block": "gtceu:limestone_saltpeter_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_cassiterite_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 1 + }, + { + "block": "gtceu:conglomerate_tin_ore", + "weight": 35 + }, + { + "block": "gtceu:conglomerate_saltpeter_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_cassiterite_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 1 + }, + { + "block": "gtceu:dolomite_tin_ore", + "weight": 35 + }, + { + "block": "gtceu:dolomite_saltpeter_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_cassiterite_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 1 + }, + { + "block": "gtceu:chert_tin_ore", + "weight": 35 + }, + { + "block": "gtceu:chert_saltpeter_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_cassiterite_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 1 + }, + { + "block": "gtceu:chalk_tin_ore", + "weight": 35 + }, + { + "block": "gtceu:chalk_saltpeter_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt", + "minecraft:basalt" + ], + "with": [ + { + "block": "gtceu:basalt_cassiterite_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_tin_ore", + "weight": 35 + }, + { + "block": "gtceu:basalt_saltpeter_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_cassiterite_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_tin_ore", + "weight": 35 + }, + { + "block": "gtceu:dacite_saltpeter_ore", + "weight": 10 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 40, + "underground_rarity": 1, + "underground_count": 1, + "blocks": [ + { + "block": "tfc:ore/small_cassiterite", + "weight": 55 + }, + { + "block": "tfc:ore/small_cassiterite", + "weight": 35 + }, + { + "block": "gtceu:saltpeter_indicator", + "weight": 10 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/surface_hematite.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/surface_hematite.json new file mode 100644 index 000000000..97b401e42 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/surface_hematite.json @@ -0,0 +1,444 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 45, + "rarity": 140, + "density": 0.25, + "min_y": 80, + "max_y": 180, + "random_name": "surface_hematite", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_hematite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:mars_stone_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:mars_stone_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:mars_stone_calcite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "ad_astra:venus_stone" + ], + "with": [ + { + "block": "gtceu:venus_stone_hematite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:venus_stone_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:venus_stone_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:venus_stone_calcite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "gtceu:red_granite" + ], + "with": [ + { + "block": "gtceu:red_granite_hematite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:red_granite_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:red_granite_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:red_granite_calcite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_hematite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:granite_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:granite_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:granite_calcite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_hematite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:diorite_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:diorite_calcite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_hematite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:gabbro_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:gabbro_calcite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_hematite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:shale_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:shale_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:shale_calcite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_hematite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:claystone_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:claystone_calcite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_hematite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:limestone_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:limestone_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:limestone_calcite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_hematite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:conglomerate_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:conglomerate_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:conglomerate_calcite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_hematite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:dolomite_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:dolomite_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:dolomite_calcite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_hematite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:chert_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:chert_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:chert_calcite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_hematite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:chalk_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:chalk_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:chalk_calcite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt", + "minecraft:basalt" + ], + "with": [ + { + "block": "gtceu:basalt_hematite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:basalt_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:basalt_calcite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_hematite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:dacite_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:dacite_calcite_ore", + "weight": 5 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 40, + "underground_rarity": 1, + "underground_count": 1, + "blocks": [ + { + "block": "tfc:ore/small_hematite", + "weight": 50 + }, + { + "block": "tfc:ore/small_limonite", + "weight": 30 + }, + { + "block": "tfc:ore/small_native_gold", + "weight": 5 + }, + { + "block": "gtceu:calcite_indicator", + "weight": 5 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/surface_nickel_galena.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/surface_nickel_galena.json new file mode 100644 index 000000000..d8a771bda --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/surface_nickel_galena.json @@ -0,0 +1,448 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 45, + "rarity": 150, + "density": 0.25, + "min_y": 80, + "max_y": 180, + "random_name": "surface_nickel_galena", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_sphalerite_ore", + "weight": 15 + }, + { + "block": "gtceu:mars_stone_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:mars_stone_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:mars_stone_silver_ore", + "weight": 10 + }, + { + "block": "gtceu:mars_stone_cobaltite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "ad_astra:venus_stone" + ], + "with": [ + { + "block": "gtceu:venus_stone_sphalerite_ore", + "weight": 15 + }, + { + "block": "gtceu:venus_stone_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:venus_stone_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:venus_stone_silver_ore", + "weight": 10 + }, + { + "block": "gtceu:venus_stone_cobaltite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "gtceu:red_granite" + ], + "with": [ + { + "block": "gtceu:red_granite_sphalerite_ore", + "weight": 15 + }, + { + "block": "gtceu:red_granite_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:red_granite_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:red_granite_silver_ore", + "weight": 10 + }, + { + "block": "gtceu:red_granite_cobaltite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_sphalerite_ore", + "weight": 15 + }, + { + "block": "gtceu:granite_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:granite_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:granite_silver_ore", + "weight": 10 + }, + { + "block": "gtceu:granite_cobaltite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_sphalerite_ore", + "weight": 15 + }, + { + "block": "gtceu:diorite_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:diorite_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:diorite_silver_ore", + "weight": 10 + }, + { + "block": "gtceu:diorite_cobaltite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_sphalerite_ore", + "weight": 15 + }, + { + "block": "gtceu:gabbro_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:gabbro_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:gabbro_silver_ore", + "weight": 10 + }, + { + "block": "gtceu:gabbro_cobaltite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_sphalerite_ore", + "weight": 15 + }, + { + "block": "gtceu:shale_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:shale_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:shale_silver_ore", + "weight": 10 + }, + { + "block": "gtceu:shale_cobaltite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_sphalerite_ore", + "weight": 15 + }, + { + "block": "gtceu:claystone_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:claystone_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:claystone_silver_ore", + "weight": 10 + }, + { + "block": "gtceu:claystone_cobaltite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_sphalerite_ore", + "weight": 15 + }, + { + "block": "gtceu:limestone_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:limestone_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:limestone_silver_ore", + "weight": 10 + }, + { + "block": "gtceu:limestone_cobaltite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_sphalerite_ore", + "weight": 15 + }, + { + "block": "gtceu:conglomerate_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:conglomerate_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:conglomerate_silver_ore", + "weight": 10 + }, + { + "block": "gtceu:conglomerate_cobaltite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_sphalerite_ore", + "weight": 15 + }, + { + "block": "gtceu:dolomite_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:dolomite_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:dolomite_silver_ore", + "weight": 10 + }, + { + "block": "gtceu:dolomite_cobaltite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_sphalerite_ore", + "weight": 15 + }, + { + "block": "gtceu:chert_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:chert_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:chert_silver_ore", + "weight": 10 + }, + { + "block": "gtceu:chert_cobaltite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_sphalerite_ore", + "weight": 15 + }, + { + "block": "gtceu:chalk_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:chalk_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:chalk_silver_ore", + "weight": 10 + }, + { + "block": "gtceu:chalk_cobaltite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt", + "minecraft:basalt" + ], + "with": [ + { + "block": "gtceu:basalt_sphalerite_ore", + "weight": 15 + }, + { + "block": "gtceu:basalt_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:basalt_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:basalt_silver_ore", + "weight": 10 + }, + { + "block": "gtceu:basalt_cobaltite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_sphalerite_ore", + "weight": 15 + }, + { + "block": "gtceu:dacite_nickel_ore", + "weight": 20 + }, + { + "block": "gtceu:dacite_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:dacite_silver_ore", + "weight": 10 + }, + { + "block": "gtceu:dacite_cobaltite_ore", + "weight": 10 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 40, + "underground_rarity": 1, + "underground_count": 1, + "blocks": [ + { + "block": "tfc:ore/small_sphalerite", + "weight": 15 + }, + { + "block": "tfc:ore/small_garnierite", + "weight": 20 + }, + { + "block": "gtceu:galena_indicator", + "weight": 30 + }, + { + "block": "tfc:ore/small_native_silver", + "weight": 10 + }, + { + "block": "gtceu:cobaltite_indicator", + "weight": 10 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/surface_tetrahedrite.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/surface_tetrahedrite.json new file mode 100644 index 000000000..62d27f391 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/surface_tetrahedrite.json @@ -0,0 +1,444 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 45, + "rarity": 140, + "density": 0.25, + "min_y": 80, + "max_y": 180, + "random_name": "surface_tetrahedrite", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_tetrahedrite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:mars_stone_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:mars_stone_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:mars_stone_redstone_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "ad_astra:venus_stone" + ], + "with": [ + { + "block": "gtceu:venus_stone_tetrahedrite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:venus_stone_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:venus_stone_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:venus_stone_redstone_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "gtceu:red_granite" + ], + "with": [ + { + "block": "gtceu:red_granite_tetrahedrite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:red_granite_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:red_granite_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:red_granite_redstone_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_tetrahedrite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:granite_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:granite_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:granite_redstone_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_tetrahedrite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:diorite_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:diorite_redstone_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_tetrahedrite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:gabbro_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:gabbro_redstone_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_tetrahedrite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:shale_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:shale_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:shale_redstone_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_tetrahedrite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:claystone_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:claystone_redstone_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_tetrahedrite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:limestone_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:limestone_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:limestone_redstone_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_tetrahedrite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:conglomerate_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:conglomerate_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:conglomerate_redstone_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_tetrahedrite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:dolomite_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:dolomite_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:dolomite_redstone_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_tetrahedrite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:chert_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:chert_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:chert_redstone_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_tetrahedrite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:chalk_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:chalk_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:chalk_redstone_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt", + "minecraft:basalt" + ], + "with": [ + { + "block": "gtceu:basalt_tetrahedrite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:basalt_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:basalt_redstone_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_tetrahedrite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:dacite_stibnite_ore", + "weight": 20 + }, + { + "block": "gtceu:dacite_redstone_ore", + "weight": 5 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 40, + "underground_rarity": 1, + "underground_count": 1, + "blocks": [ + { + "block": "tfc:ore/small_tetrahedrite", + "weight": 60 + }, + { + "block": "tfc:ore/small_native_copper", + "weight": 20 + }, + { + "block": "gtceu:stibnite_indicator", + "weight": 20 + }, + { + "block": "gtceu:redstone_indicator", + "weight": 5 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_pitchblende.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_pitchblende.json index 4f13a1922..fa4622d4e 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_pitchblende.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_pitchblende.json @@ -24,11 +24,11 @@ }, { "block": "gtceu:granite_uraninite_ore", - "weight": 50 + "weight": 20 }, { - "block": "gtceu:raw_uraninite_block", - "weight": 1 + "block": "gtceu:granite_wulfenite_ore", + "weight": 10 } ] }, @@ -47,11 +47,11 @@ }, { "block": "gtceu:diorite_uraninite_ore", - "weight": 50 + "weight": 20 }, { - "block": "gtceu:raw_uraninite_block", - "weight": 1 + "block": "gtceu:diorite_wulfenite_ore", + "weight": 10 } ] }, @@ -70,11 +70,11 @@ }, { "block": "gtceu:gabbro_uraninite_ore", - "weight": 50 + "weight": 20 }, { - "block": "gtceu:raw_uraninite_block", - "weight": 1 + "block": "gtceu:gabbro_wulfenite_ore", + "weight": 10 } ] }, @@ -93,11 +93,11 @@ }, { "block": "gtceu:schist_uraninite_ore", - "weight": 50 + "weight": 20 }, { - "block": "gtceu:raw_uraninite_block", - "weight": 1 + "block": "gtceu:schist_wulfenite_ore", + "weight": 10 } ] }, @@ -116,11 +116,11 @@ }, { "block": "gtceu:gneiss_uraninite_ore", - "weight": 50 + "weight": 20 }, { - "block": "gtceu:raw_uraninite_block", - "weight": 1 + "block": "gtceu:gneiss_wulfenite_ore", + "weight": 10 } ] }, @@ -140,11 +140,11 @@ }, { "block": "gtceu:pyroxenite_uraninite_ore", - "weight": 50 + "weight": 20 }, { - "block": "gtceu:raw_uraninite_block", - "weight": 1 + "block": "gtceu:pyroxenite_wulfenite_ore", + "weight": 10 } ] } @@ -161,7 +161,11 @@ }, { "block": "gtceu:uraninite_indicator", - "weight": 50 + "weight": 20 + }, + { + "block": "gtceu:wulfenite_indicator", + "weight": 10 } ] } diff --git a/kubejs/data/tfg/worldgen/density_function/mars/offset.json b/kubejs/data/tfg/worldgen/density_function/mars/offset.json index ae811e131..bf9dbc399 100644 --- a/kubejs/data/tfg/worldgen/density_function/mars/offset.json +++ b/kubejs/data/tfg/worldgen/density_function/mars/offset.json @@ -122,11 +122,6 @@ { "derivative": 0.0, "location": -1.1, - "value": -0.4 - }, - { - "derivative": 0.0, - "location": -1.02, "value": 0.4 }, { @@ -153,11 +148,6 @@ "spline": { "coordinate": "tfg:mars/continents", "points": [ - { - "derivative": 0.0, - "location": -1.1, - "value": 0.2222 - }, { "derivative": 0.0, "location": -1.02, @@ -173,450 +163,6 @@ "location": -0.18, "value": 0.015 }, - { - "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, @@ -632,7 +178,7 @@ { "derivative": 0.38940096, "location": -1.0, - "value": -0.08880186 + "value": 0.1 }, { "derivative": 0.38940096, @@ -651,7 +197,7 @@ { "derivative": 0.37788022, "location": -1.0, - "value": -0.115760356 + "value": 0.2 }, { "derivative": 0.37788022, @@ -670,27 +216,27 @@ { "derivative": 0.0, "location": -1.0, - "value": -0.2222 + "value": 0.1 }, { "derivative": 0.0, "location": -0.75, - "value": -0.2222 + "value": 0.2 }, { "derivative": 0.0, "location": -0.65, - "value": 0.0 + "value": 0.01 }, { "derivative": 0.0, "location": 0.5954547, - "value": 2.9802322E-8 + "value": 0.05 }, { "derivative": 0.2534563, "location": 0.6054547, - "value": 2.9802322E-8 + "value": 0.75 }, { "derivative": 0.2534563, @@ -709,7 +255,7 @@ { "derivative": 0.5, "location": -1.0, - "value": -0.25 + "value": 0.15 }, { "derivative": 0.0, @@ -743,7 +289,7 @@ { "derivative": 0.5, "location": -1.0, - "value": -0.1 + "value": 0.1 }, { "derivative": 0.01, @@ -777,7 +323,7 @@ { "derivative": 0.5, "location": -1.0, - "value": -0.1 + "value": 0.1 }, { "derivative": 0.0, @@ -811,13 +357,265 @@ { "derivative": 0.0, "location": -1.0, - "value": -0.02 + "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.0, + "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.1 + }, + { + "derivative": 0.38940096, + "location": -0.1, + "value": 0.15 + }, + { + "derivative": 0, + "location": 0.0, + "value": -0.1 + }, + { + "derivative": 0.38940096, + "location": 0.1, + "value": 0.3 + }, + { + "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.2 + }, + { + "derivative": 0.37788022, + "location": -0.1, + "value": 0.11 + }, + { + "derivative": 0.37788022, + "location": 0.0, + "value": -0.05 + }, + { + "derivative": 0.37788022, + "location": 0.1, + "value": 0.3 + }, + { + "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.1 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": 0.2 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 0.05 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 0.75 + }, + { + "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.15 + }, + { + "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.0, + "location": 0.0, "value": -0.03 }, + { + "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.08 + }, + { + "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, @@ -858,7 +656,17 @@ }, { "derivative": 0.5138249, + "location": -0.1, + "value": 0.7161751 + }, + { + "derivative": 0, "location": 0.0, + "value": -0.1234 + }, + { + "derivative": 0.5138249, + "location": 0.1, "value": 0.7161751 }, { @@ -883,7 +691,7 @@ { "derivative": 0.43317974, "location": 0.0, - "value": 0.44682026 + "value": -0.044682026 }, { "derivative": 0.43317974, @@ -907,7 +715,7 @@ { "derivative": 0.3917051, "location": 0.0, - "value": 0.30829495 + "value": -0.30829495 }, { "derivative": 0.3917051, @@ -936,7 +744,7 @@ { "derivative": 0.0, "location": 0.0, - "value": 0.35 + "value": -0.35 }, { "derivative": 0.0, @@ -970,7 +778,7 @@ { "derivative": 0.07, "location": 0.0, - "value": 0.021 + "value": -0.021 }, { "derivative": 0.658, @@ -1004,7 +812,7 @@ { "derivative": 0.0, "location": 0.0, - "value": 0.01 + "value": -0.1 }, { "derivative": 0.04, @@ -1038,7 +846,7 @@ { "derivative": 0.0, "location": 0.0, - "value": 0.01 + "value": -0.1 }, { "derivative": 0.04, @@ -1083,7 +891,7 @@ { "derivative": 0.0, "location": 0.0, - "value": 0.01 + "value": -0.01 }, { "derivative": 0.04, @@ -1136,7 +944,7 @@ { "derivative": 0.0, "location": 0.0, - "value": 0.01 + "value": -0.01 }, { "derivative": 0.04, @@ -1178,7 +986,7 @@ { "derivative": 0.0, "location": 0.0, - "value": 0.01 + "value": -0.01 }, { "derivative": 0.04, @@ -1492,7 +1300,7 @@ { "derivative": 0.0, "location": 0.0, - "value": 0.17 + "value": -0.17 } ] } @@ -1545,7 +1353,7 @@ { "derivative": 0.0, "location": 0.0, - "value": 0.17 + "value": -0.17 } ] } @@ -1569,7 +1377,7 @@ { "derivative": 0.0, "location": 0.0, - "value": 0.05 + "value": -0.05 }, { "derivative": 0.04, @@ -1603,7 +1411,7 @@ { "derivative": 0.0, "location": 0.0, - "value": 0.1 + "value": -0.1 }, { "derivative": 0.04, diff --git a/kubejs/data/tfg/worldgen/density_function/mars/ridges.json b/kubejs/data/tfg/worldgen/density_function/mars/ridges.json index f4d6b4a5d..690c53d69 100644 --- a/kubejs/data/tfg/worldgen/density_function/mars/ridges.json +++ b/kubejs/data/tfg/worldgen/density_function/mars/ridges.json @@ -1,12 +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 + "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 + } +} diff --git a/kubejs/data/tfg/worldgen/density_function/mars/ridges_splined.json b/kubejs/data/tfg/worldgen/density_function/mars/ridges_splined.json new file mode 100644 index 000000000..89e0451e8 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/ridges_splined.json @@ -0,0 +1,43 @@ +{ + "type": "minecraft:mul", + "argument1": { + "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 + } + }, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "tfg:mars/continents", + "points": [ + { + "location": -1, + "derivative": 0, + "value": 0 + }, + { + "location": -0.12, + "derivative": 0, + "value": 0 + }, + { + "location": -0.10, + "derivative": 0, + "value": 1 + }, + { + "location": 1, + "derivative": 0, + "value": 1 + } + ] + } + } +} diff --git a/kubejs/data/tfg/worldgen/noise_settings/mars_noise.json b/kubejs/data/tfg/worldgen/noise_settings/mars_noise.json index fa4e04717..b8eaf3848 100644 --- a/kubejs/data/tfg/worldgen/noise_settings/mars_noise.json +++ b/kubejs/data/tfg/worldgen/noise_settings/mars_noise.json @@ -32,7 +32,7 @@ "points": [ { "derivative": 0.0, - "location": -0.18, + "location": -0.19, "value": -1 }, { @@ -111,12 +111,12 @@ "points": [ { "derivative": 0.0, - "location": -0.18, + "location": -0.12, "value": -1 }, { "derivative": 0.0, - "location": -0.17, + "location": -0.11, "value": 0 } ] @@ -137,12 +137,12 @@ "points": [ { "derivative": 0.0, - "location": -0.18, + "location": -0.12, "value": 0 }, { "derivative": 0.0, - "location": -0.17, + "location": -0.11, "value": 1 } ] @@ -225,12 +225,12 @@ "points": [ { "derivative": 0.0, - "location": -0.19, + "location": -0.13, "value": 1 }, { "derivative": 0.0, - "location": -0.17, + "location": -0.12, "value": 0 } ] @@ -238,7 +238,7 @@ } }, "lava": 0, - "ridges": "tfg:mars/ridges", + "ridges": "tfg:mars/ridges_splined", "temperature": { "type": "minecraft:shifted_noise", "noise": "minecraft:temperature", @@ -288,19 +288,13 @@ "if_true": { "type": "minecraft:biome", "biome_is": [ - "tfg:mars/martian_river", - "tfg:mars/martian_riverbed" + "tfg:mars/martian_river" ] }, "then_run": { "type": "minecraft:condition", "if_true": { - "type": "minecraft:y_above", - "anchor": { - "absolute": 70 - }, - "surface_depth_multiplier": 0, - "add_stone_depth": false + "type": "minecraft:above_preliminary_surface" }, "then_run": { "type": "minecraft:sequence", @@ -341,6 +335,135 @@ } } }, + { + "_": "VENUS SAND ONLY FOR DUNE EDGE", + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "tfg:mars/martian_dune_edge" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 85 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "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": "kubejs_tfc:rock", + "rock_block": "hardened", + "fallback_state": { + "Name": "ad_astra:mars_stone" + } + } + }, + { + "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:not", + "invert": { + "type": "minecraft:vertical_gradient", + "random_name": "tfg:mars_top_layer_sand", + "false_at_and_above": { + "absolute": 100 + }, + "true_at_and_below": { + "absolute": 90 + } + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "ad_astra:venus_sand" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "ad_astra:mars_sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 6, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:vertical_gradient", + "random_name": "tfg:mars_top_layer_sand", + "false_at_and_above": { + "absolute": 97 + }, + "true_at_and_below": { + "absolute": 87 + } + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "ad_astra:venus_sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "ad_astra:mars_stone" + } + } + ] + } + } + ] + } + } + }, { "_": "SAND + SAND STONE HARDENING", "type": "minecraft:condition", @@ -365,6 +488,23 @@ "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": "kubejs_tfc:rock", + "rock_block": "hardened", + "fallback_state": { + "Name": "minecraft:red_sandstone" + } + } + }, { "type": "minecraft:condition", "if_true": { @@ -584,13 +724,105 @@ } }, - + { + "_": "AMBER EDGE", + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "tfg:mars/amber_edge" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 90 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "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": "kubejs_tfc:rock", + "rock_block": "hardened", + "fallback_state": { + "Name": "ad_astra:mars_stone" + } + } + }, + { + "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": "tfg:needs_post_processing", + "state": { + "Name": "tfg:grass/amber_mycelium" + } + } + }, + { + "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:block", + "result_state": { + "Name": "tfg:grass/mars_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 5, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "kubejs_tfc:rock", + "rock_block": "gravel", + "fallback_state": { + "Name": "ad_astra:mars_stone" + } + } + } + ] + } + } + }, { "_": "AMBER MYCELIUM + DIRT", "type": "minecraft:condition", "if_true": { "type": "minecraft:biome", "biome_is": [ + "tfg:mars/amber_edge", "tfg:mars/amber_hills", "tfg:mars/amber_plains" ] @@ -601,69 +833,168 @@ "type": "minecraft:above_preliminary_surface" }, "then_run": { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:water", - "offset": 0, - "surface_depth_multiplier": 0, - "add_stone_depth": false - }, - "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { - "type": "minecraft:condition", - "if_true": { - - "type": "minecraft:not", - "invert": { - "type": "minecraft:water", - "offset": 0, - "surface_depth_multiplier": 0, - "add_stone_depth": false - } - }, - "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "ad_astra:venus_sand" - } - } - }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:water", "offset": 0, - "surface_type": "floor", - "add_surface_depth": false, - "secondary_depth_range": 0 - }, - "then_run": { - "type": "tfg:needs_post_processing", - "state": { - "Name": "tfg:grass/amber_mycelium" - } + "surface_depth_multiplier": 0, + "add_stone_depth": false } }, - { - "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:block", - "result_state": { - "Name": "tfg:grass/mars_dirt" - } + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "ad_astra:venus_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": "tfg:needs_post_processing", + "state": { + "Name": "tfg:grass/amber_mycelium" + } + } + }, + { + "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:block", + "result_state": { + "Name": "tfg:grass/mars_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 5, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "kubejs_tfc:rock", + "rock_block": "gravel", + "fallback_state": { + "Name": "ad_astra:mars_stone" + } + } + } + ] + } + } + }, + { + "_": "RUSTICUS EDGE", + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "tfg:mars/rusticus_edge" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 90 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "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": "kubejs_tfc:rock", + "rock_block": "hardened", + "fallback_state": { + "Name": "ad_astra:mars_stone" + } + } + }, + { + "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": "tfg:needs_post_processing", + "state": { + "Name": "tfg:grass/rusticus_mycelium" + } + } + }, + { + "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:block", + "result_state": { + "Name": "tfg:grass/mars_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 5, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "kubejs_tfc:rock", + "rock_block": "gravel", + "fallback_state": { + "Name": "ad_astra:mars_stone" + } + } + } + ] } } }, @@ -673,6 +1004,7 @@ "if_true": { "type": "minecraft:biome", "biome_is": [ + "tfg:mars/rusticus_edge", "tfg:mars/rusticus_hills", "tfg:mars/rusticus_plains" ] @@ -683,69 +1015,169 @@ "type": "minecraft:above_preliminary_surface" }, "then_run": { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:water", - "offset": 0, - "surface_depth_multiplier": 0, - "add_stone_depth": false - }, - "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { - "type": "minecraft:condition", - "if_true": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { - "type": "minecraft:not", - "invert": { - "type": "minecraft:water", - "offset": 0, - "surface_depth_multiplier": 0, - "add_stone_depth": false - } - }, - "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "ad_astra:venus_sand" - } - } - }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", + "type": "minecraft:not", + "invert": { + "type": "minecraft:water", "offset": 0, - "surface_type": "floor", - "add_surface_depth": false, - "secondary_depth_range": 0 - }, - "then_run": { - "type": "tfg:needs_post_processing", - "state": { - "Name": "tfg:grass/rusticus_mycelium" - } + "surface_depth_multiplier": 0, + "add_stone_depth": false } }, - { - "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:block", - "result_state": { - "Name": "tfg:grass/mars_dirt" - } + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "ad_astra:venus_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": "tfg:needs_post_processing", + "state": { + "Name": "tfg:grass/rusticus_mycelium" + } + } + }, + { + "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:block", + "result_state": { + "Name": "tfg:grass/mars_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 5, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "kubejs_tfc:rock", + "rock_block": "gravel", + "fallback_state": { + "Name": "ad_astra:mars_stone" + } + } + } + ] + } + } + }, + { + "_": "SANGNUM EDGE", + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "tfg:mars/sangnum_edge" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 90 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "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": "kubejs_tfc:rock", + "rock_block": "hardened", + "fallback_state": { + "Name": "ad_astra:mars_stone" + } + } + }, + { + "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": "tfg:needs_post_processing", + "state": { + "Name": "tfg:grass/sangnum_mycelium" + } + } + }, + { + "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:block", + "result_state": { + "Name": "tfg:grass/mars_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 5, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "kubejs_tfc:rock", + "rock_block": "gravel", + "fallback_state": { + "Name": "ad_astra:mars_stone" + } + } + } + ] } } }, @@ -755,9 +1187,9 @@ "if_true": { "type": "minecraft:biome", "biome_is": [ + "tfg:mars/sangnum_edge", "tfg:mars/sangnum_hills", - "tfg:mars/sangnum_plains", - "tfg:mars/martian_oasis" + "tfg:mars/sangnum_plains" ] }, "then_run": { @@ -766,69 +1198,77 @@ "type": "minecraft:above_preliminary_surface" }, "then_run": { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:water", - "offset": 0, - "surface_depth_multiplier": 0, - "add_stone_depth": false - }, - "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { - "type": "minecraft:condition", - "if_true": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { - "type": "minecraft:not", - "invert": { - "type": "minecraft:water", - "offset": 0, - "surface_depth_multiplier": 0, - "add_stone_depth": false - } - }, - "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "ad_astra:venus_sand" - } - } - }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", + "type": "minecraft:not", + "invert": { + "type": "minecraft:water", "offset": 0, - "surface_type": "floor", - "add_surface_depth": false, - "secondary_depth_range": 0 - }, - "then_run": { - "type": "tfg:needs_post_processing", - "state": { - "Name": "tfg:grass/sangnum_mycelium" - } + "surface_depth_multiplier": 0, + "add_stone_depth": false } }, - { - "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:block", - "result_state": { - "Name": "tfg:grass/mars_dirt" - } + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "ad_astra:venus_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": "tfg:needs_post_processing", + "state": { + "Name": "tfg:grass/sangnum_mycelium" + } + } + }, + { + "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:block", + "result_state": { + "Name": "tfg:grass/mars_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 5, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "kubejs_tfc:rock", + "rock_block": "gravel", + "fallback_state": { + "Name": "ad_astra:mars_stone" + } + } + } + ] } } }, diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/flax_patch.json b/kubejs/data/tfg/worldgen/placed_feature/earth/flax_patch.json new file mode 100644 index 000000000..15312c13a --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/flax_patch.json @@ -0,0 +1,20 @@ +{ + "feature": "tfg:earth/flax_patch", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 55 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "tfc:climate", + "min_temperature": -5, + "max_temperature": 27, + "min_rainfall": 175, + "max_rainfall": 475, + "max_forest": "sparse" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/semiheavy_ammoniacal_water.json b/kubejs/data/tfg/worldgen/placed_feature/mars/semiheavy_ammoniacal_water.json index ec025871f..a7d454a27 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/mars/semiheavy_ammoniacal_water.json +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/semiheavy_ammoniacal_water.json @@ -8,17 +8,12 @@ { "type": "minecraft:in_square" }, + { + "type": "minecraft:biome" + }, { "type": "minecraft:heightmap", "heightmap": "WORLD_SURFACE_WG" - }, - { - "type": "minecraft:random_offset", - "xz_spread": 0, - "y_spread": -3 - }, - { - "type": "minecraft:biome" } ] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/charnia.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/charnia.json new file mode 100644 index 000000000..e5c5636a9 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/charnia.json @@ -0,0 +1,26 @@ +{ + "feature": "tfg:mars/surface/charnia", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_fluids", + "fluids": "tfg:semiheavy_ammoniacal_water" + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/feather_patch_glider.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/feather_patch_glider.json new file mode 100644 index 000000000..9d8b87084 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/feather_patch_glider.json @@ -0,0 +1,19 @@ +{ + "feature": "tfg:mars/surface/feather_patch_glider", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/feather_patch_wraptor.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/feather_patch_wraptor.json new file mode 100644 index 000000000..df8341b9b --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/feather_patch_wraptor.json @@ -0,0 +1,19 @@ +{ + "feature": "tfg:mars/surface/feather_patch_wraptor", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/flamaea.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/flamaea.json index 22ef61ef8..ddd144d0f 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/flamaea.json +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/flamaea.json @@ -3,17 +3,17 @@ "placement": [ { "type": "minecraft:rarity_filter", - "chance": 2 + "chance": 3 }, { "type": "minecraft:in_square" }, { - "type": "minecraft:biome" + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" }, { - "type": "minecraft:heightmap", - "heightmap": "WORLD_SURFACE" + "type": "minecraft:biome" } ] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/flint_patch.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/flint_patch.json new file mode 100644 index 000000000..ac937bdce --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/flint_patch.json @@ -0,0 +1,19 @@ +{ + "feature": "tfg:mars/surface/flint_patch", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/lacugrove.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/lacugrove.json new file mode 100644 index 000000000..31c2e1e56 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/lacugrove.json @@ -0,0 +1,19 @@ +{ + "feature": "tfg:mars/surface/lacugrove", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/lanceleaf.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/lanceleaf.json new file mode 100644 index 000000000..c9c3c9566 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/lanceleaf.json @@ -0,0 +1,23 @@ +{ + "feature": "tfg:mars/surface/lanceleaf", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 3 + }, + { + "type": "tfc:climate", + "max_forest": "sparse" + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/lanceleaf_small.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/lanceleaf_small.json new file mode 100644 index 000000000..6367f0a5d --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/lanceleaf_small.json @@ -0,0 +1,23 @@ +{ + "feature": "tfg:mars/surface/lanceleaf_small", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 2 + }, + { + "type": "tfc:climate", + "max_forest": "edge" + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/large_amaranita_mushroom.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/large_amaranita_mushroom.json new file mode 100644 index 000000000..a2b8fbfca --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/large_amaranita_mushroom.json @@ -0,0 +1,23 @@ +{ + "feature": "tfg:mars/surface/large_amaranita_mushroom", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 3 + }, + { + "type": "tfc:climate", + "min_forest": "edge" + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/large_skull_and_bones.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/large_skull_and_bones.json new file mode 100644 index 000000000..1e37f2b1e --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/large_skull_and_bones.json @@ -0,0 +1,31 @@ +{ + "feature": { + "type": "tfc:if_then", + "config": { + "if": { + "feature": "tfg:mars/surface/large_skull", + "placement": [] + }, + "then": { + "feature": "tfg:mars/surface/large_bone_patch", + "placement": [] + } + } + }, + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 120 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/lucernia_outer_leaves.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/lucernia_outer_leaves.json new file mode 100644 index 000000000..a6678f3bb --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/lucernia_outer_leaves.json @@ -0,0 +1,23 @@ +{ + "feature": "tfg:mars/surface/lucernia_outer_leaves", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "tfc:climate", + "min_forest": "sparse" + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/pile_mars_sand.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/pile_mars_sand.json new file mode 100644 index 000000000..a670b969c --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/pile_mars_sand.json @@ -0,0 +1,19 @@ +{ + "feature": "tfg:mars/surface/pile_mars_sand", + "placement": [ + { + "type": "minecraft:count", + "count": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/pile_red_sand.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/pile_red_sand.json new file mode 100644 index 000000000..96619fec1 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/pile_red_sand.json @@ -0,0 +1,19 @@ +{ + "feature": "tfg:mars/surface/pile_red_sand", + "placement": [ + { + "type": "minecraft:count", + "count": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/pile_venus_sand.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/pile_venus_sand.json new file mode 100644 index 000000000..4568ba959 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/pile_venus_sand.json @@ -0,0 +1,26 @@ +{ + "feature": "tfg:mars/surface/pile_venus_sand", + "placement": [ + { + "type": "minecraft:count", + "count": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "tfc:near_fluid", + "fluids": [ + "tfg:semiheavy_ammoniacal_water" + ], + "radius": 4 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/pile_venus_sand_no_water.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/pile_venus_sand_no_water.json new file mode 100644 index 000000000..820123395 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/pile_venus_sand_no_water.json @@ -0,0 +1,19 @@ +{ + "feature": "tfg:mars/surface/pile_venus_sand", + "placement": [ + { + "type": "minecraft:count", + "count": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/pitcher_plant.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/pitcher_plant.json index 3f6047989..312f059cc 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/pitcher_plant.json +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/pitcher_plant.json @@ -1,26 +1,9 @@ { "feature": "tfg:mars/surface/pitcher_plant", "placement": [ - { - "type": "minecraft:rarity_filter", - "chance": 1 - }, - { - "type": "minecraft:in_square" - }, - { - "type": "minecraft:biome" - }, { "type": "minecraft:heightmap", "heightmap": "WORLD_SURFACE" - }, - { - "type": "tfc:near_fluid", - "radius": 6, - "fluids": [ - "tfg:semiheavy_ammoniacal_water" - ] } ] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/rotten_flesh_patch.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/rotten_flesh_patch.json new file mode 100644 index 000000000..e5fcb63be --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/rotten_flesh_patch.json @@ -0,0 +1,19 @@ +{ + "feature": "tfg:mars/surface/rotten_flesh_patch", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 50 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/small_amaranita_mushroom.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/small_amaranita_mushroom.json index 3702fc112..3f9664d77 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/small_amaranita_mushroom.json +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/small_amaranita_mushroom.json @@ -5,6 +5,11 @@ "type": "minecraft:rarity_filter", "chance": 2 }, + { + "type": "tfc:climate", + "min_forest": "none", + "max_forest": "normal" + }, { "type": "minecraft:in_square" }, diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/small_skull_and_bones.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/small_skull_and_bones.json new file mode 100644 index 000000000..bea121ae6 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/small_skull_and_bones.json @@ -0,0 +1,31 @@ +{ + "feature": { + "type": "tfc:if_then", + "config": { + "if": { + "feature": "tfg:mars/surface/small_skull", + "placement": [] + }, + "then": { + "feature": "tfg:mars/surface/bone_patch", + "placement": [] + } + } + }, + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 80 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/torchflower.json b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/torchflower.json index 19d41518f..04e20b88a 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/mars/surface/torchflower.json +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/surface/torchflower.json @@ -1,16 +1,6 @@ { "feature": "tfg:mars/surface/torchflower", "placement": [ - { - "type": "minecraft:rarity_filter", - "chance": 2 - }, - { - "type": "minecraft:in_square" - }, - { - "type": "minecraft:biome" - }, { "type": "minecraft:heightmap", "heightmap": "WORLD_SURFACE" diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/basalt_delta.json b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/basalt_delta.json new file mode 100644 index 000000000..7beef59e2 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/basalt_delta.json @@ -0,0 +1,28 @@ +{ + "feature": "tfg:mars/terrain/basalt_delta", + "placement": [ + { + "type": "minecraft:count", + "count": 25 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "offset": [ 0, -1, 0 ], + "blocks": [ + "tfc:rock/raw/basalt", + "tfc:rock/hardened/basalt", + "tfc:rock/gravel/basalt" + ] + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/basalt_rivulet.json b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/basalt_rivulet.json new file mode 100644 index 000000000..c7c31a760 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/basalt_rivulet.json @@ -0,0 +1,15 @@ +{ + "feature": "tfg:mars/terrain/basalt_rivulet", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/clay_disc.json b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/clay_disc.json new file mode 100644 index 000000000..c49b6f888 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/clay_disc.json @@ -0,0 +1,19 @@ +{ + "feature": "tfg:mars/terrain/clay_disc", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/empty_fissure.json b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/empty_fissure.json new file mode 100644 index 000000000..449c2f51f --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/empty_fissure.json @@ -0,0 +1,19 @@ +{ + "feature": "tfg:mars/terrain/empty_fissure", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/empty_rivulet.json b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/empty_rivulet.json new file mode 100644 index 000000000..c1dbd334a --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/empty_rivulet.json @@ -0,0 +1,15 @@ +{ + "feature": "tfg:mars/terrain/empty_rivulet", + "placement": [ + { + "type": "minecraft:count", + "count": 1 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/gabbro_delta.json b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/gabbro_delta.json new file mode 100644 index 000000000..6c6fe370d --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/gabbro_delta.json @@ -0,0 +1,28 @@ +{ + "feature": "tfg:mars/terrain/gabbro_delta", + "placement": [ + { + "type": "minecraft:count", + "count": 25 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "offset": [ 0, -1, 0 ], + "blocks": [ + "tfc:rock/raw/gabbro", + "tfc:rock/hardened/gabbro", + "tfc:rock/gravel/gabbro" + ] + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/kaolin_clay_disc.json b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/kaolin_clay_disc.json new file mode 100644 index 000000000..f36c409cf --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/kaolin_clay_disc.json @@ -0,0 +1,19 @@ +{ + "feature": "tfg:mars/terrain/kaolin_clay_disc", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 50 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/magma_rivulet.json b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/magma_rivulet.json new file mode 100644 index 000000000..46ec9e83a --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/magma_rivulet.json @@ -0,0 +1,15 @@ +{ + "feature": "tfg:mars/terrain/magma_rivulet", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 6 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/peat_disc.json b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/peat_disc.json new file mode 100644 index 000000000..e04ac5994 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/peat_disc.json @@ -0,0 +1,23 @@ +{ + "feature": "tfg:mars/terrain/peat_disc", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 200 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "tfc:climate", + "min_forest": "edge" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/red_granite_delta.json b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/red_granite_delta.json new file mode 100644 index 000000000..532b8417f --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/red_granite_delta.json @@ -0,0 +1,27 @@ +{ + "feature": "tfg:mars/terrain/red_granite_delta", + "placement": [ + { + "type": "minecraft:count", + "count": 25 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "offset": [ 0, -1, 0 ], + "blocks": [ + "gtceu:red_granite", + "tfg:rock/hardened_red_granite" + ] + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/red_quicksand.json b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/red_quicksand.json new file mode 100644 index 000000000..17fcd34fb --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/red_quicksand.json @@ -0,0 +1,19 @@ +{ + "feature": "tfg:mars/terrain/red_quicksand", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 15 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/spice_disc.json b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/spice_disc.json new file mode 100644 index 000000000..cc42dba73 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/spice_disc.json @@ -0,0 +1,19 @@ +{ + "feature": "tfg:mars/terrain/spice_disc", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 50 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/venus_sand_disc.json b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/venus_sand_disc.json new file mode 100644 index 000000000..59ca053e5 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/venus_sand_disc.json @@ -0,0 +1,26 @@ +{ + "feature": "tfg:mars/terrain/venus_sand_disc", + "placement": [ + { + "type": "minecraft:count", + "count": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "tfc:near_fluid", + "fluids": [ + "tfg:semiheavy_ammoniacal_water" + ], + "radius": 4 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/water_fissure.json b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/water_fissure.json new file mode 100644 index 000000000..c47e4734b --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/terrain/water_fissure.json @@ -0,0 +1,19 @@ +{ + "feature": "tfg:mars/terrain/water_fissure", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 5 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/underground/calcite.json b/kubejs/data/tfg/worldgen/placed_feature/mars/underground/calcite.json new file mode 100644 index 000000000..c3ccbd063 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/underground/calcite.json @@ -0,0 +1,24 @@ +{ + "feature": "tfc:calcite", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "biased_to_bottom", + "min_inclusive": { + "absolute": -24 + }, + "max_inclusive": { + "absolute": 75 + } + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/underground/cave_column.json b/kubejs/data/tfg/worldgen/placed_feature/mars/underground/cave_column.json new file mode 100644 index 000000000..a5778699c --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/underground/cave_column.json @@ -0,0 +1,16 @@ +{ + "feature": "tfc:cave_column", + "placement": [ + { + "type": "minecraft:carving_mask", + "step": "air", + "min_y": { + "above_bottom": 25 + } + }, + { + "type": "minecraft:rarity_filter", + "chance": 667 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/underground/cave_spike.json b/kubejs/data/tfg/worldgen/placed_feature/mars/underground/cave_spike.json new file mode 100644 index 000000000..a941961dd --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/underground/cave_spike.json @@ -0,0 +1,41 @@ +{ + "feature": "tfg:mars/underground/cave_spike", + "placement": [ + { + "type": "minecraft:count", + "count": 256 + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": 7 + }, + "max_inclusive": { + "absolute": 75 + } + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + "direction_of_search": "down", + "max_steps": 8, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": 1 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/underground/large_cave_spike.json b/kubejs/data/tfg/worldgen/placed_feature/mars/underground/large_cave_spike.json new file mode 100644 index 000000000..28252bcba --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/underground/large_cave_spike.json @@ -0,0 +1,16 @@ +{ + "feature": "tfc:large_cave_spike", + "placement": [ + { + "type": "minecraft:carving_mask", + "step": "air", + "min_y": { + "above_bottom": 25 + } + }, + { + "type": "minecraft:rarity_filter", + "chance": 167 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/underground/loose_rocks.json b/kubejs/data/tfg/worldgen/placed_feature/mars/underground/loose_rocks.json new file mode 100644 index 000000000..dd9e1ea16 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/underground/loose_rocks.json @@ -0,0 +1,41 @@ +{ + "feature": "tfg:mars/underground/loose_rocks", + "placement": [ + { + "type": "minecraft:count", + "count": 256 + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": 7 + }, + "max_inclusive": { + "absolute": 75 + } + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + "direction_of_search": "down", + "max_steps": 8, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": 1 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/underground/mega_calcite.json b/kubejs/data/tfg/worldgen/placed_feature/mars/underground/mega_calcite.json new file mode 100644 index 000000000..de356fbcb --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/underground/mega_calcite.json @@ -0,0 +1,24 @@ +{ + "feature": "tfc:mega_calcite", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "biased_to_bottom", + "min_inclusive": { + "absolute": -24 + }, + "max_inclusive": { + "absolute": 50 + } + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/underground/ochrum_blob.json b/kubejs/data/tfg/worldgen/placed_feature/mars/underground/ochrum_blob.json new file mode 100644 index 000000000..b08899350 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/underground/ochrum_blob.json @@ -0,0 +1,27 @@ +{ + "feature": "tfg:mars/underground/ochrum_blob", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "absolute": 80 + }, + "min_inclusive": { + "absolute": -32 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/deep_mars_chromite.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/deep_mars_chromite.json new file mode 100644 index 000000000..08bd49d47 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/deep_mars_chromite.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/deep_mars_chromite", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/deep_mars_pitchblende.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/deep_mars_pitchblende.json new file mode 100644 index 000000000..89f78b4c1 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/deep_mars_pitchblende.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/deep_mars_pitchblende", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/deep_mars_sheldonite.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/deep_mars_sheldonite.json new file mode 100644 index 000000000..fb568239b --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/deep_mars_sheldonite.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/deep_mars_sheldonite", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_almandine.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_almandine.json new file mode 100644 index 000000000..e0e1fc393 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_almandine.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/mars_almandine", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_apatite.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_apatite.json new file mode 100644 index 000000000..207be9891 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_apatite.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/mars_apatite", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_beryllium.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_beryllium.json new file mode 100644 index 000000000..75f88125f --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_beryllium.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/mars_beryllium", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_coal.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_coal.json new file mode 100644 index 000000000..b59b55c10 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_coal.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/mars_coal", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_copper.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_copper.json new file mode 100644 index 000000000..ba5be31a1 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_copper.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/mars_copper", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_galena.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_galena.json new file mode 100644 index 000000000..f092eae45 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_galena.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/mars_galena", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_lubricant.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_lubricant.json new file mode 100644 index 000000000..cc13ac265 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_lubricant.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/mars_lubricant", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_neodynium.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_neodynium.json new file mode 100644 index 000000000..4a39d3fa6 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_neodynium.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/mars_neodynium", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_nickel.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_nickel.json new file mode 100644 index 000000000..c256ab905 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_nickel.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/mars_nickel", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_pitchblende.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_pitchblende.json new file mode 100644 index 000000000..ac1550227 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_pitchblende.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/mars_pitchblende", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_quartzite.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_quartzite.json new file mode 100644 index 000000000..2d56ca978 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_quartzite.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/mars_quartzite", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_salt.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_salt.json new file mode 100644 index 000000000..4e34ad63a --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_salt.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/mars_salt", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_sapphire.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_sapphire.json new file mode 100644 index 000000000..4a01a17d4 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_sapphire.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/mars_sapphire", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_stibnite.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_stibnite.json new file mode 100644 index 000000000..056ef2cee --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_stibnite.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/mars_stibnite", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_sulfur.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_sulfur.json new file mode 100644 index 000000000..30515bf89 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_sulfur.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/mars_sulfur", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_tantalite.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_tantalite.json new file mode 100644 index 000000000..c6ecb3f94 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_tantalite.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/mars_tantalite", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_tungsten.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_tungsten.json new file mode 100644 index 000000000..444e858a9 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_tungsten.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/mars_tungsten", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/surface_bismuthinite.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/surface_bismuthinite.json new file mode 100644 index 000000000..a5e0a50d7 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/surface_bismuthinite.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/surface_bismuthinite", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/surface_cassiterite.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/surface_cassiterite.json new file mode 100644 index 000000000..dc76f6c25 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/surface_cassiterite.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/surface_cassiterite", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/surface_hematite.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/surface_hematite.json new file mode 100644 index 000000000..3e52dd3ac --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/surface_hematite.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/surface_hematite", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/surface_nickel_galena.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/surface_nickel_galena.json new file mode 100644 index 000000000..7929f1065 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/surface_nickel_galena.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/surface_nickel_galena", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/surface_tetrahedrite.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/surface_tetrahedrite.json new file mode 100644 index 000000000..addd012ef --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/surface_tetrahedrite.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/surface_tetrahedrite", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/moon/asurine/blob_dense.json b/kubejs/data/tfg/worldgen/placed_feature/moon/asurine/blob_dense.json index edacee72f..db64d0f6e 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/moon/asurine/blob_dense.json +++ b/kubejs/data/tfg/worldgen/placed_feature/moon/asurine/blob_dense.json @@ -13,10 +13,10 @@ "height": { "type": "minecraft:trapezoid", "max_inclusive": { - "absolute": 210 + "absolute": 120 }, "min_inclusive": { - "absolute": -64 + "absolute": 0 } } }, diff --git a/kubejs/data/tfg/worldgen/placed_feature/moon/asurine/blob_sparse.json b/kubejs/data/tfg/worldgen/placed_feature/moon/asurine/blob_sparse.json index 2c91be390..c190e8713 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/moon/asurine/blob_sparse.json +++ b/kubejs/data/tfg/worldgen/placed_feature/moon/asurine/blob_sparse.json @@ -13,10 +13,10 @@ "height": { "type": "minecraft:trapezoid", "max_inclusive": { - "absolute": 210 + "absolute": 120 }, "min_inclusive": { - "absolute": -64 + "absolute": 0 } } }, diff --git a/kubejs/server_scripts/ad_astra/loot.js b/kubejs/server_scripts/ad_astra/loot.js index 553cb9e98..92973c808 100644 --- a/kubejs/server_scripts/ad_astra/loot.js +++ b/kubejs/server_scripts/ad_astra/loot.js @@ -12,6 +12,6 @@ function registerAdAstraLoots(event) { .addWeightedLoot([5, 8], ['tfg:food/raw_crawlermari']) event.addEntityLootModifier('ad_astra:star_crawler') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) - .addWeightedLoot([2, 4], ['tfc:food/raw_crawlermari']) + .matchMainHand('#forge:tools/butchery_knives') + .addWeightedLoot([2, 4], ['tfg:food/raw_crawlermari']) } \ 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 ca80b01df..6d8be66ed 100644 --- a/kubejs/server_scripts/ad_astra/recipes.js +++ b/kubejs/server_scripts/ad_astra/recipes.js @@ -264,9 +264,10 @@ const registerAdAstraRecipes = (event) => { .itemOutputs('2x tfg:space_suit_fabric') .duration(20 * 10) .EUt(GTValues.VA[GTValues.HV]) - /* + event.recipes.gtceu.forming_press('better_space_suit_fabric') .itemInputs( + '#forge:foils/polybenzimidazole', 'gtceu:carbon_fiber_mesh', '#forge:aerogels', 'tfg:glacian_wool' @@ -274,7 +275,7 @@ const registerAdAstraRecipes = (event) => { .itemOutputs('2x tfg:better_space_suit_fabric') .duration(20 * 5) .EUt(GTValues.VA[GTValues.IV]) -*/ + event.shaped('ad_astra:space_helmet', [ 'AAA', 'ADA', @@ -284,7 +285,7 @@ const registerAdAstraRecipes = (event) => { B: 'tfg:space_suit_fabric', D: '#forge:small_fluid_pipes/polyethylene' }).id('tfg:space_helmet') -/* + event.recipes.gtceu.assembler('ad_astra:netherite_space_helmet') .itemInputs( 'ad_astra:space_helmet', @@ -295,7 +296,7 @@ const registerAdAstraRecipes = (event) => { .itemOutputs('ad_astra:netherite_space_helmet') .duration(400) .EUt(GTValues.VA[GTValues.IV]) -*/ + event.shaped('ad_astra:space_suit', [ 'B B', 'BDB', @@ -307,7 +308,7 @@ const registerAdAstraRecipes = (event) => { event.shapeless('ad_astra:space_suit', ['ad_astra:space_suit']) .id('tfg:empty_space_suit') -/* + event.recipes.gtceu.assembler('ad_astra:netherite_space_suit') .itemInputs('ad_astra:space_suit', '5x #forge:plates/tungsten_steel','5x tfg:better_space_suit_fabric') .itemOutputs('ad_astra:netherite_space_suit') @@ -316,7 +317,7 @@ const registerAdAstraRecipes = (event) => { event.shapeless('ad_astra:netherite_space_suit', ['ad_astra:netherite_space_suit']) .id('tfg:empty_netherite_space_suit') -*/ + event.shaped('ad_astra:space_pants', [ 'BAB', 'B B', @@ -325,13 +326,13 @@ const registerAdAstraRecipes = (event) => { A: 'gtceu:hv_electric_motor', B: 'tfg:space_suit_fabric', }).id('tfg:space_pants') -/* + event.recipes.gtceu.assembler('ad_astra:netherite_space_pants') .itemInputs('ad_astra:space_pants', '4x #forge:plates/tungsten_steel', '4x tfg:better_space_suit_fabric') .itemOutputs('ad_astra:netherite_space_pants') .duration(400) .EUt(GTValues.VA[GTValues.IV]) -*/ + event.shaped('ad_astra:space_boots', [ 'B B', 'A A' @@ -339,13 +340,13 @@ const registerAdAstraRecipes = (event) => { A: '#forge:plates/polyphenylene_sulfide', B: 'tfg:space_suit_fabric' }).id('tfg:space_boots') -/* + event.recipes.gtceu.assembler('ad_astra:netherite_space_boots') .itemInputs('ad_astra:space_boots', '2x #forge:plates/tungsten_steel', '2x tfg:better_space_suit_fabric') .itemOutputs('ad_astra:netherite_space_boots') .duration(400) .EUt(GTValues.VA[GTValues.IV]) -*/ + event.shaped('ad_astra:oxygen_gear', [ 'BAB', diff --git a/kubejs/server_scripts/ad_astra/tags.js b/kubejs/server_scripts/ad_astra/tags.js index 112add8c1..8a04ca2da 100644 --- a/kubejs/server_scripts/ad_astra/tags.js +++ b/kubejs/server_scripts/ad_astra/tags.js @@ -45,8 +45,12 @@ const registerAdAstraItemTags = (event) => { event.removeAllTagsFrom(item) event.add('c:hidden_from_recipe_viewers', item) }) + + event.add('c:hidden_from_recipe_viewers', 'ad_astra:alphacene_mushroom') + event.add('c:hidden_from_recipe_viewers', 'ad_astra:strophar_mushroom') - + event.add('gtceu:ppe_armor', '#ad_astra:space_suit_items') + event.add('minecraft:trimmable_armor', '#ad_astra:space_suit_items') event.add('forge:cobblestone', 'ad_astra:moon_cobblestone') event.add('forge:cobblestone', 'ad_astra:mars_cobblestone') @@ -102,8 +106,22 @@ const registerAdAstraItemTags = (event) => { event.add('firmalife:foods/cheeses', 'ad_astra:cheese') event.add('ad_astra:space_suit_items', 'gtceu:quarktech_helmet') + event.add('ad_astra:space_suit_items', 'gtceu:quarktech_chestplate') + event.add('ad_astra:space_suit_items', 'gtceu:advanced_quarktech_chestplate') event.add('ad_astra:space_suit_items', 'gtceu:quarktech_leggings') event.add('ad_astra:space_suit_items', 'gtceu:quarktech_boots') + + event.add('ad_astra:freeze_resistant_armor', 'gtceu:quarktech_helmet') + event.add('ad_astra:freeze_resistant_armor', 'gtceu:quarktech_chestplate') + event.add('ad_astra:freeze_resistant_armor', 'gtceu:advanced_quarktech_chestplate') + event.add('ad_astra:freeze_resistant_armor', 'gtceu:quarktech_leggings') + event.add('ad_astra:freeze_resistant_armor', 'gtceu:quarktech_boots') + + event.add('ad_astra:heat_resistant_armor', 'gtceu:quarktech_helmet') + event.add('ad_astra:heat_resistant_armor', 'gtceu:quarktech_chestplate') + event.add('ad_astra:heat_resistant_armor', 'gtceu:advanced_quarktech_chestplate') + event.add('ad_astra:heat_resistant_armor', 'gtceu:quarktech_leggings') + event.add('ad_astra:heat_resistant_armor', 'gtceu:quarktech_boots') event.remove('minecraft:wool', 'ad_astra:glacian_fur') @@ -226,7 +244,10 @@ const registerAdAstraBlockTags = (event) => { 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', 'minecraft:red_sandstone') event.add('ad_astra:mars_stone_replaceables', 'ad_astra:venus_stone') + event.add('ad_astra:mars_stone_replaceables', 'ad_astra:venus_sandstone') + event.add('ad_astra:mars_stone_replaceables', 'create:ochrum') 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') @@ -239,9 +260,16 @@ const registerAdAstraBlockTags = (event) => { event.add('tfg:mars_soil', 'tfc:sand/red') event.add('tfg:mars_soil', 'tfc:sand/pink') event.add('tfg:mars_soil', 'tfg:grass/mars_dirt') - event.add('tfg:mars_soil', 'tfg:grass/rusticus_mycelium') + event.add('tfg:mars_soil', 'tfg:grass/mars_clay_dirt') event.add('tfg:mars_soil', 'tfg:grass/amber_mycelium') + event.add('tfg:mars_soil', 'tfg:grass/rusticus_mycelium') event.add('tfg:mars_soil', 'tfg:grass/sangnum_mycelium') + event.add('tfg:mars_soil', 'tfg:grass/amber_clay_mycelium') + event.add('tfg:mars_soil', 'tfg:grass/rusticus_clay_mycelium') + event.add('tfg:mars_soil', 'tfg:grass/sangnum_clay_mycelium') + event.add('tfg:mars_soil', 'tfg:grass/amber_kaolin_mycelium') + event.add('tfg:mars_soil', 'tfg:grass/rusticus_kaolin_mycelium') + event.add('tfg:mars_soil', 'tfg:grass/sangnum_kaolin_mycelium') event.add('ad_astra:mars_stone_replaceables', '#tfg:mars_soil') event.add('minecraft:animals_spawnable_on', '#tfg:mars_soil') @@ -298,6 +326,30 @@ const registerAdAstraBlockTags = (event) => { event.remove('ad_astra:strophar_caps', 'ad_astra:strophar_cap') event.remove('ad_astra:aeronos_caps', 'ad_astra:aeronos_cap') + + event.add('tfg:heightmap_ignore', 'ad_astra:strophar_cap') + event.add('tfg:heightmap_ignore', 'ad_astra:strophar_stem') + event.add('tfg:heightmap_ignore', 'ad_astra:aeronos_cap') + event.add('tfg:heightmap_ignore', 'ad_astra:aeronos_stem') + event.add('tfg:heightmap_ignore', 'minecraft:nether_wart_block') + event.add('tfg:heightmap_ignore', 'minecraft:warped_wart_block') + event.add('tfg:heightmap_ignore', 'species:alphacene_mushroom_block') + event.add('tfg:heightmap_ignore', 'species:alphacene_mushroom_growth') + event.add('tfg:heightmap_ignore', 'ad_astra:glacian_log') + event.add('tfg:heightmap_ignore', 'species:alphacene_moss_block') + + 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) + } + }) } const registerAdAstraBiomeTags = (event) => { @@ -318,17 +370,18 @@ const registerAdAstraBiomeTags = (event) => { event.add('tfg:has_dark_sand_particles', 'tfg:mars/martian_dunes') event.add('tfg:has_dark_sand_particles', 'tfg:mars/martian_deep_desert') - event.add('tfg:has_medium_sand_particles', 'tfg:mars/martian_dune_edge') event.add('tfg:has_medium_sand_particles', 'tfg:mars/amber_plains') event.add('tfg:has_medium_sand_particles', 'tfg:mars/amber_hills') event.add('tfg:has_medium_sand_particles', 'tfg:mars/rusticus_plains') event.add('tfg:has_medium_sand_particles', 'tfg:mars/rusticus_hills') event.add('tfg:has_medium_sand_particles', 'tfg:mars/sangnum_plains') event.add('tfg:has_medium_sand_particles', 'tfg:mars/sangnum_hills') - event.add('tfg:has_medium_sand_particles', 'tfg:mars/martian_oasis') - event.add('tfg:has_medium_sand_particles', 'tfg:mars/martian_mountains') + event.add('tfg:has_light_sand_particles', 'tfg:mars/martian_dune_edge') + event.add('tfg:has_light_sand_particles', 'tfg:mars/amber_edge') + event.add('tfg:has_light_sand_particles', 'tfg:mars/rusticus_edge') + event.add('tfg:has_light_sand_particles', 'tfg:mars/sangnum_edge') + event.add('tfg:has_light_sand_particles', 'tfg:mars/martian_mountains') event.add('tfg:has_light_sand_particles', 'tfg:mars/martian_river') - event.add('tfg:has_light_sand_particles', 'tfg:mars/martian_riverbed') } const registerAdAstraEntityTypeTags = (event) => { @@ -349,17 +402,19 @@ const registerAdAstraEntityTypeTags = (event) => { 'endermanoverhaul:spirit', 'endermanoverhaul:end_enderman', 'endermanoverhaul:end_islands_enderman', - + // mars 'tfg:sniffer', 'tfg:glacian_ram', - 'species:wraptor', + 'tfg:wraptor', 'species:goober', 'species:cruncher', 'species:springling', 'species:quake', + 'species:stackatick', 'endermanoverhaul:crimson_forest_enderman', 'endermanoverhaul:warped_forest_enderman', 'endermanoverhaul:badlands_enderman', + 'endermanoverhaul:cave_enderman', 'wan_ancient_beasts:walker', 'wan_ancient_beasts:eater', 'wan_ancient_beasts:crusher', @@ -388,10 +443,17 @@ const registerAdAstraEntityTypeTags = (event) => { event.add('tfg:ignores_gravity', 'species:birt') event.add('tfg:ignores_gravity', 'ad_astra:star_crawler') - event.add('tfg:ignores_gravity', 'species:wraptor') + // this guy has a bounce animation that looks silly in low grav event.add('tfg:ignores_gravity', 'wan_ancient_beasts:crusher') + // this huge guy also looks silly in low grav + event.add('tfg:ignores_gravity', 'wan_ancient_beasts:walker') + event.add('tfg:ignores_gravity', 'wan_ancient_beasts:eater') + // flying mobs event.add('tfg:ignores_gravity', 'wan_ancient_beasts:soarer') event.add('tfg:ignores_gravity', 'wan_ancient_beasts:glider') + // swimming mobs + event.add('tfg:ignores_gravity', 'wan_ancient_beasts:surfer') + event.add('tfg:ignores_gravity', 'wan_ancient_beasts:toxlacanth') } const registerAdAstraPlacedFeatures = (event) => { @@ -416,60 +478,81 @@ const registerAdAstraPlacedFeatures = (event) => { //#region Mars + // Underground decoration + event.add('tfg:mars_underground_decoration', 'tfg:mars/underground/cave_column') + event.add('tfg:mars_underground_decoration', 'tfg:mars/underground/cave_spike') + event.add('tfg:mars_underground_decoration', 'tfg:mars/underground/large_cave_spike') + event.add('tfg:mars_underground_decoration', 'tfg:mars/underground/calcite') + event.add('tfg:mars_underground_decoration', 'tfg:mars/underground/mega_calcite') + event.add('tfg:mars_underground_decoration', 'tfc:icicle') + event.add('tfg:mars_underground_decoration', 'tfg:mars/underground/loose_rocks') + event.add('tfg:mars_underground_decoration', 'tfg:mars/underground/ochrum_blob') + event.add('tfg:mars_underground_decoration', "tfg:earth/geode/amethyst") + event.add('tfg:mars_underground_decoration', "tfg:earth/geode/barite") + event.add('tfg:mars_underground_decoration', "tfg:earth/geode/calcite") + event.add('tfg:mars_underground_decoration', "tfg:earth/geode/gypsum") + event.add('tfg:mars_underground_decoration', "tfg:earth/geode/opal") + event.add('tfg:mars_underground_decoration', "tfg:earth/geode/pyrite") + event.add('tfg:mars_underground_decoration', "tfg:earth/geode/quartzite") // Vegetation - event.add("tfg:mars_amber_small_plants", "tfg:mars/crop/amber_root") - event.add("tfg:mars_amber_small_plants", "tfg:mars/crop/blossom_berry") - event.add("tfg:mars_amber_small_plants", "tfg:mars/crop/bolux_mushroom") - event.add("tfg:mars_amber_small_plants", "tfg:mars/crop/cave_pumpkin") - event.add("tfg:mars_amber_small_plants", "tfg:mars/crop/chorus_mushroom") - event.add("tfg:mars_amber_small_plants", "tfg:mars/surface/amber_grass") - event.add("tfg:mars_amber_small_plants", "tfg:mars/surface/flamaea") - event.add("tfg:mars_amber_small_plants", "tfg:mars/surface/flammalix") - event.add("tfg:mars_amber_small_plants", "tfg:mars/surface/lutebus") - event.add("tfg:mars_amber_small_plants", "tfg:mars/surface/orango") - event.add("tfg:mars_amber_small_plants", "tfg:mars/surface/torchflower") - - event.add("tfg:mars_rusticus_small_plants", "tfg:mars/crop/amber_root") - event.add("tfg:mars_rusticus_small_plants", "tfg:mars/crop/blossom_berry") - event.add("tfg:mars_rusticus_small_plants", "tfg:mars/crop/bolux_mushroom") - event.add("tfg:mars_rusticus_small_plants", "tfg:mars/crop/chorus_mushroom") - event.add("tfg:mars_rusticus_small_plants", "tfg:mars/crop/shadow_berry") - event.add("tfg:mars_rusticus_small_plants", "tfg:mars/surface/aeridium") - event.add("tfg:mars_rusticus_small_plants", "tfg:mars/surface/flamaea") - event.add("tfg:mars_rusticus_small_plants", "tfg:mars/surface/flammalix") - event.add("tfg:mars_rusticus_small_plants", "tfg:mars/surface/lamellarium") - event.add("tfg:mars_rusticus_small_plants", "tfg:mars/surface/lutebus") - event.add("tfg:mars_rusticus_small_plants", "tfg:mars/surface/orango") - event.add("tfg:mars_rusticus_small_plants", "tfg:mars/surface/pitcher_plant") - event.add("tfg:mars_rusticus_small_plants", "tfg:mars/surface/ruscus") - event.add("tfg:mars_rusticus_small_plants", "tfg:mars/surface/torchflower") - - event.add("tfg:mars_sangnum_small_plants", "tfg:mars/crop/blossom_berry") - event.add("tfg:mars_sangnum_small_plants", "tfg:mars/crop/bolux_mushroom") - event.add("tfg:mars_sangnum_small_plants", "tfg:mars/crop/cave_pumpkin") - event.add("tfg:mars_sangnum_small_plants", "tfg:mars/crop/chorus_mushroom") - event.add("tfg:mars_sangnum_small_plants", "tfg:mars/crop/shadow_berry") - event.add("tfg:mars_sangnum_small_plants", "tfg:mars/surface/cave_grass") - event.add("tfg:mars_sangnum_small_plants", "tfg:mars/surface/clawfern") - event.add("tfg:mars_sangnum_small_plants", "tfg:mars/surface/flamaea") - event.add("tfg:mars_sangnum_small_plants", "tfg:mars/surface/globulagus") - event.add("tfg:mars_sangnum_small_plants", "tfg:mars/surface/lamellarium") - event.add("tfg:mars_sangnum_small_plants", "tfg:mars/surface/pitcher_plant") - event.add("tfg:mars_sangnum_small_plants", "tfg:mars/surface/ruscus") + event.add("tfg:mars_global_small_plants", "tfg:mars/surface/charnia") + event.add("tfg:mars_global_small_plants", "tfg:mars/surface/flamaea") + event.add("tfg:mars_global_small_plants", "tfg:mars/surface/lacugrove") - event.add("tfg:mars_global_small_plants", "tfg:mars/surface/small_amaranita_mushroom") - - event.add("tfg:mars_amber_vegetal_decoration", "#tfg:mars_amber_small_plants") event.add("tfg:mars_amber_vegetal_decoration", "#tfg:mars_global_small_plants") - - event.add("tfg:mars_rusticus_vegetal_decoration", "#tfg:mars_rusticus_small_plants") event.add("tfg:mars_rusticus_vegetal_decoration", "#tfg:mars_global_small_plants") - - event.add("tfg:mars_sangnum_vegetal_decoration", "#tfg:mars_sangnum_small_plants") event.add("tfg:mars_sangnum_vegetal_decoration", "#tfg:mars_global_small_plants") + + event.add("tfg:mars_amber_vegetal_decoration", "tfg:mars/crop/amber_root") + event.add("tfg:mars_amber_vegetal_decoration", "tfg:mars/crop/blossom_berry") + event.add("tfg:mars_amber_vegetal_decoration", "tfg:mars/crop/bolux_mushroom") + event.add("tfg:mars_amber_vegetal_decoration", "tfg:mars/crop/cave_pumpkin") + event.add("tfg:mars_amber_vegetal_decoration", "tfg:mars/crop/chorus_mushroom") + + event.add("tfg:mars_amber_vegetal_decoration", "tfg:mars/surface/lanceleaf") + event.add("tfg:mars_amber_vegetal_decoration", "tfg:mars/surface/lanceleaf_small") + + event.add("tfg:mars_amber_vegetal_decoration", "tfg:mars/surface/amber_grass") + event.add("tfg:mars_amber_vegetal_decoration", "tfg:mars/surface/flammalix") + event.add("tfg:mars_amber_vegetal_decoration", "tfg:mars/surface/lutebus") + event.add("tfg:mars_amber_vegetal_decoration", "tfg:mars/surface/orango") + + + event.add("tfg:mars_rusticus_vegetal_decoration", "tfg:mars/crop/amber_root") + event.add("tfg:mars_rusticus_vegetal_decoration", "tfg:mars/crop/blossom_berry") + event.add("tfg:mars_rusticus_vegetal_decoration", "tfg:mars/crop/bolux_mushroom") + event.add("tfg:mars_rusticus_vegetal_decoration", "tfg:mars/crop/chorus_mushroom") + event.add("tfg:mars_rusticus_vegetal_decoration", "tfg:mars/crop/shadow_berry") + + event.add("tfg:mars_rusticus_vegetal_decoration", "tfg:mars/surface/lucernia_outer_leaves") + + event.add("tfg:mars_rusticus_vegetal_decoration", "tfg:mars/surface/aeridium") + event.add("tfg:mars_rusticus_vegetal_decoration", "tfg:mars/surface/flammalix") + event.add("tfg:mars_rusticus_vegetal_decoration", "tfg:mars/surface/lamellarium") + event.add("tfg:mars_rusticus_vegetal_decoration", "tfg:mars/surface/lutebus") + event.add("tfg:mars_rusticus_vegetal_decoration", "tfg:mars/surface/orango") + event.add("tfg:mars_rusticus_vegetal_decoration", "tfg:mars/surface/ruscus") + + + event.add("tfg:mars_sangnum_vegetal_decoration", "tfg:mars/crop/blossom_berry") + event.add("tfg:mars_sangnum_vegetal_decoration", "tfg:mars/crop/bolux_mushroom") + event.add("tfg:mars_sangnum_vegetal_decoration", "tfg:mars/crop/cave_pumpkin") + event.add("tfg:mars_sangnum_vegetal_decoration", "tfg:mars/crop/chorus_mushroom") + event.add("tfg:mars_sangnum_vegetal_decoration", "tfg:mars/crop/shadow_berry") + + event.add("tfg:mars_sangnum_vegetal_decoration", "tfg:mars/surface/small_amaranita_mushroom") + event.add("tfg:mars_sangnum_vegetal_decoration", "tfg:mars/surface/large_amaranita_mushroom") + + event.add("tfg:mars_sangnum_vegetal_decoration", "tfg:mars/surface/cave_grass") + event.add("tfg:mars_sangnum_vegetal_decoration", "tfg:mars/surface/clawfern") + event.add("tfg:mars_sangnum_vegetal_decoration", "tfg:mars/surface/globulagus") + event.add("tfg:mars_sangnum_vegetal_decoration", "tfg:mars/surface/lamellarium") + event.add("tfg:mars_sangnum_vegetal_decoration", "tfg:mars/surface/ruscus") + // Top layer + event.add("tfg:mars_top_layer_modification", "tfg:glow_lichen") event.add("tfg:mars_top_layer_modification", "tfc:surface_loose_rocks") //#endregion diff --git a/kubejs/server_scripts/advancedperipherals/recipes.js b/kubejs/server_scripts/advancedperipherals/recipes.js index 52d6f9412..543e4f6be 100644 --- a/kubejs/server_scripts/advancedperipherals/recipes.js +++ b/kubejs/server_scripts/advancedperipherals/recipes.js @@ -48,14 +48,6 @@ const registerAdvancedPeripheralsRecipes = (event) => { .duration(1200) .EUt(GTValues.VA[GTValues.HV]) - //Redstone Integrator - event.recipes.gtceu.assembler('advancedperipherals:assembler/redstone_integrator') - .itemInputs('1x computercraft:wired_modem', '1x gtceu:mv_machine_casing', '10x vintageimprovements:redstone_module', '1x ae2:redstone_card', '2x gtceu:transistor', '1x gtceu:mv_emitter') - .circuit(4) - .itemOutputs('advancedperipherals:redstone_integrator') - .duration(1200) - .EUt(GTValues.VA[GTValues.MV]) - //Block Reader event.recipes.gtceu.assembler('advancedperipherals:assembler/block_reader') .itemInputs('1x computercraft:wired_modem', '1x gtceu:mv_machine_casing', '1x gtceu:lv_scanner', '1x gtceu:mv_sensor', '1x gtceu:mv_emitter', '1x #forge:lenses/amethyst') diff --git a/kubejs/server_scripts/advancedperipherals/recipes.recycling.js b/kubejs/server_scripts/advancedperipherals/recipes.recycling.js index f89581acd..2950f4d3a 100644 --- a/kubejs/server_scripts/advancedperipherals/recipes.recycling.js +++ b/kubejs/server_scripts/advancedperipherals/recipes.recycling.js @@ -120,29 +120,6 @@ function registerAdvancedPeripheralsRecyclingRecipes(event) { .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) .EUt(GTValues.VA[GTValues.LV]) - // Redstone Integrator - event.recipes.gtceu.macerator('advancedperipherals:macerator/recycling/redstone_integrator') - .itemInputs('advancedperipherals:redstone_integrator') - .itemOutputs( - ChemicalHelper.get(TagPrefix.dust, GTMaterials.RedAlloy, 6), - ChemicalHelper.get(TagPrefix.dust, GTMaterials.Brass, 5), - ChemicalHelper.get(TagPrefix.dust, GTMaterials.Aluminium, 4) - ) - .duration(GTMaterials.RedAlloy.getMass() * 6) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.arc_furnace('advancedperipherals:arc_furnace/recycling/redstone_integrator') - .itemInputs('advancedperipherals:redstone_integrator') - .itemOutputs( - ChemicalHelper.get(TagPrefix.ingot, GTMaterials.RedAlloy, 6), - ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Brass, 5), - ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Aluminium, 4) - ) - .duration(GTMaterials.RedAlloy.getMass() * 6) - .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) - .EUt(GTValues.VA[GTValues.LV]) - // Block Reader event.recipes.gtceu.macerator('advancedperipherals:macerator/recycling/block_reader') .itemInputs('advancedperipherals:block_reader') diff --git a/kubejs/server_scripts/ae2/recipes.js b/kubejs/server_scripts/ae2/recipes.js index 60a4f168d..39a5114cb 100644 --- a/kubejs/server_scripts/ae2/recipes.js +++ b/kubejs/server_scripts/ae2/recipes.js @@ -2162,8 +2162,8 @@ global.MINECRAFT_DYE_NAMES.forEach(dye => { // Quantum Link Chamber event.recipes.gtceu.assembly_line('ae2:quantum_link') .itemInputs( - '8x ae2:fluix_pearl', - 'gtceu:fusion_glass', + '8x tfg:cryo_fluix_pearl', + 'ae2:quartz_glass', '32x megacells:accumulation_processor', '32x megacells:accumulation_processor', '32x ae2:engineering_processor', @@ -2179,12 +2179,11 @@ global.MINECRAFT_DYE_NAMES.forEach(dye => { 'gtceu:max_battery') .inputFluids(Fluid.of('tfg:fluix', 144*2000)) .inputFluids(Fluid.of('tfg:cryogenized_fluix', 144*1500)) - .stationResearch(b => b.researchStack(Item.of('minecraft:glass')).EUt(GTValues.VA[GTValues.UV]).CWUt(256)) + .stationResearch(b => b.researchStack(Item.of('ae2:quartz_glass')).EUt(GTValues.VA[GTValues.UV]).CWUt(256)) .dimension('ad_astra:moon') .itemOutputs('ae2:quantum_link') .duration(700) .EUt(GTValues.VA[GTValues.UHV]) - .cleanroom(CleanroomType.CLEANROOM) // Chemical Reactor event.recipes.gtceu.chemical_reactor('ae2:fluix_pearl') diff --git a/kubejs/server_scripts/afc/tags.js b/kubejs/server_scripts/afc/tags.js index 7f5f60616..33d35c550 100644 --- a/kubejs/server_scripts/afc/tags.js +++ b/kubejs/server_scripts/afc/tags.js @@ -22,6 +22,7 @@ const registerAFCItemTags = (event) => { event.add('firmalife:wine_shelves', `afc:wood/wine_shelf/${woodType}`) event.add('firmalife:stomping_barrels', `afc:wood/stomping_barrel/${woodType}`) event.add('firmalife:barrel_presses', `afc:wood/barrel_press/${woodType}`) + event.add('tfc:sewing_tables', `afc:wood/sewing_table/${woodType}`) }) //Hardwood Tags diff --git a/kubejs/server_scripts/beneath/recipes.js b/kubejs/server_scripts/beneath/recipes.js index c28c32fbd..7289608a4 100644 --- a/kubejs/server_scripts/beneath/recipes.js +++ b/kubejs/server_scripts/beneath/recipes.js @@ -108,7 +108,7 @@ const registerBeneathRecipes = (event) => { 'D D' ], { A: '#forge:leather', - B: '#forge:shears', + B: '#forge:tools/knives', C: 'beneath:wood/planks/crimson', D: 'beneath:wood/log/crimson' }).id('tfg:shaped/crimson_sewing_table') @@ -138,7 +138,7 @@ const registerBeneathRecipes = (event) => { 'D D' ], { A: '#forge:leather', - B: '#forge:shears', + B: '#forge:tools/knives', C: 'beneath:wood/planks/warped', D: 'beneath:wood/log/warped' }).id('tfg:shaped/warped_sewing_table') diff --git a/kubejs/server_scripts/beneath/tags.js b/kubejs/server_scripts/beneath/tags.js index df455effa..4550fb5c7 100644 --- a/kubejs/server_scripts/beneath/tags.js +++ b/kubejs/server_scripts/beneath/tags.js @@ -42,9 +42,16 @@ const registerBeneathItemTags = (event) => { event.add('forge:mushrooms', '#beneath:mushrooms') event.remove('beneath:sparks_on_sulfur') + + event.add('tfc:firepit_kindling', 'beneath:crimson_straw') + event.add('tfc:firepit_kindling', 'beneath:warped_straw') + event.add('tfc:pit_kiln_straw', 'beneath:crimson_straw') + event.add('tfc:pit_kiln_straw', 'beneath:warped_straw') event.remove('minecraft:leaves', 'beneath:wood/leaves/crimson') event.remove('minecraft:leaves', 'beneath:wood/leaves/warped') event.add('tfg:do_not_destroy_in_space', 'beneath:wood/leaves/crimson') event.add('tfg:do_not_destroy_in_space', 'beneath:wood/leaves/warped') + event.add('tfc:sewing_tables', 'beneath:wood/sewing_table/crimson') + event.add('tfc:sewing_tables', 'beneath:wood/sewing_table/warped') } \ No newline at end of file diff --git a/kubejs/server_scripts/computer_craft/recipes.js b/kubejs/server_scripts/computer_craft/recipes.js index 821523833..cd986465c 100644 --- a/kubejs/server_scripts/computer_craft/recipes.js +++ b/kubejs/server_scripts/computer_craft/recipes.js @@ -2,242 +2,250 @@ "use strict"; const registerComputerCraftRecipes = (event) => { - - registerComputerCraftRecyclingRecipes(event); - // Удаление рецептов мода - event.remove({ not: [ - { id: 'computercraft:printed_pages' }, - { id: 'computercraft:printed_book' }, - ], mod: 'computercraft' }); + registerComputerCraftRecyclingRecipes(event); - // Networking Cable - event.recipes.gtceu.assembler('computercraft:cable') - .itemInputs('ae2:fluix_glass_cable') - .inputFluids(Fluid.of('gtceu:redstone', 288)) - .itemOutputs('computercraft:cable') - .duration(80) - .EUt(120) - - // Wireless Modem Normal - event.shaped('computercraft:wireless_modem_normal', [ - ' A ', - 'BCB', - ' D ' - ], { - A: 'gtceu:hv_sensor', - B: 'ae2:calculation_processor', - C: '#gtceu:circuits/hv', - D: 'computercraft:cable', - }).id('tfg:crafting/wireless_modem_normal') + // Удаление рецептов мода + event.remove({ + not: [ + { id: 'computercraft:printed_pages' }, + { id: 'computercraft:printed_book' }, + ], mod: 'computercraft' + }); - // Wireless Modem Advanced - event.shaped('computercraft:wireless_modem_advanced', [ - ' A ', - 'BCB', - ' D ' - ], { - A: 'ae2:wireless_receiver', - B: 'ae2:calculation_processor', - C: '#gtceu:circuits/hv', - D: 'computercraft:cable', - }).id('tfg:crafting/wireless_modem_advanced') + // Networking Cable + event.recipes.gtceu.assembler('computercraft:cable') + .itemInputs('ae2:fluix_glass_cable') + .inputFluids(Fluid.of('gtceu:redstone', 288)) + .itemOutputs('computercraft:cable') + .duration(80) + .EUt(120) - // Monitor Normal - event.shaped('computercraft:monitor_normal', [ - 'ABA', - 'CDC', - 'EFE' - ], { - A: 'gtceu:magnesium_diboride_single_wire', - B: 'gtceu:computer_monitor_cover', - C: 'ae2:calculation_processor', - D: 'gtceu:mv_machine_casing', - E: 'computercraft:cable', - F: '#gtceu:circuits/mv', - }).id('tfg:crafting/monitor_normal') + // Wireless Modem Normal + event.shaped('computercraft:wireless_modem_normal', [ + ' A ', + 'BCB', + ' D ' + ], { + A: 'gtceu:hv_sensor', + B: 'ae2:calculation_processor', + C: '#gtceu:circuits/hv', + D: 'computercraft:cable', + }).id('tfg:crafting/wireless_modem_normal') - // Monitor Advanced - event.shaped('computercraft:monitor_advanced', [ - 'ABA', - 'CDC', - 'EFE' - ], { - A: 'gtceu:mercury_barium_calcium_cuprate_single_wire', - B: 'gtceu:computer_monitor_cover', - C: 'ae2:calculation_processor', - D: 'gtceu:hv_machine_casing', - E: 'computercraft:cable', - F: '#gtceu:circuits/hv', - }).id('tfg:crafting/monitor_advanced') + // Wireless Modem Advanced + event.shaped('computercraft:wireless_modem_advanced', [ + ' A ', + 'BCB', + ' D ' + ], { + A: 'ae2:wireless_receiver', + B: 'ae2:calculation_processor', + C: '#gtceu:circuits/hv', + D: 'computercraft:cable', + }).id('tfg:crafting/wireless_modem_advanced') - // Disk Drive - event.shaped('computercraft:disk_drive', [ - 'ABA', - 'CDC', - 'AEA' - ], { - A: 'computercraft:cable', - B: 'ae2:drive', - C: '#gtceu:circuits/mv', - D: 'gtceu:mv_machine_casing', - E: 'gtceu:mv_sensor', - }).id('tfg:crafting/disk_drive') + // Monitor Normal + event.shaped('computercraft:monitor_normal', [ + 'ABA', + 'CDC', + 'EFE' + ], { + A: 'gtceu:magnesium_diboride_single_wire', + B: 'gtceu:computer_monitor_cover', + C: 'ae2:calculation_processor', + D: 'gtceu:mv_machine_casing', + E: 'computercraft:cable', + F: '#gtceu:circuits/mv', + }).id('tfg:crafting/monitor_normal') - // Speaker - event.shaped('computercraft:speaker', [ - ' A ', - 'BCB', - ' D ' - ], { - A: 'minecraft:note_block', - B: 'computercraft:cable', - C: 'gtceu:mv_machine_casing', - D: '#gtceu:circuits/mv', - }).id('tfg:crafting/speaker') + // Monitor Advanced + event.shaped('computercraft:monitor_advanced', [ + 'ABA', + 'CDC', + 'EFE' + ], { + A: 'gtceu:mercury_barium_calcium_cuprate_single_wire', + B: 'gtceu:computer_monitor_cover', + C: 'ae2:calculation_processor', + D: 'gtceu:hv_machine_casing', + E: 'computercraft:cable', + F: '#gtceu:circuits/hv', + }).id('tfg:crafting/monitor_advanced') - // Printer - event.shaped('computercraft:printer', [ - 'ABC', - 'DED', - 'FBF' - ], { - A: 'gtceu:mv_electric_motor', - B: '#gtceu:circuits/mv', - C: 'gtceu:mv_robot_arm', - D: 'computercraft:cable', - E: 'gtceu:hv_machine_casing', - F: 'gtceu:mv_conveyor_module' - }).id('tfg:crafting/printer') + // Disk Drive + event.shaped('computercraft:disk_drive', [ + 'ABA', + 'CDC', + 'AEA' + ], { + A: 'computercraft:cable', + B: 'ae2:drive', + C: '#gtceu:circuits/mv', + D: 'gtceu:mv_machine_casing', + E: 'gtceu:mv_sensor', + }).id('tfg:crafting/disk_drive') - // Wired Modem - event.shaped('computercraft:wired_modem', [ - ' A ', - 'BCB', - 'BDB' - ], { - A: 'gtceu:mv_sensor', - B: 'computercraft:cable', - C: '#gtceu:circuits/mv', - D: 'ae2:calculation_processor', - }).id('tfg:crafting/wired_modem') + // Speaker + event.shaped('computercraft:speaker', [ + ' A ', + 'BCB', + ' D ' + ], { + A: 'minecraft:note_block', + B: 'computercraft:cable', + C: 'gtceu:mv_machine_casing', + D: '#gtceu:circuits/mv', + }).id('tfg:crafting/speaker') - event.shapeless('computercraft:wired_modem', ['computercraft:wired_modem_full']) - .id('tfg:crafting/wired_modem_shapeless') + // Printer + event.shaped('computercraft:printer', [ + 'ABC', + 'DED', + 'FBF' + ], { + A: 'gtceu:mv_electric_motor', + B: '#gtceu:circuits/mv', + C: 'gtceu:mv_robot_arm', + D: 'computercraft:cable', + E: 'gtceu:hv_machine_casing', + F: 'gtceu:mv_conveyor_module' + }).id('tfg:crafting/printer') - event.shapeless('computercraft:wired_modem_full', ['computercraft:wired_modem']) - .id('tfg:crafting/wired_modem_full_shapeless') + // Wired Modem + event.shaped('computercraft:wired_modem', [ + ' A ', + 'BCB', + 'BDB' + ], { + A: 'gtceu:mv_sensor', + B: 'computercraft:cable', + C: '#gtceu:circuits/mv', + D: 'ae2:calculation_processor', + }).id('tfg:crafting/wired_modem') - // Computer Normal + event.shapeless('computercraft:wired_modem', ['computercraft:wired_modem_full']) + .id('tfg:crafting/wired_modem_shapeless') + + event.shapeless('computercraft:wired_modem_full', ['computercraft:wired_modem']) + .id('tfg:crafting/wired_modem_full_shapeless') + + // Computer Normal event.recipes.gtceu.assembler('computercraft:assembler/computer_normal') - .itemInputs('1x gtceu:mv_machine_casing','2x #gtceu:circuits/hv','3x #forge:double_wires/magnesium_diboride', '2x #gtceu:batteries/mv', '4x computercraft:cable', '8x gtceu:cpu_chip', '1x gtceu:computer_monitor_cover') + .itemInputs('1x gtceu:mv_machine_casing', '2x #gtceu:circuits/hv', '3x #forge:double_wires/magnesium_diboride', '2x #gtceu:batteries/mv', '4x computercraft:cable', '8x gtceu:cpu_chip', '1x gtceu:computer_monitor_cover') .circuit(4) .itemOutputs('computercraft:computer_normal') .duration(1200) .EUt(GTValues.VA[GTValues.MV]) - // Computer Advanced + // Computer Advanced event.recipes.gtceu.assembler('computercraft:assembler/computer_advanced') - .itemInputs('1x gtceu:hv_machine_casing','2x #gtceu:circuits/ev','3x #forge:double_wires/mercury_barium_calcium_cuprate', '2x #gtceu:batteries/hv', '4x computercraft:cable', '12x gtceu:soc', '1x gtceu:computer_monitor_cover') + .itemInputs('1x gtceu:hv_machine_casing', '2x #gtceu:circuits/ev', '3x #forge:double_wires/mercury_barium_calcium_cuprate', '2x #gtceu:batteries/hv', '4x computercraft:cable', '12x gtceu:soc', '1x gtceu:computer_monitor_cover') .circuit(4) .itemOutputs('computercraft:computer_advanced') .duration(1200) .EUt(GTValues.VA[GTValues.HV]) - // Turtle Normal + // Turtle Normal event.recipes.gtceu.assembler('computercraft:assembler/turtle_normal') - .itemInputs('1x computercraft:computer_normal','2x #gtceu:circuits/ev','1x gtceu:steel_crate', '2x gtceu:hv_conveyor_module', '2x gtceu:hv_robot_arm', '1x gtceu:hv_emitter', '1x gtceu:hv_sensor', '1x gtceu:hv_fluid_regulator') + .itemInputs('1x computercraft:computer_normal', '2x #gtceu:circuits/ev', '1x gtceu:steel_crate', '2x gtceu:hv_conveyor_module', '2x gtceu:hv_robot_arm', '1x gtceu:hv_emitter', '1x gtceu:hv_sensor', '1x gtceu:hv_fluid_regulator') .circuit(4) .itemOutputs('computercraft:turtle_normal') .duration(1200) .EUt(GTValues.VA[GTValues.HV]) - // Turtle Advanced + // Turtle Advanced event.recipes.gtceu.assembler('computercraft:assembler/turtle_advanced') - .itemInputs('1x computercraft:computer_advanced','2x #gtceu:circuits/iv','1x gtceu:aluminium_crate', '2x gtceu:ev_conveyor_module', '2x gtceu:ev_robot_arm', '1x gtceu:ev_emitter', '1x gtceu:ev_sensor', '1x gtceu:ev_fluid_regulator') + .itemInputs('1x computercraft:computer_advanced', '2x #gtceu:circuits/iv', '1x gtceu:aluminium_crate', '2x gtceu:ev_conveyor_module', '2x gtceu:ev_robot_arm', '1x gtceu:ev_emitter', '1x gtceu:ev_sensor', '1x gtceu:ev_fluid_regulator') .circuit(4) .itemOutputs('computercraft:turtle_advanced') .duration(1200) .EUt(GTValues.VA[GTValues.EV]) - // Disk Crafts - for (let i = 0; i < 16; i++) { - event.recipes.gtceu.chemical_bath('computercraft:disk' + `${global.MINECRAFT_DYE_NAMES[i]}`) - .itemInputs('ae2:blank_pattern') - .inputFluids(Fluid.of(`tfc:${global.MINECRAFT_DYE_NAMES[i]}_dye`, 288)) - .itemOutputs(Item.of('computercraft:disk', global.COMPUTER_CRAFT_DISCS[i])) - .category(GTRecipeCategories.CHEM_DYES) - .duration(20) - .EUt(7) - } + // Disk Crafts + for (let i = 0; i < 16; i++) { + event.recipes.gtceu.chemical_bath('computercraft:disk' + `${global.MINECRAFT_DYE_NAMES[i]}`) + .itemInputs('ae2:blank_pattern') + .inputFluids(Fluid.of(`tfc:${global.MINECRAFT_DYE_NAMES[i]}_dye`, 288)) + .itemOutputs(Item.of('computercraft:disk', global.COMPUTER_CRAFT_DISCS[i])) + .category(GTRecipeCategories.CHEM_DYES) + .duration(20) + .EUt(7) + } - // Normal Pocket Computers - // Pocket Computer Normal - event.shaped('computercraft:pocket_computer_normal', [ - 'ABA', - 'CDE', - 'FGF' - ], { - A: 'ae2:wireless_receiver', - B: 'gtceu:mercury_barium_calcium_cuprate_single_wire', - C: '#gtceu:batteries/hv', - D: 'ae2:terminal', - E: 'gtceu:hv_emitter', - F: '#gtceu:circuits/ev', - G: '#forge:plates/titanium' - }).id('tfg:crafting/pocket_computer_normal') + // Normal Pocket Computers + // Pocket Computer Normal + event.shaped('computercraft:pocket_computer_normal', [ + 'ABA', + 'CDE', + 'FGF' + ], { + A: 'ae2:wireless_receiver', + B: 'gtceu:mercury_barium_calcium_cuprate_single_wire', + C: '#gtceu:batteries/hv', + D: 'ae2:terminal', + E: 'gtceu:hv_emitter', + F: '#gtceu:circuits/ev', + G: '#forge:plates/titanium' + }).id('tfg:crafting/pocket_computer_normal') - // Pocket Computer Normal Upgrade : Wireless Modem Advanced - event.shapeless(Item.of('computercraft:pocket_computer_normal', '{Upgrade:"computercraft:wireless_modem_advanced"}'), [ - 'computercraft:pocket_computer_normal', - 'computercraft:wireless_modem_advanced' - ]).id('computercraft:ender_pocket_computer_normal_shapless') - - // Pocket Computer Normal Upgrade : Wireless Modem Normal - event.shapeless(Item.of('computercraft:pocket_computer_normal', '{Upgrade:"computercraft:wireless_modem_normal"}'), [ - 'computercraft:pocket_computer_normal', - 'computercraft:wireless_modem_normal' - ]).id('computercraft:wireless_pocket_computer_normal_shapless') + // Pocket Computer Normal Upgrade : Wireless Modem Advanced + event.shapeless(Item.of('computercraft:pocket_computer_normal', '{Upgrade:"computercraft:wireless_modem_advanced"}'), [ + 'computercraft:pocket_computer_normal', + 'computercraft:wireless_modem_advanced' + ]).id('computercraft:ender_pocket_computer_normal_shapless') - // Pocket Computer Normal Upgrade : Speaker - event.shapeless(Item.of('computercraft:pocket_computer_normal', '{Upgrade:"computercraft:speaker"}'), [ - 'computercraft:pocket_computer_normal', - 'computercraft:speaker' - ]).id('computercraft:noisy_pocket_computer_normal_shapless') + // Pocket Computer Normal Upgrade : Wireless Modem Normal + event.shapeless(Item.of('computercraft:pocket_computer_normal', '{Upgrade:"computercraft:wireless_modem_normal"}'), [ + 'computercraft:pocket_computer_normal', + 'computercraft:wireless_modem_normal' + ]).id('computercraft:wireless_pocket_computer_normal_shapless') - // Advanced Pocket Computers - // Pocket Computer Advanced - event.shaped('computercraft:pocket_computer_advanced', [ - 'ABA', - 'CDE', - 'FGF' - ], { - A: 'ae2:wireless_receiver', - B: 'gtceu:uranium_triplatinum_single_wire', - C: '#gtceu:batteries/ev', - D: 'ae2:terminal', - E: 'gtceu:ev_emitter', - F: '#gtceu:circuits/iv', - G: '#forge:plates/tungsten_steel' - }).id('tfg:crafting/pocket_computer_advanced') + // Pocket Computer Normal Upgrade : Speaker + event.shapeless(Item.of('computercraft:pocket_computer_normal', '{Upgrade:"computercraft:speaker"}'), [ + 'computercraft:pocket_computer_normal', + 'computercraft:speaker' + ]).id('computercraft:noisy_pocket_computer_normal_shapless') - // Pocket Computer Advanced Upgrade : Wireless Modem Advanced - event.shapeless(Item.of('computercraft:pocket_computer_advanced', '{Upgrade:"computercraft:wireless_modem_advanced"}'), [ - 'computercraft:pocket_computer_advanced', - 'computercraft:wireless_modem_advanced' - ]).id('computercraft:ender_pocket_computer_advanced_shapless') - - // Pocket Computer Advanced Upgrade : Wireless Modem Normal - event.shapeless(Item.of('computercraft:pocket_computer_advanced', '{Upgrade:"computercraft:wireless_modem_normal"}'), [ - 'computercraft:pocket_computer_advanced', - 'computercraft:wireless_modem_normal' - ]).id('computercraft:wireless_pocket_computer_advanced_shapless') + // Advanced Pocket Computers + // Pocket Computer Advanced + event.shaped('computercraft:pocket_computer_advanced', [ + 'ABA', + 'CDE', + 'FGF' + ], { + A: 'ae2:wireless_receiver', + B: 'gtceu:uranium_triplatinum_single_wire', + C: '#gtceu:batteries/ev', + D: 'ae2:terminal', + E: 'gtceu:ev_emitter', + F: '#gtceu:circuits/iv', + G: '#forge:plates/tungsten_steel' + }).id('tfg:crafting/pocket_computer_advanced') - // Pocket Computer Advanced Upgrade : Speaker - event.shapeless(Item.of('computercraft:pocket_computer_advanced', '{Upgrade:"computercraft:speaker"}'), [ - 'computercraft:pocket_computer_advanced', - 'computercraft:speaker' - ]).id('computercraft:noisy_pocket_computer_advanced_shapless') + // Pocket Computer Advanced Upgrade : Wireless Modem Advanced + event.shapeless(Item.of('computercraft:pocket_computer_advanced', '{Upgrade:"computercraft:wireless_modem_advanced"}'), [ + 'computercraft:pocket_computer_advanced', + 'computercraft:wireless_modem_advanced' + ]).id('computercraft:ender_pocket_computer_advanced_shapless') - + // Pocket Computer Advanced Upgrade : Wireless Modem Normal + event.shapeless(Item.of('computercraft:pocket_computer_advanced', '{Upgrade:"computercraft:wireless_modem_normal"}'), [ + 'computercraft:pocket_computer_advanced', + 'computercraft:wireless_modem_normal' + ]).id('computercraft:wireless_pocket_computer_advanced_shapless') + + // Pocket Computer Advanced Upgrade : Speaker + event.shapeless(Item.of('computercraft:pocket_computer_advanced', '{Upgrade:"computercraft:speaker"}'), [ + 'computercraft:pocket_computer_advanced', + 'computercraft:speaker' + ]).id('computercraft:noisy_pocket_computer_advanced_shapless') + + //Redstone Integrator + event.recipes.gtceu.assembler('computercraft:assembler/redstone_relay') + .itemInputs('1x computercraft:wired_modem', '1x gtceu:mv_machine_casing', '10x vintageimprovements:redstone_module', '1x ae2:redstone_card', '2x gtceu:transistor', '1x gtceu:mv_emitter') + .circuit(4) + .itemOutputs('computercraft:redstone_relay') + .duration(1200) + .EUt(GTValues.VA[GTValues.MV]) } \ No newline at end of file diff --git a/kubejs/server_scripts/computer_craft/recipes.recycling.js b/kubejs/server_scripts/computer_craft/recipes.recycling.js index fa32b792a..9ca5e3105 100644 --- a/kubejs/server_scripts/computer_craft/recipes.recycling.js +++ b/kubejs/server_scripts/computer_craft/recipes.recycling.js @@ -10,7 +10,7 @@ function registerComputerCraftRecyclingRecipes(event) { ChemicalHelper.get(TagPrefix.dust, GTMaterials.Aluminium, 5), ChemicalHelper.get(TagPrefix.dust, GTMaterials.BatteryAlloy, 6), ChemicalHelper.get(TagPrefix.dust, GTMaterials.MagnesiumDiboride, 1) - ) + ) .duration(GTMaterials.Aluminium.getMass() * 5) .category(GTRecipeCategories.MACERATOR_RECYCLING) .EUt(GTValues.VA[GTValues.ULV]) @@ -33,7 +33,7 @@ function registerComputerCraftRecyclingRecipes(event) { ChemicalHelper.get(TagPrefix.dust, GTMaterials.StainlessSteel, 4), ChemicalHelper.get(TagPrefix.dust, GTMaterials.BatteryAlloy, 8), ChemicalHelper.get(TagPrefix.dust, GTMaterials.MercuryBariumCalciumCuprate, 1) - ) + ) .duration(GTMaterials.StainlessSteel.getMass() * 4) .category(GTRecipeCategories.MACERATOR_RECYCLING) .EUt(GTValues.VA[GTValues.ULV]) @@ -57,7 +57,7 @@ function registerComputerCraftRecyclingRecipes(event) { ChemicalHelper.get(TagPrefix.dust, GTMaterials.BatteryAlloy, 6), ChemicalHelper.get(TagPrefix.dust, GTMaterials.Steel, 12), ChemicalHelper.get(TagPrefix.dust, GTMaterials.Aluminium, 4) - ) + ) .duration(GTMaterials.StainlessSteel.getMass() * 20) .category(GTRecipeCategories.MACERATOR_RECYCLING) .EUt(GTValues.VA[GTValues.ULV]) @@ -82,7 +82,7 @@ function registerComputerCraftRecyclingRecipes(event) { ChemicalHelper.get(TagPrefix.dust, GTMaterials.Aluminium, 15), ChemicalHelper.get(TagPrefix.dust, GTMaterials.BatteryAlloy, 9), ChemicalHelper.get(TagPrefix.dust, GTMaterials.StainlessSteel, 4) - ) + ) .duration(GTMaterials.Titanium.getMass() * 20) .category(GTRecipeCategories.MACERATOR_RECYCLING) .EUt(GTValues.VA[GTValues.ULV]) @@ -94,7 +94,7 @@ function registerComputerCraftRecyclingRecipes(event) { ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Aluminium, 15), ChemicalHelper.get(TagPrefix.ingot, GTMaterials.BatteryAlloy, 9), ChemicalHelper.get(TagPrefix.ingot, GTMaterials.StainlessSteel, 4) - ) + ) .duration(GTMaterials.Titanium.getMass() * 20) .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) .EUt(GTValues.VA[GTValues.LV]) @@ -107,7 +107,7 @@ function registerComputerCraftRecyclingRecipes(event) { ChemicalHelper.get(TagPrefix.dust, GTMaterials.Chromium, 2), ChemicalHelper.get(TagPrefix.dust, GTMaterials.BatteryAlloy, 4), ChemicalHelper.get(TagPrefix.dust, GTMaterials.Platinum, 2) - ) + ) .duration(GTMaterials.Titanium.getMass() * 9) .category(GTRecipeCategories.MACERATOR_RECYCLING) .EUt(GTValues.VA[GTValues.ULV]) @@ -119,7 +119,7 @@ function registerComputerCraftRecyclingRecipes(event) { ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Chromium, 2), ChemicalHelper.get(TagPrefix.ingot, GTMaterials.BatteryAlloy, 4), ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Platinum, 2) - ) + ) .duration(GTMaterials.Titanium.getMass() * 9) .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) .EUt(GTValues.VA[GTValues.LV]) @@ -131,7 +131,7 @@ function registerComputerCraftRecyclingRecipes(event) { ChemicalHelper.get(TagPrefix.dust, GTMaterials.Titanium, 9), ChemicalHelper.get(TagPrefix.dust, GTMaterials.Steel, 1), ChemicalHelper.get(TagPrefix.dust, GTMaterials.Platinum, 2) - ) + ) .duration(GTMaterials.Titanium.getMass() * 9) .category(GTRecipeCategories.MACERATOR_RECYCLING) .EUt(GTValues.VA[GTValues.ULV]) @@ -142,7 +142,7 @@ function registerComputerCraftRecyclingRecipes(event) { ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Titanium, 9), ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Steel, 1), ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Platinum, 2) - ) + ) .duration(GTMaterials.Titanium.getMass() * 9) .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) .EUt(GTValues.VA[GTValues.LV]) @@ -152,7 +152,7 @@ function registerComputerCraftRecyclingRecipes(event) { .itemInputs('computercraft:monitor_normal') .itemOutputs( ChemicalHelper.get(TagPrefix.dust, GTMaterials.Aluminium, 5) - ) + ) .duration(GTMaterials.Aluminium.getMass() * 5) .category(GTRecipeCategories.MACERATOR_RECYCLING) .EUt(GTValues.VA[GTValues.ULV]) @@ -161,7 +161,7 @@ function registerComputerCraftRecyclingRecipes(event) { .itemInputs('computercraft:monitor_normal') .itemOutputs( ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Aluminium, 5) - ) + ) .duration(GTMaterials.Aluminium.getMass() * 5) .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) .EUt(GTValues.VA[GTValues.LV]) @@ -171,7 +171,7 @@ function registerComputerCraftRecyclingRecipes(event) { .itemInputs('computercraft:monitor_advanced') .itemOutputs( ChemicalHelper.get(TagPrefix.dust, GTMaterials.StainlessSteel, 4) - ) + ) .duration(GTMaterials.StainlessSteel.getMass() * 4) .category(GTRecipeCategories.MACERATOR_RECYCLING) .EUt(GTValues.VA[GTValues.ULV]) @@ -180,7 +180,7 @@ function registerComputerCraftRecyclingRecipes(event) { .itemInputs('computercraft:monitor_advanced') .itemOutputs( ChemicalHelper.get(TagPrefix.ingot, GTMaterials.StainlessSteel, 4) - ) + ) .duration(GTMaterials.StainlessSteel.getMass() * 4) .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) .EUt(GTValues.VA[GTValues.LV]) @@ -193,7 +193,7 @@ function registerComputerCraftRecyclingRecipes(event) { ChemicalHelper.get(TagPrefix.dust, GTMaterials.Cupronickel, 15), ChemicalHelper.get(TagPrefix.dust, GTMaterials.Steel, 2), ChemicalHelper.get(TagPrefix.dust, GTMaterials.Copper, 6) - ) + ) .duration(GTMaterials.Aluminium.getMass() * 15) .category(GTRecipeCategories.MACERATOR_RECYCLING) .EUt(GTValues.VA[GTValues.ULV]) @@ -205,7 +205,7 @@ function registerComputerCraftRecyclingRecipes(event) { ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Cupronickel, 15), ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Steel, 2), ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Copper, 6) - ) + ) .duration(GTMaterials.Aluminium.getMass() * 15) .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) .EUt(GTValues.VA[GTValues.LV]) @@ -217,7 +217,7 @@ function registerComputerCraftRecyclingRecipes(event) { ChemicalHelper.get(TagPrefix.dust, GTMaterials.StainlessSteel, 6), ChemicalHelper.get(TagPrefix.dust, GTMaterials.Titanium, 1), ChemicalHelper.get(TagPrefix.dust, GTMaterials.Steel, 1) - ) + ) .duration(GTMaterials.StainlessSteel.getMass() * 6) .category(GTRecipeCategories.MACERATOR_RECYCLING) .EUt(GTValues.VA[GTValues.ULV]) @@ -228,8 +228,32 @@ function registerComputerCraftRecyclingRecipes(event) { ChemicalHelper.get(TagPrefix.ingot, GTMaterials.StainlessSteel, 6), ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Titanium, 1), ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Steel, 1) - ) + ) .duration(GTMaterials.StainlessSteel.getMass() * 6) .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) .EUt(GTValues.VA[GTValues.LV]) + + + // Redstone Relay + event.recipes.gtceu.macerator('computercraft:macerator/recycling/redstone_relay') + .itemInputs('computercraft:redstone_relay') + .itemOutputs( + ChemicalHelper.get(TagPrefix.dust, GTMaterials.RedAlloy, 6), + ChemicalHelper.get(TagPrefix.dust, GTMaterials.Brass, 5), + ChemicalHelper.get(TagPrefix.dust, GTMaterials.Aluminium, 4) + ) + .duration(GTMaterials.RedAlloy.getMass() * 6) + .category(GTRecipeCategories.MACERATOR_RECYCLING) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.arc_furnace('computercraft:arc_furnace/recycling/redstone_relay') + .itemInputs('computercraft:redstone_relay') + .itemOutputs( + ChemicalHelper.get(TagPrefix.ingot, GTMaterials.RedAlloy, 6), + ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Brass, 5), + ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Aluminium, 4) + ) + .duration(GTMaterials.RedAlloy.getMass() * 6) + .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) + .EUt(GTValues.VA[GTValues.LV]) } \ No newline at end of file diff --git a/kubejs/server_scripts/create/recipes.js b/kubejs/server_scripts/create/recipes.js index 017305501..1eb613313 100644 --- a/kubejs/server_scripts/create/recipes.js +++ b/kubejs/server_scripts/create/recipes.js @@ -1948,18 +1948,20 @@ const registerCreateRecipes = (event) => { event.shaped('create:brown_toolbox', [ 'CEC', - 'BAB', + 'BFB', 'DAD' ], { A: '#forge:chests/wooden', B: '#forge:plates/brass', C: '#forge:bolts/brass', D: '#forge:screws', - E: '#forge:tools/screwdrivers' + E: '#forge:tools/screwdrivers', + F: 'gtceu:treated_wood_frame' }).id('tfg:create/shaped/brown_toolbox') event.recipes.gtceu.assembler('create:brown_toolbox') - .itemInputs('2x #forge:chests/wooden', '2x #forge:plates/brass', '2x #forge:bolts/brass', '2x #forge:screws') + .itemInputs('#forge:chests/wooden', 'gtceu:treated_wood_frame', '2x #forge:plates/brass', + '2x #forge:bolts/brass', '2x #forge:screws') .itemOutputs('create:brown_toolbox') .duration(50) .EUt(GTValues.VA[GTValues.ULV]) diff --git a/kubejs/server_scripts/create/tags.js b/kubejs/server_scripts/create/tags.js index a452f380f..85ab5e308 100644 --- a/kubejs/server_scripts/create/tags.js +++ b/kubejs/server_scripts/create/tags.js @@ -63,6 +63,9 @@ const registerCreateItemTags = (event) => { event.add('create:non_movable', 'gtceu:mv_super_chest') event.add('create:non_movable', 'gtceu:hv_super_chest') event.add('create:non_movable', 'gtceu:ev_super_chest') + event.add('create:non_movable', 'tfg:spice') + event.add('create:non_movable', 'tfg:geyser_source') + event.add('create:non_movable', 'tfg:geyser_source_small') event.add('c:hidden_from_recipe_viewers', 'create:cardboard_package_12x10') event.add('c:hidden_from_recipe_viewers', 'create:cardboard_package_10x8') @@ -101,15 +104,35 @@ const registerCreateBlockTags = (event) => { event.add('create:chest_mounted_storage', '#forge:chests/wooden') event.add('create:chest_mounted_storage', 'framedblocks:framed_chest') - event.add('create:passive_boiler_heaters', 'minecraft:campfire') + event.remove('create:passive_boiler_heaters', 'minecraft:campfire') + + event.add('create:non_movable', 'gtceu:wood_crate') + event.add('create:non_movable', 'gtceu:bronze_crate') + event.add('create:non_movable', 'gtceu:black_bronze_crate') + event.add('create:non_movable', 'gtceu:bismuth_bronze_crate') + event.add('create:non_movable', 'gtceu:steel_crate') + event.add('create:non_movable', 'gtceu:aluminium_crate') + event.add('create:non_movable', 'gtceu:stainless_steel_crate') + event.add('create:non_movable', 'gtceu:titanium_crate') + event.add('create:non_movable', 'gtceu:tungsten_steel_crate') + event.add('create:non_movable', '#create:toolboxes') + event.add('create:non_movable', 'gtceu:lv_super_chest') + event.add('create:non_movable', 'gtceu:mv_super_chest') + event.add('create:non_movable', 'gtceu:hv_super_chest') + event.add('create:non_movable', 'gtceu:ev_super_chest') + event.add('create:non_movable', 'tfg:spice') + event.add('create:non_movable', 'tfg:geyser_source') + event.add('create:non_movable', 'tfg:geyser_source_small') } const registerCreateFluidTags = (event) => { - // Делаем воду из TFC бесконечной для помпы Create + //Hose Pulley Infinites event.add('create:bottomless/allow', 'tfc:fresh_water') event.add('create:bottomless/allow', 'tfc:salt_water') + event.add('create:bottomless/allow', 'tfg:semiheavy_ammoniacal_water') + event.remove('create:bottomless/allow', 'minecraft:lava') // Добавляем тег для скрытия в EMI event.add('c:hidden_from_recipe_viewers', 'create:chocolate') @@ -126,8 +149,4 @@ const registerCreateFluidTags = (event) => { event.add('create:fan_processing_catalysts/splashing', 'tfc:salt_water') event.add('create:fan_processing_catalysts/splashing', 'tfc:spring_water') event.add('create:fan_processing_catalysts/splashing', 'tfg:semiheavy_ammoniacal_water') - - //Hose Pulley Infinites - event.add('create:bottomless/allow', 'tfg:semiheavy_ammoniacal_water') - event.remove('create:bottomless/allow', 'minecraft:lava') } diff --git a/kubejs/server_scripts/create_additions/recipes.js b/kubejs/server_scripts/create_additions/recipes.js index da063578e..4d40df0d7 100644 --- a/kubejs/server_scripts/create_additions/recipes.js +++ b/kubejs/server_scripts/create_additions/recipes.js @@ -94,134 +94,6 @@ const registerCreateAdditionsRecipes = (event) => { F: '#forge:shafts' }).id('tfg:createadditions/shaped/alternator') - //#region Liquid blaze burners - - event.recipes.tfc.anvil('createaddition:straw', '#forge:plates/tin_alloy', ['punch_last', 'shrink_second_last', 'upset_not_last']) - .tier(3) - .id(`tfc:anvil/straw`) - - event.recipes.gtceu.lathe('assembler:createaddition_straw') - .itemInputs('#forge:plates/tin_alloy') - .itemOutputs('createaddition:straw') - .duration(20 * 6) - .EUt(16) - - event.custom({ - type: 'vintageimprovements:turning', - ingredients: [{ tag: 'forge:plates/tin_alloy' }], - results: [{ item: 'createaddition:straw' }], - processingTime: 20 * 6 - }).id(`tfg:vi/lathe/straw`) - - // the amount is hardcoded to 100mb because create additions sucks - event.custom({ - type: 'createaddition:liquid_burning', - input: { - fluidTag: 'minecraft:lava', - amount: 100 - }, - burnTime: 7 * 9 * 9 - }).id('tfg:createadditions/liquid_burning/lava') - - event.custom({ - type: 'createaddition:liquid_burning', - input: { - fluidTag: 'forge:creosote', - amount: 100 - }, - burnTime: 500 - }).id('tfg:createadditions/liquid_burning/creosote') - - event.custom({ - type: 'createaddition:liquid_burning', - input: { - fluidTag: 'forge:biomass', - amount: 100 - }, - burnTime: 2000 - }).id('tfg:createadditions/liquid_burning/biomass') - - event.custom({ - type: 'createaddition:liquid_burning', - input: { - fluidTag: 'forge:oil', - amount: 100 - }, - burnTime: 400 - }).id('tfg:createadditions/liquid_burning/oil') - - event.custom({ - type: 'createaddition:liquid_burning', - input: { - fluidTag: 'forge:oil_heavy', - amount: 100 - }, - burnTime: 2500 - }).id('tfg:createadditions/liquid_burning/oil_heavy') - - event.custom({ - type: 'createaddition:liquid_burning', - input: { - fluidTag: 'forge:sulfuric_heavy_fuel', - amount: 100 - }, - burnTime: 2500 - }).id('tfg:createadditions/liquid_burning/sulfuric_heavy_fuel') - - event.custom({ - type: 'createaddition:liquid_burning', - input: { - fluidTag: 'forge:heavy_fuel', - amount: 100 - }, - burnTime: 7000 - }).id('tfg:createadditions/liquid_burning/heavy_fuel') - - event.custom({ - type: 'createaddition:liquid_burning', - input: { - fluidTag: 'forge:fish_oil', - amount: 100 - }, - burnTime: 7000 - }).id('tfg:createadditions/liquid_burning/fish_oil') - - event.custom({ - type: 'createaddition:liquid_burning', - input: { - fluid: 'tfc:olive_oil', - amount: 100 - }, - burnTime: 7000 - }).id('tfg:createadditions/liquid_burning/olive_oil') - - event.custom({ - type: 'createaddition:liquid_burning', - input: { - fluid: 'firmalife:soybean_oil', - amount: 100 - }, - burnTime: 7000 - }).id('tfg:createadditions/liquid_burning/soybean_oil') - - event.custom({ - type: 'createaddition:liquid_burning', - input: { - fluidTag: 'forge:seed_oil', - amount: 100 - }, - burnTime: 7000 - }).id('tfg:createadditions/liquid_burning/seed_oil') - - event.custom({ - type: 'createaddition:liquid_burning', - input: { - fluid: 'gtceu:steam', - amount: 100 - }, - burnTime: 1 - }).id('tfg:createadditions/liquid_burning/steam') - //#endregion event.shapeless('createaddition:diamond_grit_sandpaper', ['minecraft:paper', 'tfc:glue', '#forge:dusts/diamond']) .id('tfg:shapeless/diamond_grit_sand_paper') diff --git a/kubejs/server_scripts/createdeco/recipes.js b/kubejs/server_scripts/createdeco/recipes.js index 1b43e3787..40c502bbf 100644 --- a/kubejs/server_scripts/createdeco/recipes.js +++ b/kubejs/server_scripts/createdeco/recipes.js @@ -58,6 +58,12 @@ const registerCreatedecoRecipes = (event) => { event.remove({ type: 'minecraft:stonecutting', input: '#forge:storage_blocks/copper' }) event.remove({ type: 'minecraft:stonecutting', input: '#forge:storage_blocks/steel' }) event.remove({ type: 'minecraft:stonecutting', input: '#forge:storage_blocks/zinc' }) + event.remove({ id: 'createdeco:andesite_sheet_metal' }) + event.remove({ id: 'createdeco:brass_sheet_metal' }) + event.remove({ id: 'createdeco:iron_sheet_metal' }) + event.remove({ id: 'createdeco:copper_sheet_metal' }) + event.remove({ id: 'createdeco:industrial_iron_sheet_metal' }) + event.remove({ id: 'createdeco:zinc_sheet_metal' }) //#endregion //#region Lamp Recipes @@ -499,4 +505,15 @@ const registerCreatedecoRecipes = (event) => { .category(GTRecipeCategories.CHEM_DYES); // #endregion + + // #region Sheet Metal + + event.stonecutting('4x createdeco:andesite_sheet_metal', '#forge:plates/tin_alloy') + event.stonecutting('4x createdeco:brass_sheet_metal', '#forge:plates/brass') + event.stonecutting('4x createdeco:iron_sheet_metal', '#forge:plates/wrought_iron') + event.stonecutting('4x createdeco:copper_sheet_metal', '#forge:plates/copper') + event.stonecutting('4x createdeco:industrial_iron_sheet_metal', '#forge:plates/steel') + event.stonecutting('4x createdeco:zinc_sheet_metal', '#forge:plates/zinc') + + // #endregion }; diff --git a/kubejs/server_scripts/firmaciv/recipes.js b/kubejs/server_scripts/firmaciv/recipes.js index dbb956595..c8f0d6b75 100644 --- a/kubejs/server_scripts/firmaciv/recipes.js +++ b/kubejs/server_scripts/firmaciv/recipes.js @@ -104,6 +104,8 @@ const registerFirmaCivRecipes = (event) => { //#endregion // #region More rope + event.replaceInput({ output: 'firmaciv:rope_coil'}, 'tfc:jute_fiber', '#tfg:burlap_fiber') + event.shaped('firmaciv:rope_coil', [ 'A ', 'AB', diff --git a/kubejs/server_scripts/greate/recipes.js b/kubejs/server_scripts/greate/recipes.js index 122eb5c9e..efd79594b 100644 --- a/kubejs/server_scripts/greate/recipes.js +++ b/kubejs/server_scripts/greate/recipes.js @@ -554,6 +554,13 @@ function registerGreateRecipes(event) { // #region Belt Connector + removeMaceratorRecipe(event, 'macerate_rubber_belt_connector') + removeMaceratorRecipe(event, 'macerate_silicone_rubber_belt_connector') + removeMaceratorRecipe(event, 'macerate_polyethylene_belt_connector') + event.remove({ id: 'gtceu:extractor/extract_rubber_belt_connector' }) + event.remove({ id: 'gtceu:extractor/extract_silicone_rubber_belt_connector' }) + event.remove({ id: 'gtceu:extractor/extract_polyethylene_belt_connector' }) + event.shaped('3x greate:rubber_belt_connector', [ 'C ', 'AAA', @@ -565,11 +572,13 @@ function registerGreateRecipes(event) { }).id('gtceu:shaped/rubber_belt_connector') event.recipes.gtceu.assembler('rubber_belt_connector') - .itemInputs('#forge:plates/rubber') + .itemInputs('gtceu:rubber_plate') .itemOutputs('greate:rubber_belt_connector') .circuit(11) .duration(50) .EUt(GTValues.VA[GTValues.ULV]) + .removePreviousMaterialInfo() + .addMaterialInfo(true) event.shaped('3x greate:silicone_rubber_belt_connector', [ 'C ', @@ -582,11 +591,13 @@ function registerGreateRecipes(event) { }).id('gtceu:shaped/silicone_rubber_belt_connector') event.recipes.gtceu.assembler('silicone_rubber_belt_connector') - .itemInputs('#forge:plates/silicone_rubber') + .itemInputs('gtceu:silicone_rubber_plate') .itemOutputs('greate:silicone_rubber_belt_connector') .circuit(11) .duration(50) .EUt(GTValues.VA[GTValues.ULV]) + .removePreviousMaterialInfo() + .addMaterialInfo(true) event.shaped('3x greate:polyethylene_belt_connector', [ 'C ', @@ -599,11 +610,13 @@ function registerGreateRecipes(event) { }).id('gtceu:shaped/polyethylene_belt_connector') event.recipes.gtceu.assembler('polyethylene_belt_connector') - .itemInputs('#forge:plates/styrene_butadiene_rubber') + .itemInputs('gtceu:styrene_butadiene_rubber_plate') .itemOutputs('greate:polyethylene_belt_connector') .circuit(11) .duration(50) .EUt(GTValues.VA[GTValues.ULV]) + .removePreviousMaterialInfo() + .addMaterialInfo(true) // #endregion diff --git a/kubejs/server_scripts/gregtech/data.js b/kubejs/server_scripts/gregtech/data.js index 1721efdff..ce873bc29 100644 --- a/kubejs/server_scripts/gregtech/data.js +++ b/kubejs/server_scripts/gregtech/data.js @@ -40,6 +40,11 @@ const registerGTCEUHeats = (event) => { makeItemHeatByTagPrefix(TagPrefix.block, material, tfcProperty, 20) makeItemHeatByTagPrefix(TagPrefix.rodLong, material, tfcProperty, 1.429) makeItemHeatByTagPrefix(TagPrefix.gearSmall, material, tfcProperty, 1.429) + makeItemHeatByTagPrefix(TagPrefix.gear, material, tfcProperty, 2.875) + makeItemHeatByTagPrefix(TagPrefix.plate, material, tfcProperty, 2.875) + makeItemHeatByTagPrefix(TagPrefix.plateDouble, material, tfcProperty, 5.75) + makeItemHeatByTagPrefix(TagPrefix.springSmall, material, tfcProperty, 0.567) + makeItemHeatByTagPrefix(TagPrefix.spring, material, tfcProperty, 1.429) makeItemHeatByTagPrefix(TagPrefix.ingot, material, tfcProperty, 1.429) makeItemHeatByTagPrefix(TFGTagPrefix.ingotDouble, material, tfcProperty, 2.875) @@ -161,7 +166,6 @@ function registerGTCEUBedrockFluidVeins(event) { const Registries = Java.loadClass("net.minecraft.core.registries.Registries") const ResourceKey = Java.loadClass("net.minecraft.resources.ResourceKey") - const martianOasisResourceKey = ResourceKey.create(Registries.BIOME, "tfg:mars/martian_oasis") const martianAmberHillsResourceKey = ResourceKey.create(Registries.BIOME, "tfg:mars/amber_hills") const martianAmberPlainsResourceKey = ResourceKey.create(Registries.BIOME, "tfg:mars/amber_plains") const martianMountainsResourceKey = ResourceKey.create(Registries.BIOME, "tfg:mars/martian_mountains") @@ -194,93 +198,15 @@ function registerGTCEUBedrockFluidVeins(event) { // Heavy Ammonical Water in Specific Biome Credit to Monifactory from https://github.com/ThePansmith/Monifactory/blob/main/kubejs/server_scripts/worldgen/fluidVeins.js - event.add('tfg:heavy_ammoniacal_water_oasis', vein => { - vein.dimensions('ad_astra:mars') - vein.fluid(() => Fluid.of('tfg:heavy_ammoniacal_water').fluid) - vein.biomes(350, martianOasisResourceKey) - vein.weight(0) - vein.minimumYield(300) - vein.maximumYield(650) - vein.depletionAmount(1) - vein.depletionChance(20) - vein.depletedYield(20) - }) - - event.add('tfg:heavy_ammoniacal_water_amber_hills', vein => { + event.add('tfg:heavy_ammoniacal_water', vein => { vein.dimensions('ad_astra:mars') vein.fluid(() => Fluid.of('tfg:heavy_ammoniacal_water').fluid) vein.biomes(20, martianAmberHillsResourceKey) - vein.weight(0) - vein.minimumYield(100) - vein.maximumYield(650) - vein.depletionAmount(1) - vein.depletionChance(20) - vein.depletedYield(5) - }) - - event.add('tfg:heavy_ammoniacal_water_amber_plains', vein => { - vein.dimensions('ad_astra:mars') - vein.fluid(() => Fluid.of('tfg:heavy_ammoniacal_water').fluid) vein.biomes(20, martianAmberPlainsResourceKey) - vein.weight(0) - vein.minimumYield(100) - vein.maximumYield(650) - vein.depletionAmount(1) - vein.depletionChance(20) - vein.depletedYield(5) - }) - - event.add('tfg:heavy_ammoniacal_water_mountains', vein => { - vein.dimensions('ad_astra:mars') - vein.fluid(() => Fluid.of('tfg:heavy_ammoniacal_water').fluid) vein.biomes(20, martianMountainsResourceKey) - vein.weight(0) - vein.minimumYield(100) - vein.maximumYield(650) - vein.depletionAmount(1) - vein.depletionChance(20) - vein.depletedYield(5) - }) - - event.add('tfg:heavy_ammoniacal_water_rusticus_hills', vein => { - vein.dimensions('ad_astra:mars') - vein.fluid(() => Fluid.of('tfg:heavy_ammoniacal_water').fluid) vein.biomes(20, martianRusticusHillsResourceKey) - vein.weight(0) - vein.minimumYield(100) - vein.maximumYield(650) - vein.depletionAmount(1) - vein.depletionChance(20) - vein.depletedYield(5) - }) - - event.add('tfg:heavy_ammoniacal_water_rusticus_plains', vein => { - vein.dimensions('ad_astra:mars') - vein.fluid(() => Fluid.of('tfg:heavy_ammoniacal_water').fluid) vein.biomes(20, martianRusticusPlainsResourceKey) - vein.weight(0) - vein.minimumYield(100) - vein.maximumYield(650) - vein.depletionAmount(1) - vein.depletionChance(20) - vein.depletedYield(5) - }) - - event.add('tfg:heavy_ammoniacal_water_sangnum_hills', vein => { - vein.dimensions('ad_astra:mars') - vein.fluid(() => Fluid.of('tfg:heavy_ammoniacal_water').fluid) vein.biomes(20, martianSangnumHillsResourceKey) - vein.weight(0) - vein.minimumYield(100) - vein.maximumYield(650) - vein.depletionAmount(1) - vein.depletionChance(20) - vein.depletedYield(5) - }) - - event.add('tfg:heavy_ammoniacal_water_sangnum_plains', vein => { - vein.dimensions('ad_astra:mars') - vein.fluid(() => Fluid.of('tfg:heavy_ammoniacal_water').fluid) vein.biomes(20, martianSangnumPlainsResourceKey) vein.weight(0) vein.minimumYield(100) @@ -290,18 +216,4 @@ function registerGTCEUBedrockFluidVeins(event) { vein.depletedYield(5) }) - // Ammonia - - event.add('tfg:ammonia_mars_oasis', vein => { - vein.dimensions('ad_astra:mars') - vein.fluid(() => Fluid.of('gtceu:ammonia').fluid) - vein.biomes(400, martianOasisResourceKey) - vein.weight(0) - vein.minimumYield(300) - vein.maximumYield(650) - vein.depletionAmount(1) - vein.depletionChance(20) - vein.depletedYield(20) - }) - -} \ No newline at end of file +} diff --git a/kubejs/server_scripts/gregtech/events.js b/kubejs/server_scripts/gregtech/events.js index fb3458f0f..34a0f1703 100644 --- a/kubejs/server_scripts/gregtech/events.js +++ b/kubejs/server_scripts/gregtech/events.js @@ -3,6 +3,6 @@ PlayerEvents.tick((event) => { const { player } = event; if (player.age % 100 === 0 && player.legsArmorItem === 'gtceu:nanomuscle_leggings') { - player.potionEffects.add("minecraft:speed", 350, 1, true, false); + player.potionEffects.add("minecraft:speed", 350, 0, true, false); } }); diff --git a/kubejs/server_scripts/gregtech/recipes.js b/kubejs/server_scripts/gregtech/recipes.js index 2b09e8271..1a87f60da 100644 --- a/kubejs/server_scripts/gregtech/recipes.js +++ b/kubejs/server_scripts/gregtech/recipes.js @@ -993,6 +993,8 @@ const registerGTCEURecipes = (event) => { event.replaceInput({ mod: 'gtceu' }, 'minecraft:sugar', '#tfg:sugars') event.replaceInput({ mod: 'gtceu' }, 'minecraft:string', '#forge:string') + + event.replaceInput({ id: 'gtceu:shaped/blacklight' }, 'gtceu:tungsten_carbide_screw', '#tfg:components/uv_leds') event.recipes.gtceu.fluid_solidifier('tfg:solidify_glue') .inputFluids(Fluid.of('gtceu:glue', 50)) @@ -1171,6 +1173,8 @@ const registerGTCEURecipes = (event) => { //#region GT Facades + event.remove({ id: 'gtceu:crafting/facade_cover'}) + event.shapeless(Item.of('gtceu:facade_cover', 8, '{Facade: {Count:1b,id:"minecraft:stone"}}'), ['3x #forge:plates/iron', "#tfg:whitelisted/facades"]) .modifyResult((craftingGrid, result) => { let blockID = craftingGrid.find(Ingredient.of("#tfg:whitelisted/facades")).id diff --git a/kubejs/server_scripts/gregtech/recipes.machines.js b/kubejs/server_scripts/gregtech/recipes.machines.js index 4938903fc..3dd8dedc7 100644 --- a/kubejs/server_scripts/gregtech/recipes.machines.js +++ b/kubejs/server_scripts/gregtech/recipes.machines.js @@ -239,17 +239,19 @@ function registerGTCEuMachineRecipes(event) { //#region CokeOven // Coke Oven - event.shaped('gtceu:coke_oven', [ + removeMaceratorRecipe(event, 'macerate_coke_oven') + event.recipes.gtceu.shaped('gtceu:coke_oven', [ 'ABA', 'BCB', 'ABA' ], { A: 'gtceu:coke_oven_bricks', - B: '#forge:plates/wrought_iron', + B: ChemicalHelper.get(TagPrefix.plate, GTMaterials.WroughtIron, 1), C: '#forge:tools/wrenches' - }).id('gtceu:shaped/coke_oven') + }).addMaterialInfo().id('gtceu:shaped/coke_oven') // Coke Oven Hatch + removeMaceratorRecipe(event, 'macerate_coke_oven_hatch') event.recipes.tfc.no_remainder_shaped_crafting( event.shaped('gtceu:coke_oven_hatch', [ 'AB' @@ -261,157 +263,164 @@ function registerGTCEuMachineRecipes(event) { //#endregion - // High Pressure Steam Miner - event.replaceInput({ id: 'gtceu:shaped/steam_miner_steel' }, - 'gtceu:lp_steam_miner', 'gtceu:steel_brick_casing') - //#region Выход: Стальные машины // HP Steam Boilers - event.shaped('gtceu:hp_steam_solid_boiler', [ + removeMaceratorRecipe(event, 'macerate_hp_steam_solid_boiler') + event.recipes.gtceu.shaped('gtceu:hp_steam_solid_boiler', [ 'AEA', 'ADA', 'BCB' ], { - A: '#forge:plates/steel', - B: 'gtceu:tin_alloy_small_fluid_pipe', + A: ChemicalHelper.get(TagPrefix.plate, GTMaterials.Steel, 1), + B: ChemicalHelper.get(TagPrefix.pipeSmallFluid, GTMaterials.TinAlloy, 1), C: 'gtceu:steel_brick_casing', D: 'tfc:crucible', - E: '#forge:rods/black_steel' - }).id('gtceu:shaped/steam_boiler_coal_steel') - - event.shaped('gtceu:hp_steam_liquid_boiler', [ + E: ChemicalHelper.get(TagPrefix.rod, GTMaterials.BlackSteel, 1) + }).addMaterialInfo().id('gtceu:shaped/steam_boiler_coal_steel') + + removeMaceratorRecipe(event, 'macerate_hp_steam_liquid_boiler') + event.recipes.gtceu.shaped('gtceu:hp_steam_liquid_boiler', [ 'AEA', 'ADA', 'BCB' ], { - A: '#forge:plates/steel', - B: 'gtceu:tin_alloy_small_fluid_pipe', + A: ChemicalHelper.get(TagPrefix.plate, GTMaterials.Steel, 1), + B: ChemicalHelper.get(TagPrefix.pipeSmallFluid, GTMaterials.TinAlloy, 1), C: 'gtceu:steel_brick_casing', D: '#forge:glass', - E: '#forge:rods/black_steel' - }).id('gtceu:shaped/steam_boiler_lava_steel') - - event.shaped('gtceu:hp_steam_solar_boiler', [ + E: ChemicalHelper.get(TagPrefix.rod, GTMaterials.BlackSteel, 1) + }).addMaterialInfo().id('gtceu:shaped/steam_boiler_lava_steel') + + removeMaceratorRecipe(event, 'macerate_hp_steam_solar_boiler') + event.recipes.gtceu.shaped('gtceu:hp_steam_solar_boiler', [ 'AAA', 'BCB', 'EDE' ], { A: '#forge:glass_panes', - B: '#forge:double_plates/silver', - C: '#forge:rods/black_steel', + B: ChemicalHelper.get(TagPrefix.plateDouble, GTMaterials.Silver, 1), + C: ChemicalHelper.get(TagPrefix.rod, GTMaterials.BlackSteel, 1), D: 'gtceu:steel_brick_casing', - E: 'gtceu:tin_alloy_small_fluid_pipe', - }).id('gtceu:shaped/steam_boiler_solar_steel') + E: ChemicalHelper.get(TagPrefix.pipeSmallFluid, GTMaterials.TinAlloy, 1), + }).addMaterialInfo().id('gtceu:shaped/steam_boiler_solar_steel') // Экстрактор - event.shaped('gtceu:hp_steam_extractor', [ + removeMaceratorRecipe(event, 'macerate_hp_steam_extractor') + event.recipes.gtceu.shaped('gtceu:hp_steam_extractor', [ 'BEB', 'CAC', 'DFD' ], { A: 'gtceu:steel_brick_casing', - B: 'gtceu:tin_alloy_small_fluid_pipe', - C: '#forge:plates/steel', - D: '#forge:plates/wrought_iron', + B: ChemicalHelper.get(TagPrefix.pipeSmallFluid, GTMaterials.TinAlloy, 1), + C: ChemicalHelper.get(TagPrefix.plate, GTMaterials.Steel, 1), + D: ChemicalHelper.get(TagPrefix.plate, GTMaterials.WroughtIron, 1), E: '#forge:glass_panes', - F: '#forge:rings/black_steel' - }).id('gtceu:shaped/steam_extractor_steel') + F: ChemicalHelper.get(TagPrefix.ring, GTMaterials.BlackSteel, 1) + }).addMaterialInfo().id('gtceu:shaped/steam_extractor_steel') // Дробитель - event.shaped('gtceu:hp_steam_macerator', [ + removeMaceratorRecipe(event, 'macerate_hp_steam_macerator') + event.recipes.gtceu.shaped('gtceu:hp_steam_macerator', [ 'BFB', 'CAC', 'DED' ], { A: 'gtceu:steel_brick_casing', B: '#forge:small_gears/wrought_iron', - C: '#forge:plates/steel', - D: '#forge:rods/black_steel', - E: 'gtceu:tin_alloy_small_fluid_pipe', + C: ChemicalHelper.get(TagPrefix.plate, GTMaterials.Steel, 1), + D: ChemicalHelper.get(TagPrefix.rod, GTMaterials.BlackSteel, 1), + E: ChemicalHelper.get(TagPrefix.pipeSmallFluid, GTMaterials.TinAlloy, 1), F: '#forge:raw_materials/diamond' - }).id('gtceu:shaped/steam_macerator_steel') + }).addMaterialInfo().id('gtceu:shaped/steam_macerator_steel') // Компрессор - event.shaped('gtceu:hp_steam_compressor', [ + removeMaceratorRecipe(event, 'macerate_hp_steam_compressor') + event.recipes.gtceu.shaped('gtceu:hp_steam_compressor', [ 'BCB', 'EAE', 'DFD' ], { A: 'gtceu:steel_brick_casing', - B: 'gtceu:tin_alloy_small_fluid_pipe', - C: '#forge:plates/steel', - D: '#forge:plates/wrought_iron', + B: ChemicalHelper.get(TagPrefix.pipeSmallFluid, GTMaterials.TinAlloy, 1), + C: ChemicalHelper.get(TagPrefix.plate, GTMaterials.Steel, 1), + D: ChemicalHelper.get(TagPrefix.plate, GTMaterials.WroughtIron, 1), E: 'minecraft:piston', - F: '#forge:rods/black_steel' - }).id('gtceu:shaped/steam_compressor_steel') + F: ChemicalHelper.get(TagPrefix.rod, GTMaterials.BlackSteel, 1) + }).addMaterialInfo().id('gtceu:shaped/steam_compressor_steel') // Молот - event.shaped('gtceu:hp_steam_forge_hammer', [ + removeMaceratorRecipe(event, 'macerate_hp_steam_forge_hammer') + event.recipes.gtceu.shaped('gtceu:hp_steam_forge_hammer', [ 'DFD', 'BEB', 'CAC' ], { A: 'gtceu:steel_brick_casing', - B: 'gtceu:tin_alloy_small_fluid_pipe', - C: '#forge:plates/steel', - D: '#forge:plates/wrought_iron', - E: '#forge:ingots/black_steel', + B: ChemicalHelper.get(TagPrefix.pipeSmallFluid, GTMaterials.TinAlloy, 1), + C: ChemicalHelper.get(TagPrefix.plate, GTMaterials.Steel, 1), + D: ChemicalHelper.get(TagPrefix.plate, GTMaterials.WroughtIron, 1), + E: ChemicalHelper.get(TagPrefix.ingot, GTMaterials.BlackSteel, 1), F: 'minecraft:piston' - }).id('gtceu:shaped/steam_hammer_steel') + }).addMaterialInfo().id('gtceu:shaped/steam_hammer_steel') // Печь - event.shaped('gtceu:hp_steam_furnace', [ + removeMaceratorRecipe(event, 'macerate_hp_steam_furnace') + event.recipes.gtceu.shaped('gtceu:hp_steam_furnace', [ 'BCB', 'DAD', 'FFF' ], { A: 'gtceu:steel_brick_casing', - B: 'gtceu:tin_alloy_small_fluid_pipe', - C: '#forge:plates/steel', - D: '#forge:plates/wrought_iron', - F: '#forge:rods/black_steel' - }).id('gtceu:shaped/steam_furnace_steel') + B: ChemicalHelper.get(TagPrefix.pipeSmallFluid, GTMaterials.TinAlloy, 1), + C: ChemicalHelper.get(TagPrefix.plate, GTMaterials.Steel, 1), + D: ChemicalHelper.get(TagPrefix.plate, GTMaterials.WroughtIron, 1), + F: ChemicalHelper.get(TagPrefix.rod, GTMaterials.BlackSteel, 1) + }).addMaterialInfo().id('gtceu:shaped/steam_furnace_steel') // Сплавщик - event.shaped('gtceu:hp_steam_alloy_smelter', [ + removeMaceratorRecipe(event, 'macerate_hp_steam_alloy_smelter') + event.recipes.gtceu.shaped('gtceu:hp_steam_alloy_smelter', [ 'FCF', 'DAD', 'CBC' ], { A: 'gtceu:steel_brick_casing', - B: 'gtceu:tin_alloy_small_fluid_pipe', - C: '#forge:plates/steel', - D: '#forge:plates/wrought_iron', - F: '#forge:rods/black_steel' - }).id('gtceu:shaped/steam_alloy_smelter_steel') + B: ChemicalHelper.get(TagPrefix.pipeSmallFluid, GTMaterials.TinAlloy, 1), + C: ChemicalHelper.get(TagPrefix.plate, GTMaterials.Steel, 1), + D: ChemicalHelper.get(TagPrefix.plate, GTMaterials.WroughtIron, 1), + F: ChemicalHelper.get(TagPrefix.rod, GTMaterials.BlackSteel, 1) + }).addMaterialInfo().id('gtceu:shaped/steam_alloy_smelter_steel') // Блоко-ломатель - event.shaped('gtceu:hp_steam_rock_crusher', [ + removeMaceratorRecipe(event, 'macerate_hp_steam_rock_crusher') + event.recipes.gtceu.shaped('gtceu:hp_steam_rock_crusher', [ 'ECE', 'BAB', 'DDD' ], { A: 'gtceu:steel_brick_casing', - B: 'gtceu:tin_alloy_small_fluid_pipe', + B: ChemicalHelper.get(TagPrefix.pipeSmallFluid, GTMaterials.TinAlloy, 1), C: '#forge:drill_heads', - D: '#forge:rods/wrought_iron', - E: '#forge:screws/wrought_iron' - }).id('gtceu:shaped/steam_rock_breaker_steel') + D: ChemicalHelper.get(TagPrefix.rod, GTMaterials.WroughtIron, 1), + E: ChemicalHelper.get(TagPrefix.screw, GTMaterials.WroughtIron, 1) + }).addMaterialInfo().id('gtceu:shaped/steam_rock_breaker_steel') // Miner - event.shaped('gtceu:hp_steam_miner', [ + removeMaceratorRecipe(event, 'macerate_hp_steam_miner') + event.recipes.gtceu.shaped('gtceu:hp_steam_miner', [ 'EFE', 'BAB', 'DCD' ], { A: 'gtceu:steel_brick_casing', - B: 'gtceu:tin_alloy_small_fluid_pipe', + B: ChemicalHelper.get(TagPrefix.pipeSmallFluid, GTMaterials.TinAlloy, 1), C: '#forge:drill_heads', - D: '#forge:rods/steel', - E: '#forge:plates/wrought_iron', + D: ChemicalHelper.get(TagPrefix.rod, GTMaterials.Steel, 1), + E: ChemicalHelper.get(TagPrefix.plate, GTMaterials.WroughtIron, 1), F: '#gtceu:circuits/ulv' - }).id('gtceu:shaped/steam_miner_steel') + }).addMaterialInfo().id('gtceu:shaped/steam_miner_steel') //#endregion @@ -587,7 +596,7 @@ function registerGTCEuMachineRecipes(event) { //#region ULV Hatches - event.recipes.shaped('gtceu:ulv_input_bus', [ + event.recipes.gtceu.shaped('gtceu:ulv_input_bus', [ 'CAC', 'CBC', 'CDC' @@ -598,7 +607,7 @@ function registerGTCEuMachineRecipes(event) { D: '#forge:tools/wrenches' }).id('gtceu:shaped/ulv_input_bus') - event.recipes.shaped('gtceu:ulv_output_bus', [ + event.recipes.gtceu.shaped('gtceu:ulv_output_bus', [ 'CDC', 'CBC', 'CAC' @@ -609,7 +618,7 @@ function registerGTCEuMachineRecipes(event) { D: '#forge:tools/wrenches' }).id('gtceu:shaped/ulv_output_bus') - event.recipes.shaped('gtceu:ulv_input_hatch', [ + event.recipes.gtceu.shaped('gtceu:ulv_input_hatch', [ 'CAC', 'CBC', 'CDC' @@ -620,7 +629,7 @@ function registerGTCEuMachineRecipes(event) { D: '#forge:tools/wrenches' }).id('gtceu:shaped/ulv_input_hatch') - event.recipes.shaped('gtceu:ulv_output_hatch', [ + event.recipes.gtceu.shaped('gtceu:ulv_output_hatch', [ 'CDC', 'CBC', 'CAC' @@ -808,61 +817,62 @@ function registerGTCEuMachineRecipes(event) { // Steam multi parts + removeMaceratorRecipe(event, 'macerate_steel_machine_casing') event.shaped('gtceu:steel_machine_casing', [ ' A ', 'ABA', ' A ' ], { - A: '#forge:ingots/steel', + A: ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Steel, 1), B: '#forge:tools/hammers' }).id('gtceu:shaped/steel_hull') - - event.shaped('gtceu:steam_input_hatch', [ + + removeMaceratorRecipe(event, 'macerate_steam_input_hatch') + event.recipes.gtceu.shaped('gtceu:steam_input_hatch', [ 'ACA', ' B ', 'ACA' ], { - A: '#forge:screws/wrought_iron', + A: ChemicalHelper.get(TagPrefix.screw, GTMaterials.WroughtIron, 1), B: 'gtceu:steel_machine_casing', - C: '#forge:small_fluid_pipes/steel' - }).id('gtceu:shaped/steam_hatch') - - event.shaped('gtceu:steam_grinder', [ + C: ChemicalHelper.get(TagPrefix.pipeSmallFluid, GTMaterials.Steel, 1) + }).addMaterialInfo().id('gtceu:shaped/steam_hatch') + + removeMaceratorRecipe(event, 'macerate_steam_grinder') + event.recipes.gtceu.shaped('gtceu:steam_grinder', [ 'ABA', 'ACA', 'ABA' ], { - A: 'gtceu:steam_machine_casing', - B: '#forge:gears/invar', + A: 'gtceu:bronze_plate', + B: ChemicalHelper.get(TagPrefix.gear, GTMaterials.Invar, 1), C: 'gtceu:hp_steam_macerator' - }).id('gtceu:shaped/steam_grinder') - - event.shaped('gtceu:steam_oven', [ + }).addMaterialInfo().id('gtceu:shaped/steam_grinder') + + removeMaceratorRecipe(event, 'macerate_steam_oven') + event.recipes.gtceu.shaped('gtceu:steam_oven', [ 'ABA', 'ACA', 'ABA' ], { - A: 'gtceu:steam_machine_casing', + A: 'gtceu:bronze_plate', B: 'gtceu:heatproof_machine_casing', C: 'gtceu:hp_steam_furnace' - }).id('gtceu:shaped/steam_oven') + }).addMaterialInfo().id('gtceu:shaped/steam_oven') event.replaceInput({ id: 'gtceu:shaped/hv_cutter' }, 'gtceu:red_steel_buzz_saw_blade', 'gtceu:diamond_buzz_saw_blade') + removeMaceratorRecipe(event, 'macerate_steam_input_bus') + event.recipes.gtceu.shaped('gtceu:steam_input_bus', ['A', 'B'], { + A: '#forge:chests/wooden', + B: 'gtceu:steam_machine_casing' + }).addMaterialInfo().id('gtceu:shaped/steam_input_bus') - event.replaceOutput({ id: 'gtceu:macerator/macerate_steel_machine_casing' }, 'gtceu:steel_dust', '4x gtceu:steel_dust') - event.replaceOutput({ id: 'gtceu:arc_furnace/arc_steel_machine_casing' }, 'gtceu:steel_ingot', '4x gtceu:steel_ingot') - - event.replaceOutput({ id: 'gtceu:macerator/macerate_steam_input_bus' }, 'gtceu:steel_dust', '4x gtceu:steel_dust') - event.replaceOutput({ id: 'gtceu:arc_furnace/arc_steam_input_bus' }, 'gtceu:steel_ingot', '4x gtceu:steel_ingot') - event.replaceOutput({ id: 'gtceu:macerator/macerate_steam_output_bus' }, 'gtceu:steel_dust', '4x gtceu:steel_dust') - event.replaceOutput({ id: 'gtceu:arc_furnace/arc_steam_output_bus' }, 'gtceu:steel_ingot', '4x gtceu:steel_ingot') - - event.replaceOutput({ id: 'gtceu:macerator/macerate_steam_input_hatch' }, 'gtceu:steel_dust', '6x gtceu:steel_dust') - event.replaceOutput({ id: 'gtceu:arc_furnace/arc_steam_input_hatch' }, 'gtceu:steel_block', '6x gtceu:steel_ingot') - - event.replaceOutput({ id: 'gtceu:macerator/macerate_steam_input_hatch' }, 'gtceu:steel_dust', '6x gtceu:steel_dust') - event.replaceOutput({ id: 'gtceu:arc_furnace/arc_steam_input_hatch' }, 'gtceu:steel_block', '6x gtceu:steel_ingot') + removeMaceratorRecipe(event, 'macerate_steam_output_bus') + event.recipes.gtceu.shaped('gtceu:steam_output_bus', ['B', 'A'], { + A: '#forge:chests/wooden', + B: 'gtceu:steam_machine_casing' + }).addMaterialInfo().id('gtceu:shaped/steam_output_bus') //#region Chipboard Composite @@ -973,6 +983,7 @@ function registerGTCEuMachineRecipes(event) { .circuit(4) .duration(2.5 * 20) .EUt(16) + .addMaterialInfo(true) event.recipes.gtceu.assembler('tfg:casings/machine_casing_stainless_evaporation') .itemInputs('gtceu:clean_machine_casing', '4x gtceu:annealed_copper_double_wire') diff --git a/kubejs/server_scripts/gregtech/recipes.recycling.js b/kubejs/server_scripts/gregtech/recipes.recycling.js index 543ba3668..76d01fad7 100644 --- a/kubejs/server_scripts/gregtech/recipes.recycling.js +++ b/kubejs/server_scripts/gregtech/recipes.recycling.js @@ -188,37 +188,6 @@ function registerGTCEURecyclingRecipes(event) { .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) .EUt(GTValues.VA[GTValues.LV]) - // Steam oven - - event.recipes.gtceu.macerator('gtceu:macerate_steam_oven') - .itemInputs('gtceu:steam_oven') - .itemOutputs('18x #forge:dusts/bronze', '8x #forge:dusts/invar', '7x #forge:dusts/wrought_iron', '2x #forge:dusts/steel') - .duration(1972) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.arc_furnace('gtceu:arc_steam_oven') - .itemInputs('gtceu:steam_oven') - .itemOutputs('18x #forge:ingots/bronze', '8x #forge:ingots/invar', '7x #forge:ingots/wrought_iron', '2x #forge:ingots/steel') - .duration(1792) - .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) - .EUt(GTValues.VA[GTValues.LV]) - - // Steam grinder - - event.recipes.gtceu.macerator('gtceu:macerate_steam_grinder') - .itemInputs('gtceu:steam_grinder') - .itemOutputs('18x #forge:dusts/bronze', '8x #forge:dusts/invar', '7x #forge:dusts/wrought_iron', '2x #forge:dusts/steel') - .duration(1972) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.arc_furnace('gtceu:arc_steam_grinder') - .itemInputs('gtceu:steam_grinder') - .itemOutputs('18x #forge:ingots/bronze', '8x #forge:ingots/invar', '7x #forge:ingots/wrought_iron', '2x #forge:ingots/steel') - .duration(1792) - .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) - .EUt(GTValues.VA[GTValues.LV]) // Clean Foil pack event.recipes.gtceu.macerator('gtceu:macerator/recycling/clean_foil_pack') diff --git a/kubejs/server_scripts/gregtech/recipes.tfcmetals.js b/kubejs/server_scripts/gregtech/recipes.tfcmetals.js index ee1ecd260..8d78aad7f 100644 --- a/kubejs/server_scripts/gregtech/recipes.tfcmetals.js +++ b/kubejs/server_scripts/gregtech/recipes.tfcmetals.js @@ -106,184 +106,4 @@ function registerGTCEuTFCMetalsRecipes(event) { .itemOutputs('5x gtceu:red_alloy_ingot') .duration(50) .EUt(16) - - // steam machines - - event.remove({ id: 'gtceu:arc_furnace/arc_hp_steam_forge_hammer' }) - event.recipes.gtceu.arc_furnace('tfg:arc_hp_steam_forge_hammer') - .itemInputs('1x gtceu:hp_steam_forge_hammer') - .itemOutputs('7x gtceu:wrought_iron_ingot', '2x gtceu:steel_ingot', '2x gtceu:tin_alloy_ingot', '1x #forge:ingots/black_steel') - .duration(3310) - .EUt(30) - .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) - - removeMaceratorRecipe(event, 'macerate_hp_steam_forge_hammer') - event.recipes.gtceu.macerator('tfg:macerate_hp_steam_forge_hammer') - .itemInputs('1x gtceu:hp_steam_forge_hammer') - .itemOutputs('7x gtceu:wrought_iron_dust', '2x gtceu:steel_dust', '2x gtceu:tin_alloy_dust', '12x gtceu:brick_dust', '1x #forge:dusts/black_steel') - .duration(3254) - .EUt(8) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - - event.remove({ id: 'gtceu:arc_furnace/arc_hp_steam_extractor' }) - event.recipes.gtceu.arc_furnace('tfg:arc_hp_steam_extractor') - .itemInputs('1x gtceu:hp_steam_extractor') - .itemOutputs('7x gtceu:wrought_iron_ingot', '2x gtceu:steel_ingot', '2x gtceu:tin_alloy_ingot') - .duration(3310) - .EUt(30) - .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) - - removeMaceratorRecipe(event, 'macerate_hp_steam_extractor') - event.recipes.gtceu.macerator('tfg:macerate_hp_steam_extractor') - .itemInputs('1x gtceu:hp_steam_extractor') - .itemOutputs('7x gtceu:wrought_iron_dust', '2x gtceu:steel_dust', '2x gtceu:tin_alloy_dust', '12x gtceu:brick_dust') - .duration(3254) - .EUt(8) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - - event.remove({ id: 'gtceu:arc_furnace/arc_hp_steam_macerator' }) - event.recipes.gtceu.arc_furnace('tfg:arc_hp_steam_macerator') - .itemInputs('1x gtceu:hp_steam_macerator') - .itemOutputs('7x gtceu:wrought_iron_ingot', '2x gtceu:steel_ingot', '1x #forge:ingots/black_steel', '1x gtceu:tin_alloy_ingot') - .duration(3310) - .EUt(30) - .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) - - removeMaceratorRecipe(event, 'macerate_hp_steam_macerator') - event.recipes.gtceu.macerator('tfg:macerate_hp_steam_macerator') - .itemInputs('1x gtceu:hp_steam_macerator') - .itemOutputs('7x gtceu:wrought_iron_dust', '2x gtceu:steel_dust', '1x #forge:dusts/black_steel', '1x gtceu:tin_alloy_dust', '12x gtceu:brick_dust') - .duration(3254) - .EUt(8) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - - event.remove({ id: 'gtceu:arc_furnace/arc_hp_steam_compressor' }) - event.recipes.gtceu.arc_furnace('tfg:arc_hp_steam_compressor') - .itemInputs('1x gtceu:hp_steam_compressor') - .itemOutputs('8x gtceu:wrought_iron_ingot', '1x gtceu:steel_ingot', '2x gtceu:tin_alloy_ingot') - .duration(3310) - .EUt(30) - .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) - - removeMaceratorRecipe(event, 'macerate_hp_steam_compressor') - event.recipes.gtceu.macerator('tfg:macerate_hp_steam_compressor') - .itemInputs('1x gtceu:hp_steam_compressor') - .itemOutputs('8x gtceu:wrought_iron_dust', '1x gtceu:steel_dust', '2x gtceu:tin_alloy_dust', '12x gtceu:brick_dust') - .duration(3254) - .EUt(8) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - - event.remove({ id: 'gtceu:arc_furnace/arc_hp_steam_furnace' }) - event.recipes.gtceu.arc_furnace('tfg:arc_hp_steam_furnace') - .itemInputs('1x gtceu:hp_steam_furnace') - .itemOutputs('7x gtceu:wrought_iron_ingot', '2x gtceu:tin_alloy_ingot', '1x gtceu:steel_ingot', '1x #forge:ingots/black_steel') - .duration(3310) - .EUt(30) - .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) - - removeMaceratorRecipe(event, 'macerate_hp_steam_furnace') - event.recipes.gtceu.macerator('tfg:macerate_hp_steam_furnace') - .itemInputs('1x gtceu:hp_steam_furnace') - .itemOutputs('7x gtceu:wrought_iron_dust', '2x gtceu:tin_alloy_dust', '1x gtceu:steel_dust', '1x #forge:dusts/black_steel', '12x gtceu:brick_dust') - .duration(3254) - .EUt(8) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - - event.remove({ id: 'gtceu:arc_furnace/arc_hp_steam_alloy_smelter' }) - event.recipes.gtceu.arc_furnace('tfg:arc_hp_steam_alloy_smelter') - .itemInputs('1x gtceu:hp_steam_alloy_smelter') - .itemOutputs('7x gtceu:wrought_iron_ingot', '3x gtceu:steel_ingot', '1x gtceu:tin_alloy_ingot', '1x #forge:ingots/black_steel') - .duration(3310) - .EUt(30) - .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) - - removeMaceratorRecipe(event, 'macerate_hp_steam_alloy_smelter') - event.recipes.gtceu.macerator('tfg:macerate_hp_steam_alloy_smelter') - .itemInputs('1x gtceu:hp_steam_alloy_smelter') - .itemOutputs('7x gtceu:wrought_iron_dust', '3x gtceu:steel_dust', '1x gtceu:tin_alloy_dust', '1x #forge:dusts/black_steel', '12x gtceu:brick_dust') - .duration(3254) - .EUt(8) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - - event.remove({ id: 'gtceu:arc_furnace/arc_hp_steam_rock_crusher' }) - event.recipes.gtceu.arc_furnace('tfg:arc_hp_steam_rock_crusher') - .itemInputs('1x gtceu:hp_steam_rock_crusher') - .itemOutputs('6x gtceu:wrought_iron_ingot', '2x gtceu:tin_alloy_ingot') - .duration(3310) - .EUt(30) - .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) - - removeMaceratorRecipe(event, 'macerate_hp_steam_rock_crusher') - event.recipes.gtceu.macerator('tfg:macerate_hp_steam_rock_crusher') - .itemInputs('1x gtceu:hp_steam_rock_crusher') - .itemOutputs('6x gtceu:wrought_iron_dust', '2x gtceu:tin_alloy_dust', '12x gtceu:brick_dust') - .duration(3254) - .EUt(8) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - - event.remove({ id: 'gtceu:arc_furnace/arc_hp_steam_miner' }) - event.recipes.gtceu.arc_furnace('tfg:arc_hp_steam_miner') - .itemInputs('1x gtceu:hp_steam_miner') - .itemOutputs('7x gtceu:wrought_iron_ingot', '2x gtceu:tin_alloy_ingot', '1x #forge:ingots/steel') - .duration(3310) - .EUt(30) - .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) - - removeMaceratorRecipe(event, 'macerate_hp_steam_miner') - event.recipes.gtceu.macerator('tfg:macerate_hp_steam_miner') - .itemInputs('1x gtceu:hp_steam_miner') - .itemOutputs('7x gtceu:wrought_iron_dust', '2x gtceu:tin_alloy_dust', '1x #forge:dusts/steel', '12x gtceu:brick_dust') - .duration(3254) - .EUt(8) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - - event.remove({ id: 'gtceu:arc_furnace/arc_hp_steam_solid_boiler' }) - event.recipes.gtceu.arc_furnace('tfg:arc_hp_steam_solid_boiler') - .itemInputs('1x gtceu:hp_steam_solid_boiler') - .itemOutputs('5x gtceu:wrought_iron_ingot', '4x #forge:ingots/steel', '2x gtceu:tin_alloy_ingot') - .duration(3310) - .EUt(30) - .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) - - removeMaceratorRecipe(event, 'macerate_hp_steam_solid_boiler') - event.recipes.gtceu.macerator('tfg:macerate_hp_steam_solid_boiler') - .itemInputs('1x gtceu:hp_steam_solid_boiler') - .itemOutputs('5x gtceu:wrought_iron_dust', '4x #forge:dusts/steel', '2x gtceu:tin_alloy_dust', '12x gtceu:brick_dust') - .duration(3254) - .EUt(8) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - - event.remove({ id: 'gtceu:arc_furnace/arc_hp_steam_liquid_boiler' }) - event.recipes.gtceu.arc_furnace('tfg:arc_hp_steam_liquid_boiler') - .itemInputs('1x gtceu:hp_steam_liquid_boiler') - .itemOutputs('5x gtceu:wrought_iron_ingot', '4x #forge:ingots/steel', '2x gtceu:tin_alloy_ingot') - .duration(3310) - .EUt(30) - .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) - - removeMaceratorRecipe(event, 'macerate_hp_steam_liquid_boiler') - event.recipes.gtceu.macerator('tfg:macerate_hp_steam_liquid_boiler') - .itemInputs('1x gtceu:hp_steam_liquid_boiler') - .itemOutputs('5x gtceu:wrought_iron_dust', '4x #forge:dusts/steel', '2x gtceu:tin_alloy_dust', '12x gtceu:brick_dust') - .duration(3254) - .EUt(8) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - - event.remove({ id: 'gtceu:arc_furnace/arc_hp_steam_solar_boiler' }) - event.recipes.gtceu.arc_furnace('tfg:arc_hp_steam_solar_boiler') - .itemInputs('1x gtceu:hp_steam_solar_boiler') - .itemOutputs('5x gtceu:wrought_iron_ingot', '4x #forge:ingots/silver', '2x gtceu:tin_alloy_ingot') - .duration(3310) - .EUt(30) - .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) - - removeMaceratorRecipe(event, 'macerate_hp_steam_solar_boiler') - event.recipes.gtceu.macerator('tfg:macerate_hp_steam_solar_boiler') - .itemInputs('1x gtceu:hp_steam_solar_boiler') - .itemOutputs('5x gtceu:wrought_iron_dust', '4x #forge:dusts/silver', '2x gtceu:tin_alloy_dust', '12x gtceu:brick_dust') - .duration(3254) - .EUt(8) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - - //#endregion } diff --git a/kubejs/server_scripts/gregtech/tags.js b/kubejs/server_scripts/gregtech/tags.js index 5831cf73a..223c68cd5 100644 --- a/kubejs/server_scripts/gregtech/tags.js +++ b/kubejs/server_scripts/gregtech/tags.js @@ -20,38 +20,6 @@ const registerGTCEUItemTags = (event) => { // Добавление тега EMI для скрытия всех руд event.add('c:hidden_from_recipe_viewers', '#forge:ores') - //#region Пыли стоунтайпов в один тэг - event.add('tfg:stone_dusts', 'tfg:gabbro_dust') - event.add('tfg:stone_dusts', 'tfg:shale_dust') - event.add('tfg:stone_dusts', 'tfg:claystone_dust') - event.add('tfg:stone_dusts', 'tfg:limestone_dust') - event.add('tfg:stone_dusts', 'tfg:conglomerate_dust') - event.add('tfg:stone_dusts', 'tfg:dolomite_dust') - event.add('tfg:stone_dusts', 'tfg:chert_dust') - event.add('tfg:stone_dusts', 'tfg:chalk_dust') - event.add('tfg:stone_dusts', 'tfg:rhyolite_dust') - event.add('tfg:stone_dusts', 'tfg:dacite_dust') - event.add('tfg:stone_dusts', 'gtceu:quartzite_dust') - event.add('tfg:stone_dusts', 'tfg:slate_dust') - event.add('tfg:stone_dusts', 'tfg:phyllite_dust') - event.add('tfg:stone_dusts', 'tfg:schist_dust') - event.add('tfg:stone_dusts', 'tfg:gneiss_dust') - event.add('tfg:stone_dusts', 'gtceu:marble_dust') - event.add('tfg:stone_dusts', 'gtceu:basalt_dust') - event.add('tfg:stone_dusts', 'gtceu:diorite_dust') - event.add('tfg:stone_dusts', 'gtceu:andesite_dust') - event.add('tfg:stone_dusts', 'gtceu:granite_dust') - event.add('tfg:stone_dusts', 'gtceu:deepslate_dust') - event.add('tfg:stone_dusts', 'gtceu:blackstone_dust') - event.add('tfg:stone_dusts', 'tfg:dripstone_dust') - event.add('tfg:stone_dusts', 'tfg:moon_stone_dust') - event.add('tfg:stone_dusts', 'tfg:moon_deepslate_dust') - event.add('tfg:stone_dusts', 'tfg:mars_stone_dust') - event.add('tfg:stone_dusts', 'tfg:venus_stone_dust') - event.add('tfg:stone_dusts', 'tfg:mercury_stone_dust') - event.add('tfg:stone_dusts', 'tfg:glacio_stone_dust') - event.add('tfg:stone_dusts', 'gtceu:stone_dust') - //#endregion event.remove('minecraft:planks', 'gtceu:treated_wood_planks') event.remove('minecraft:planks', 'gtceu:treated_wood_plate') @@ -76,6 +44,9 @@ const registerGTCEUItemTags = (event) => { // Rose Quartz Lens event.add('forge:lenses/pink', 'gtceu:rose_quartz_lens') + + event.add('tfc:saws', '#forge:tools/buzzsaws') + event.add('tfc:saws', '#forge:tools/chainsaws') } const registerGTCEUBlockTags = (event) => { diff --git a/kubejs/server_scripts/hotornot/tags.js b/kubejs/server_scripts/hotornot/tags.js index a31e6fced..bcc28c7b6 100644 --- a/kubejs/server_scripts/hotornot/tags.js +++ b/kubejs/server_scripts/hotornot/tags.js @@ -10,6 +10,8 @@ const registerHotOrNotItemTags = (event) => { }) event.add('tfchotornot:hot_whitelist', '#forge:hot_ingots') + + event.add('firmalife:usable_on_oven', '#tfchotornot:insulating') } const registerHotOrNotBlockTags = (event) => { diff --git a/kubejs/server_scripts/main_server_script.js b/kubejs/server_scripts/main_server_script.js index 46f6bc168..95ea636cf 100644 --- a/kubejs/server_scripts/main_server_script.js +++ b/kubejs/server_scripts/main_server_script.js @@ -43,6 +43,8 @@ ServerEvents.tags('item', event => { registerRailWaysItemTags(event) registerRnrItemTags(event) registerSophisticatedBackpacksItemTags(event) + registerSoulboundItemTags(event) + registeSNSItemTags(event) registerSpeciesItemTags(event) registerTACZItemTags(event) registerTFCAmbientalItemTags(event) @@ -132,6 +134,7 @@ ServerEvents.tags('worldgen/biome', event => { ServerEvents.tags('entity_type', event => { registerAdAstraEntityTypeTags(event) + registerWABEntityTypeTags(event) }) /** @@ -163,6 +166,7 @@ TFCEvents.data(event => { registerTFCDataForTFG(event) registerTFCDataForWaterFlasks(event) registerWABFoodData(event) + registerSpeciesFoodData(event) }) /** @@ -177,6 +181,7 @@ LootJS.modifiers((event) => { registerSpeciesLoots(event) registerTFCLoots(event) registerTFGLoots(event) + registerWansAncientBeastsLoots(event) }); /** @@ -247,8 +252,11 @@ ServerEvents.recipes(event => { registerProgrammedCircuitCardRecipes(event) registerRailWaysRecipes(event) registerRnrRecipes(event) + registerSandwormRecipes(event) registerSophisticatedBackpacksRecipes(event) + registerSoulboundRecipes(event) registerSimplylightRecipes(event) + registerSNSRecipes(event) registerSpeciesRecipes(event) registerTACZRecipes(event) registerTFCRecipes(event) diff --git a/kubejs/server_scripts/minecraft/recipes.js b/kubejs/server_scripts/minecraft/recipes.js index 5b96b8489..24bbbeb91 100644 --- a/kubejs/server_scripts/minecraft/recipes.js +++ b/kubejs/server_scripts/minecraft/recipes.js @@ -780,7 +780,7 @@ const registerMinecraftRecipes = (event) => { ' BA', 'A ' ], { - A: 'tfc:jute_fiber', + A: '#tfg:burlap_fiber', B: '#forge:rings' }).id('tfc:crafting/lead') diff --git a/kubejs/server_scripts/minecraft/tags.js b/kubejs/server_scripts/minecraft/tags.js index 94fc5ed0d..ef67318ce 100644 --- a/kubejs/server_scripts/minecraft/tags.js +++ b/kubejs/server_scripts/minecraft/tags.js @@ -85,9 +85,10 @@ const registerMinecraftItemTags = (event) => { event.add('tfc:compost_greens', 'minecraft:nether_wart_block') event.add('tfc:compost_greens', 'minecraft:warped_wart_block') - event.add('forge:dyes/black', 'minecraft:ink_sac') - event.add('tfc:hematitic_sand', 'minecraft:red_sand') + + event.add('tfc:makes_black_dye', 'minecraft:ink_sac') + event.add('tfc:makes_white_dye', 'minecraft:bone_meal') } const registerMinecraftBlockTags = (event) => { diff --git a/kubejs/server_scripts/sacksnstuff/recipes.js b/kubejs/server_scripts/sacksnstuff/recipes.js new file mode 100644 index 000000000..0f71ec058 --- /dev/null +++ b/kubejs/server_scripts/sacksnstuff/recipes.js @@ -0,0 +1,276 @@ +"use strict"; + +const registerSNSRecipes = (event) => { + global.SNS_DISABLED_ITEMS.forEach(item => { + event.remove({ input: item }) + event.remove({ output: item }) + }) + + event.remove({ mod: 'sns', type: 'tfc:heating' }) + event.remove({ output: 'sns:buckle'}) + + event.remove({ id: 'sns:crafting/ore_sack'}) + event.remove({ id: 'sns:crafting/leather_sack'}) + event.remove({ id: 'sns:crafting/burlap_sack'}) + event.remove({ id: 'sns:crafting/seed_pouch'}) + event.remove({ id: 'sns:crafting/straw_basket'}) + event.remove({ id: 'sns:crafting/frame_pack'}) + + event.remove({ output: 'sns:pack_frame'}) + + event.remove({ id: 'sns:crafting/reinforced_fiber'}) + + event.recipes.tfc.sewing( + 'sns:burlap_sack', + [ + 0, 0, 1, 0, 0, 1, 0, 0, 1, + 0, 0, 1, 1, 0, 1, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 1, 0, 1, 0, 1, 0, + 0, 0, 1, 0, 0, 1, 0, 0, 1 + ], + [ + -1, -1, 0, 0, 0, 0, 0, 0, + -1, 0, 0, -1, -1, -1, -1, 0, + -1, 0, 0, -1, -1, -1, -1, 0, + -1, -1, 0, 0, 0, 0, 0, 0 + ] + ).id('sns:sewing/burlap_sack') + + event.recipes.tfc.sewing( + 'sns:seed_pouch', + [ + 0, 0, 1, 0, 0, 1, 0, 0, 1, + 0, 0, 1, 1, 1, 1, 1, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 1, 0, + 0, 0, 1, 1, 1, 1, 1, 1, 0, + 0, 0, 1, 0, 0, 1, 0, 0, 1 + ], + [ + -1, -1, 1, 1, 1, 1, 1, 1, + -1, 1, 1, 0, 0, 0, 0, 1, + -1, 1, 1, 0, 0, 0, 0, 1, + -1, -1, 1, 1, 1, 1, 1, 1 + ] + ).id('sns:sewing/seed_pouch') + + event.recipes.tfc.damage_inputs_shaped_crafting( + event.shaped('sns:leather_sack', [ + 'AAA', + 'BCB', + ' BE' + ], { + A: '#tfg:burlap_fiber', + B: 'sns:leather_strip', + C: 'sns:unfinished_leather_sack', + //D: 'minecraft:name_tag', + E: 'tfc:bone_needle' + } + ) + ).id('sns:crafting/leather_sack') + + /*event.recipes.tfc.damage_inputs_shaped_crafting( + event.shaped('sns:leather_sack', [ + ' A ', + 'BCB', + 'DBE' + ], { + A: '#forge:rope', + B: 'sns:leather_strip', + C: 'sns:unfinished_leather_sack', + D: 'minecraft:name_tag', + E: 'tfc:bone_needle' + } + ) + ).id('sns:crafting/leather_sack_coil')*/ + + event.recipes.tfc.damage_inputs_shaped_crafting( + event.shaped('sns:ore_sack', [ + 'AAA', + 'BCB', + 'DBE' + ], { + A: 'sns:reinforced_fiber', + B: '#forge:leather', + C: 'sns:unfinished_leather_sack', + D: 'minecraft:name_tag', + E: 'tfc:bone_needle' + } + ) + ).id('sns:crafting/ore_sack') + + event.recipes.tfc.knapping('sns:straw_basket', 'tfg:straw', [ + " XXX ", + "X X", + "X X", + "XXXXX", + " XXX " + ]) + .ingredient('tfc:straw') + .outsideSlotRequired(false) + .id('sns:straw_knapping/straw_basket') + + + event.recipes.tfc.damage_inputs_shaped_crafting( + event.shaped('sns:frame_pack', [ + 'ABA', + 'ACA', + 'DBE' + ], { + A: 'sns:bound_leather_strip', + B: 'sns:reinforced_fabric', + C: 'sns:pack_frame', + D: 'minecraft:name_tag', + E: 'tfc:bone_needle' + } + ) + ).id('sns:crafting/frame_pack') + + //#region helper items + + event.recipes.tfc.anvil( + 'sns:buckle', + '#forge:plates/wrought_iron', + [ + 'upset_last', + 'hit_second_last', + 'shrink_any' + ] + ).tier(3) + .id('sns:anvil/buckle') + + event.recipes.tfc.anvil( + '2x sns:buckle', + '#forge:plates/steel', + [ + 'upset_last', + 'hit_second_last', + 'shrink_any' + ] + ).tier(4) + .id('sns:anvil/buckle2') + + event.recipes.gtceu.extruder('sns:buckle') + .itemInputs('#forge:plates/wrought_iron') + .notConsumable('gtceu:small_pipe_extruder_mold') + .itemOutputs('sns:buckle') + .duration(40) + .EUt(GTValues.VA[GTValues.LV]) + + event.custom({ + type: 'vintageimprovements:curving', + ingredients: [{ tag: 'forge:plates/wrought_iron' }], + itemAsHead: 'gtceu:small_pipe_extruder_mold', + results: [{ item: 'sns:buckle' }], + processingTime: 50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER + }).id('sns:vi/curving/buckle') + + event.recipes.gtceu.extruder('sns:buckle2') + .itemInputs('#forge:plates/steel') + .notConsumable('gtceu:small_pipe_extruder_mold') + .itemOutputs('2x sns:buckle') + .duration(80) + .EUt(GTValues.VA[GTValues.LV]) + + event.custom({ + type: 'vintageimprovements:curving', + ingredients: [{ tag: 'forge:plates/steel' }], + itemAsHead: 'gtceu:small_pipe_extruder_mold', + results: [{ item: 'sns:buckle', count: 2 }], + processingTime: 80 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER + }).id('sns:vi/curving/buckle2') + + event.shaped('sns:pack_frame', [ + 'AAA', + 'A A', + 'AAA' + ], { + A: '#forge:rods/any_bronze' + + }).id('sns:shaped/pack_frame') + + event.shaped('sns:pack_frame', [ + ' A ', + 'A A', + ' A ' + ], { + A: '#forge:rods/wrought_iron' + + }).id('sns:shaped/pack_frame_iron') + + event.recipes.gtceu.assembler('sns:pack_frame') + .itemInputs('4x #forge:rods/wrought_iron') + .itemOutputs('sns:pack_frame') + .circuit(4) + .duration(80) + .EUt(GTValues.VA[GTValues.LV]) + + event.shaped('3x sns:reinforced_fiber', [ + 'AAA', + 'BBB', + 'AAA' + ], { + A: '#tfg:burlap_fiber', + B: '#forge:string' + + }).id('sns:shaped/reinforced_fiber') + /* + event.shaped('2x sns:reinforced_fiber', [ + ' A ', + 'BBB', + ' C ' + ], { + A: '#forge:rope', + B: '#forge:string', + C: '#forge:tools/knives' + + }).id('sns:shaped/reinforced_fiber_rope')*/ + + event.recipes.gtceu.assembler('sns:reinforced_fiber') + .itemInputs('2x #tfg:burlap_fiber', '#forge:string') + .itemOutputs('sns:reinforced_fiber') + .duration(40) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.assembler('sns:reinforced_fabric') + .itemInputs('16x sns:reinforced_fiber') + .itemOutputs('sns:reinforced_fabric') + .circuit(16) + .duration(100) + .EUt(GTValues.VA[GTValues.LV]) + + generateCutterRecipe(event, '#forge:leather', '4x sns:leather_strip', 80, GTValues.VA[GTValues.LV], 'sns:leather_strip_cut') + + event.recipes.gtceu.assembler('sns:bound_leather_strip') + .itemInputs('2x sns:leather_strip', 'sns:reinforced_fiber') + .itemOutputs('sns:bound_leather_strip') + .circuit(3) + .duration(120) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.bender('sns:horseshoe_steel_electric_only') + .itemInputs('#forge:rods/steel') + .itemOutputs('sns:metal/horseshoe/steel') + .circuit(4) + .duration(40) + .EUt(GTValues.VA[GTValues.LV]) + event.recipes.gtceu.bender('sns:horseshoe_black_steel_electric_only') + .itemInputs('#forge:rods/black_steel') + .itemOutputs('sns:metal/horseshoe/black_steel') + .circuit(4) + .duration(40) + .EUt(GTValues.VA[GTValues.LV]) + event.recipes.gtceu.bender('sns:horseshoe_blue_steel_electric_only') + .itemInputs('#forge:rods/blue_steel') + .itemOutputs('sns:metal/horseshoe/blue_steel') + .circuit(4) + .duration(40) + .EUt(GTValues.VA[GTValues.LV]) + event.recipes.gtceu.bender('sns:horseshoe_red_steel_electric_only') + .itemInputs('#forge:rods/red_steel') + .itemOutputs('sns:metal/horseshoe/red_steel') + .circuit(4) + .duration(40) + .EUt(GTValues.VA[GTValues.LV]) + +} \ No newline at end of file diff --git a/kubejs/server_scripts/sacksnstuff/tags.js b/kubejs/server_scripts/sacksnstuff/tags.js new file mode 100644 index 000000000..f48550663 --- /dev/null +++ b/kubejs/server_scripts/sacksnstuff/tags.js @@ -0,0 +1,27 @@ +// priority: 0 +"use strict"; + +function registeSNSItemTags(event) { + + global.SNS_DISABLED_ITEMS.forEach(item => { + event.removeAllTagsFrom(item) + event.add('c:hidden_from_recipe_viewers', item) + }) + + event.add('sns:allowed_in_ore_sack', 'tfc:kaolin_clay') + event.add('sns:allowed_in_ore_sack', 'minecraft:clay_ball') + event.add('sns:allowed_in_ore_sack', 'beneath:cursecoal') + event.add('sns:allowed_in_ore_sack', 'minecraft:flint') + + event.add('sns:allowed_in_ore_sack', '#tfc:powders') + event.add('sns:allowed_in_ore_sack', '#minecraft:coals') + event.add('sns:allowed_in_ore_sack', '#tfg:stone_dusts') + event.add('sns:allowed_in_ore_sack', '#forge:rich_raw_materials') + event.add('sns:allowed_in_ore_sack', '#forge:raw_materials') + event.add('sns:allowed_in_ore_sack', '#forge:poor_raw_materials') + + event.add('sns:allowed_in_ore_sack', '#tfc:sedimentary_rock') + event.add('sns:allowed_in_ore_sack', '#tfc:metamorphic_rock') + event.add('sns:allowed_in_ore_sack', '#tfg:igneous_intrusive_rock') + event.add('sns:allowed_in_ore_sack', '#tfc:igneous_extrusive_rock') +} \ No newline at end of file diff --git a/kubejs/server_scripts/sandworm/recipes.js b/kubejs/server_scripts/sandworm/recipes.js new file mode 100644 index 000000000..049625458 --- /dev/null +++ b/kubejs/server_scripts/sandworm/recipes.js @@ -0,0 +1,15 @@ +// priority: 0 +"use strict"; + +const registerSandwormRecipes = (event) => { + + event.remove({ mod: 'sandworm_mod'}) + + event.recipes.gtceu.assembler('sandworm_mod:thumper') + .itemInputs('6x #forge:plates/ostrum', '#gtceu:circuits/iv', 'gtceu:ev_electric_piston') + .inputFluids(Fluid.of('gtceu:radon', 100)) + .itemOutputs('sandworm_mod:thumper') + .duration(200) + .circuit(10) + .EUt(GTValues.VA[GTValues.EV]*2); +} \ No newline at end of file diff --git a/kubejs/server_scripts/sophisticated_backpacks/recipes.js b/kubejs/server_scripts/sophisticated_backpacks/recipes.js index 375727909..0dc396760 100644 --- a/kubejs/server_scripts/sophisticated_backpacks/recipes.js +++ b/kubejs/server_scripts/sophisticated_backpacks/recipes.js @@ -10,14 +10,15 @@ const registerSophisticatedBackpacksRecipes = (event) => { // Базовый рюкзак event.shaped('sophisticatedbackpacks:backpack', [ - 'ABD', - 'ACA', + 'AED', + 'BCB', 'BBB' ], { - A: '#forge:string', - B: '#forge:leather', - C: '#forge:chests/wooden', - D: 'minecraft:name_tag' + A: 'sns:reinforced_fiber', + B: 'sns:bound_leather_strip', + C: 'sns:pack_frame', + D: 'minecraft:name_tag', + E: 'sns:reinforced_fabric' }).id('tfg:sophisticated_backpacks/shaped/backpack') // Железный рюкзак diff --git a/kubejs/server_scripts/soulbound/recipes.js b/kubejs/server_scripts/soulbound/recipes.js new file mode 100644 index 000000000..19f67affa --- /dev/null +++ b/kubejs/server_scripts/soulbound/recipes.js @@ -0,0 +1,25 @@ +// priority: 0 +"use strict"; + +const registerSoulboundRecipes = (event) => { + + global.SOULBINDABLE_ITEMS.forEach(x => { + event.shapeless(Item.of(x.equipment, '{soulbindingSoulboundItems:1b}'), [x.item, x.equipment]) + .modifyResult((craftingGrid, result) => { + let orig = craftingGrid.find(Ingredient.of(x.equipment)) + + result.nbt.put("Damage", orig.nbt.getInt("Damage")); + if (x.equipment === 'ad_astra:space_suit' || x.equipment === 'ad_astra:netherite_space_suit') { + try { + result.nbt.put('BotariumData', orig.nbt.get('BotariumData')) + } catch (exception) { + console.error(exception); + } + } + result.nbt.put('soulbindingSoulboundItems', true) + return result; + }).id(`tfg:soulbind_${x.equipment}`); + + }) + +} \ No newline at end of file diff --git a/kubejs/server_scripts/soulbound/tags.js b/kubejs/server_scripts/soulbound/tags.js new file mode 100644 index 000000000..eae933e2f --- /dev/null +++ b/kubejs/server_scripts/soulbound/tags.js @@ -0,0 +1,10 @@ +// priority: 0 + +"use strict"; + +const registerSoulboundItemTags = (event) => { + + global.SOULBINDABLE_ITEMS.forEach(x => { + event.add('tfg:soulbindable_items', x.equipment) + }) +} diff --git a/kubejs/server_scripts/species/data.js b/kubejs/server_scripts/species/data.js new file mode 100644 index 000000000..5510e5f0c --- /dev/null +++ b/kubejs/server_scripts/species/data.js @@ -0,0 +1,10 @@ +const registerSpeciesFoodData = (event) => { + + event.foodItem('species:cracked_wraptor_egg', food => { + food.hunger(4) + food.saturation(1) + food.water(5) + food.decayModifier(3) + }) + +} \ No newline at end of file diff --git a/kubejs/server_scripts/species/loot.js b/kubejs/server_scripts/species/loot.js index 8af31d5b5..31694db09 100644 --- a/kubejs/server_scripts/species/loot.js +++ b/kubejs/server_scripts/species/loot.js @@ -8,15 +8,23 @@ function registerSpeciesLoots(event) { .addWeightedLoot([1, 2], ['gtceu:blue_alloy_single_wire']) event.addEntityLootModifier('species:birt') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) - .addWeightedLoot([1, 3], ['tfc:food/raw_birt']) + .matchMainHand('#forge:tools/butchery_knives') + .addWeightedLoot([1, 3], ['tfg:food/raw_birt']) event.addEntityLootModifier('species:limpet') .addWeightedLoot([5, 8], ['tfg:food/raw_limpet']) event.addEntityLootModifier('species:limpet') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) - .addWeightedLoot([2, 4], ['tfc:food/raw_limpet']) + .matchMainHand('#forge:tools/butchery_knives') + .addWeightedLoot([2, 4], ['tfg:food/raw_limpet']) + + event.addEntityLootModifier('species:goober') + .matchMainHand('#forge:tools/butchery_knives') + .addWeightedLoot([2, 4], ['tfg:food/raw_goober_meat']) + + event.addEntityLootModifier('species:springling') + .matchMainHand('#forge:tools/butchery_knives') + .addWeightedLoot([1, 3], ['tfg:food/raw_springling_chops']) } \ No newline at end of file diff --git a/kubejs/server_scripts/species/recipes.js b/kubejs/server_scripts/species/recipes.js index 2f3a5fa2e..6b4a2181c 100644 --- a/kubejs/server_scripts/species/recipes.js +++ b/kubejs/server_scripts/species/recipes.js @@ -69,4 +69,18 @@ function registerSpeciesRecipes(event) { generateGreenHouseRecipe(event, '8x tfg:saplings/alphacene', 'tfg:semiheavy_ammoniacal_water', 16000, '64x species:alphacene_mushroom_block', 'tfg:green_house/alphacene_mushroom', 'ad_astra:mars', 8, '8x minecraft:mushroom_stem', GTValues.VA[GTValues.MV]) + + event.shapeless('species:cracked_wraptor_egg', ['tfg:wraptor_egg', '#forge:tools/hammers']).id('tfg:shapeless/crack_egg') + event.shapeless('2x tfg:wraptor_sugar', ['species:cracked_wraptor_egg']).id('tfg:shapeless/juice_egg') + + event.recipes.gtceu.extractor('tfg:juice_egg_mv') + .itemInputs('species:cracked_wraptor_egg') + .itemOutputs('4x tfg:wraptor_sugar') + .duration(100) + .EUt(GTValues.VA[GTValues.MV]) + event.recipes.gtceu.extractor('tfg:juice_egg_full') + .itemInputs('tfg:wraptor_egg') + .itemOutputs('4x tfg:wraptor_sugar') + .duration(200) + .EUt(GTValues.VA[GTValues.MV]) } \ No newline at end of file diff --git a/kubejs/server_scripts/species/tags.js b/kubejs/server_scripts/species/tags.js index 1cf9597a5..f52da1be0 100644 --- a/kubejs/server_scripts/species/tags.js +++ b/kubejs/server_scripts/species/tags.js @@ -17,12 +17,11 @@ const registerSpeciesItemTags = (event) => { event.add('c:hidden_from_recipe_viewers', item) }) + event.add('c:hidden_from_recipe_viewers', 'species:alphacene_mushroom') + event.add('forge:eggs', 'species:birt_egg') event.add('firmalife:foods/raw_eggs', 'species:birt_egg') - event.add('species:goober_breed_items', 'betterend:flammalix') - event.add('species:goober_breed_items', 'betterend:small_amaranita_mushroom') - event.add('species:goober_breed_items', 'betterend:bolux_mushroom_product') - event.add('species:goober_breed_items', 'betterend:chorus_mushroom_product') + event.add('species:goober_breed_items', '#forge:mushrooms') event.add('species:cruncher_eats', '#tfc:foods/meat') } diff --git a/kubejs/server_scripts/tfc/data.js b/kubejs/server_scripts/tfc/data.js index bb1a333bd..3d4356f52 100644 --- a/kubejs/server_scripts/tfc/data.js +++ b/kubejs/server_scripts/tfc/data.js @@ -70,6 +70,7 @@ const registerTFCFertilizers = (event) => { const registerTFCKnappingTypes = (event) => { event.knappingType('minecraft:flint', 1, 1, 'tfc:item.knapping.stone', true, false, true, 'minecraft:flint', 'tfg:flint') + event.knappingType('tfc:straw', 4, 4, 'tfc:item.knapping.leather', false, false, false, 'tfc:straw', 'tfg:straw') } diff --git a/kubejs/server_scripts/tfc/loot.js b/kubejs/server_scripts/tfc/loot.js index 4b4ed4a08..044f9b757 100644 --- a/kubejs/server_scripts/tfc/loot.js +++ b/kubejs/server_scripts/tfc/loot.js @@ -6,9 +6,8 @@ function registerTFCLoots(event) { event.addEntityLootModifier('tfc:black_bear') .addWeightedLoot([8, 12], ['tfc:food/bear']) - event.addEntityLootModifier('tfc:black_bear') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([4, 6], ['tfc:food/bear']) @@ -16,7 +15,7 @@ function registerTFCLoots(event) { .addWeightedLoot([10, 16], ['tfc:food/bear']) event.addEntityLootModifier('tfc:grizzly_bear') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([5, 8], ['tfc:food/bear']) @@ -25,7 +24,7 @@ function registerTFCLoots(event) { .addWeightedLoot([2, 5], ['tfc:blubber']) event.addEntityLootModifier('tfc:polar_bear') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([7, 10], ['tfc:food/bear']) @@ -33,7 +32,7 @@ function registerTFCLoots(event) { .addWeightedLoot([6, 10], ['tfc:food/gran_feline']) event.addEntityLootModifier('tfc:cougar') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([3, 5], ['tfc:food/gran_feline']) @@ -41,7 +40,7 @@ function registerTFCLoots(event) { .addWeightedLoot([6, 10], ['tfc:food/gran_feline']) event.addEntityLootModifier('tfc:panther') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([3, 5], ['tfc:food/gran_feline']) @@ -49,7 +48,7 @@ function registerTFCLoots(event) { .addWeightedLoot([9, 14], ['tfc:food/gran_feline']) event.addEntityLootModifier('tfc:sabertooth') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([4, 7], ['tfc:food/gran_feline']) @@ -57,7 +56,7 @@ function registerTFCLoots(event) { .addWeightedLoot([9, 14], ['tfc:food/gran_feline']) event.addEntityLootModifier('tfc:lion') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([4, 7], ['tfc:food/gran_feline']) @@ -65,7 +64,7 @@ function registerTFCLoots(event) { .addWeightedLoot([9, 14], ['tfc:food/gran_feline']) event.addEntityLootModifier('tfc:tiger') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([4, 7], ['tfc:food/gran_feline']) @@ -73,7 +72,7 @@ function registerTFCLoots(event) { .addWeightedLoot([2, 5], ['tfc:food/gran_feline']) event.addEntityLootModifier('tfc:ocelot') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([1, 2], ['tfc:food/gran_feline']) @@ -81,7 +80,7 @@ function registerTFCLoots(event) { .addWeightedLoot([2, 5], ['tfc:food/gran_feline']) event.addEntityLootModifier('tfc:cat') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([1, 2], ['tfc:food/gran_feline']) @@ -89,7 +88,7 @@ function registerTFCLoots(event) { .addWeightedLoot([9, 14], ['tfc:food/gran_feline']) event.addEntityLootModifier('tfc:sabertooth') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([4, 7], ['tfc:food/gran_feline']) @@ -97,7 +96,7 @@ function registerTFCLoots(event) { .addWeightedLoot([5, 8], ['tfc:food/wolf']) event.addEntityLootModifier('tfc:dog') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([2, 4], ['tfc:food/wolf']) @@ -105,7 +104,7 @@ function registerTFCLoots(event) { .addWeightedLoot([5, 8], ['tfc:food/wolf']) event.addEntityLootModifier('tfc:wolf') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([2, 4], ['tfc:food/wolf']) @@ -113,7 +112,7 @@ function registerTFCLoots(event) { .addWeightedLoot([8, 12], ['tfc:food/wolf']) event.addEntityLootModifier('tfc:direwolf') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([4, 6], ['tfc:food/wolf']) @@ -121,7 +120,7 @@ function registerTFCLoots(event) { .addWeightedLoot([4, 7], ['tfc:food/hyena']) event.addEntityLootModifier('tfc:hyena') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([2, 4], ['tfc:food/hyena']) @@ -129,7 +128,7 @@ function registerTFCLoots(event) { .addWeightedLoot([4, 7], ['tfc:food/fox']) event.addEntityLootModifier('tfc:fox') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([2, 4], ['tfc:food/fox']) @@ -138,117 +137,117 @@ function registerTFCLoots(event) { .addSequenceLoot(LootEntry.of('tfc:metal/fish_hook/copper').when(c => c.randomChance(0.2))) event.addEntityLootModifier('tfc:crocodile') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([2, 5], ['tfc:food/bluegill', 'tfc:food/crappie', 'tfc:food/lake_trout', 'tfc:food/rainbow_trout', 'tfc:food/frog_legs']) // Passive animals event.addEntityLootModifier('tfc:alpaca') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([5, 10], ['tfc:food/camelidae']) event.addEntityLootModifier('tfc:boar') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([2, 4], ['tfc:food/pork']) event.addEntityLootModifier('tfc:bongo') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([2, 4], ['tfc:food/venison']) event.addEntityLootModifier('tfc:caribou') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([3, 5], ['tfc:food/venison']) event.addEntityLootModifier('tfc:chicken') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([1, 3], ['tfc:food/chicken']) event.addEntityLootModifier('tfc:cow') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([8, 12], ['tfc:food/beef']) event.addEntityLootModifier('tfc:deer') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([2, 4], ['tfc:food/venison']) event.addEntityLootModifier('tfc:donkey') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([7, 10], ['tfc:food/horse_meat']) event.addEntityLootModifier('tfc:duck') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([1, 3], ['tfc:food/duck']) event.addEntityLootModifier('tfc:frog') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([1, 2], ['tfc:food/frog_legs']) event.addEntityLootModifier('tfc:gazelle') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([2, 4], ['tfc:food/venison']) event.addEntityLootModifier('tfc:goat') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([4, 6], ['tfc:food/chevon']) event.addEntityLootModifier('tfc:grouse') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([1, 2], ['tfc:food/grouse']) event.addEntityLootModifier('tfc:horse') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([7, 10], ['tfc:food/horse_meat']) event.addEntityLootModifier('tfc:moose') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([5, 10], ['tfc:food/venison']) event.addEntityLootModifier('tfc:mule') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([7, 10], ['tfc:food/horse_meat']) event.addEntityLootModifier('tfc:musk_ox') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([7, 10], ['tfc:food/mutton']) event.addEntityLootModifier('tfc:peafowl') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([1, 2], ['tfc:food/peafowl']) event.addEntityLootModifier('tfc:pheasant') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([1, 2], ['tfc:food/pheasant']) event.addEntityLootModifier('tfc:pig') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([5, 7], ['tfc:food/pork']) event.addEntityLootModifier('tfc:quail') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([1, 3], ['tfc:food/quail']) event.addEntityLootModifier('tfc:rabbit') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addLoot('tfc:food/rabbit') event.addEntityLootModifier('tfc:sheep') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([6, 9], ['tfc:food/mutton']) event.addEntityLootModifier('tfc:turkey') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([1, 2], ['tfc:food/turkey']) event.addEntityLootModifier('tfc:turtle') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addLoot('tfc:food/turtle') event.addEntityLootModifier('tfc:wildebeest') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([4, 7], ['tfc:food/beef']) event.addEntityLootModifier('tfc:yak') - .randomChanceWithEnchantment('minecraft:looting', [0, 0.3, 0.6, 1]) + .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([7, 10], ['tfc:food/chevon']) diff --git a/kubejs/server_scripts/tfc/recipes.js b/kubejs/server_scripts/tfc/recipes.js index 4539c2c63..c6f3c8c03 100644 --- a/kubejs/server_scripts/tfc/recipes.js +++ b/kubejs/server_scripts/tfc/recipes.js @@ -89,8 +89,8 @@ const registerTFCRecipes = (event) => { const itemId = element.id; const recipeId = `greenhouse_${itemId.replace(':', '_')}`; - generateGreenHouseRecipe(event, itemId, '#tfc:any_fresh_water', 8000, `8x ${itemId}`, - recipeId, null, 8, `16x ${itemId}`, GTValues.VH[GTValues.LV]); + generateGreenHouseRecipe(event, itemId, '#tfc:any_fresh_water', 8000, `8x ${itemId}`, + recipeId, null, 8, itemId, GTValues.VH[GTValues.LV]); }); //#endregion @@ -183,6 +183,9 @@ const registerTFCRecipes = (event) => { event.recipes.tfc.heating('tfc:plant/winged_kelp', 200) .resultItem('tfc:food/dried_kelp') + // Burning Bread + event.recipes.tfc.heating('#tfc:foods/breads', 850) + // Soda Ash event.smelting('3x tfc:powder/soda_ash', 'tfc:food/dried_seaweed').id('tfg:smelting/dried_seaweed_to_soda') event.smelting('3x tfc:powder/soda_ash', 'tfc:food/dried_kelp').id('tfg:smelting/dried_kelp_to_soda') diff --git a/kubejs/server_scripts/tfc/recipes.knapping.js b/kubejs/server_scripts/tfc/recipes.knapping.js index eaa6531f3..1240dd49d 100644 --- a/kubejs/server_scripts/tfc/recipes.knapping.js +++ b/kubejs/server_scripts/tfc/recipes.knapping.js @@ -207,5 +207,26 @@ function registerTFCKnappingRecipes(event) { .id('tfg:rock_knapping/stone_shovel_head') //#endregion + + event.recipes.tfc.knapping('tfc:thatch', 'tfg:straw', [ + "XXX", + "XXX", + "XXX" + + ]) + .ingredient('tfc:straw') + .outsideSlotRequired(false) + .id('tfc:straw_knapping/thatch_block') + + event.remove({ id: 'tfcambiental:crafting/straw_hat'}) + + event.recipes.tfc.knapping('tfcambiental:straw_hat', 'tfg:straw', [ + " XXX ", + "XXXXX" + + ]) + .ingredient('tfc:straw') + .outsideSlotRequired(false) + .id('sns:straw_knapping/straw_hat') } \ No newline at end of file diff --git a/kubejs/server_scripts/tfc/recipes.removes.js b/kubejs/server_scripts/tfc/recipes.removes.js index 95af557e8..aae1a9790 100644 --- a/kubejs/server_scripts/tfc/recipes.removes.js +++ b/kubejs/server_scripts/tfc/recipes.removes.js @@ -153,6 +153,7 @@ function removeTFCRecipes(event) { event.remove({ id: 'tfc:crafting/alabaster_brick' }) event.remove({ id: /^tfc:crafting\/dough\/.*/ }) + event.remove({ id: 'tfc:heating/destroy_bread' }) event.remove({ id: 'tfc:crafting/gunpowder_graphite' }) event.remove({ id: 'tfc:crafting/gunpowder' }) @@ -160,4 +161,4 @@ function removeTFCRecipes(event) { event.remove({ output: 'tfc:rustic_windmill_blade'}) event.remove({ output: 'tfc:lattice_windmill_blade'}) event.remove({ id: 'tfchotornot:heating/insulating_items'}) -} \ No newline at end of file +} diff --git a/kubejs/server_scripts/tfc/recipes.sand.js b/kubejs/server_scripts/tfc/recipes.sand.js index c53120b1b..2ef29e6a1 100644 --- a/kubejs/server_scripts/tfc/recipes.sand.js +++ b/kubejs/server_scripts/tfc/recipes.sand.js @@ -34,7 +34,7 @@ function registerTFCSandRecipes(event) { event.recipes.gtceu.forge_hammer(`raw_${sandColor}_sandstone_to_sand`) .itemInputs(`tfc:raw_sandstone/${sandColor}`) .itemOutputs(`4x tfc:sand/${sandColor}`) - .duration(200) + .duration(20*3.5) .EUt(2) event.recipes.greate.pressing(`4x tfc:sand/${sandColor}`, `tfc:raw_sandstone/${sandColor}`) @@ -45,7 +45,7 @@ function registerTFCSandRecipes(event) { event.recipes.gtceu.forge_hammer(`smooth_${sandColor}_sandstone_to_sand`) .itemInputs(`tfc:smooth_sandstone/${sandColor}`) .itemOutputs(`4x tfc:sand/${sandColor}`) - .duration(200) + .duration(20*3.5) .EUt(2) event.recipes.greate.pressing(`4x tfc:sand/${sandColor}`, `tfc:smooth_sandstone/${sandColor}`) @@ -56,7 +56,7 @@ function registerTFCSandRecipes(event) { event.recipes.gtceu.forge_hammer(`cut_${sandColor}_sandstone_to_sand`) .itemInputs(`tfc:cut_sandstone/${sandColor}`) .itemOutputs(`4x tfc:sand/${sandColor}`) - .duration(200) + .duration(20*3.5) .EUt(2) event.recipes.greate.pressing(`4x tfc:sand/${sandColor}`, `tfc:cut_sandstone/${sandColor}`) @@ -138,7 +138,7 @@ function registerTFCSandRecipes(event) { event.recipes.gtceu.forge_hammer('brown_gravel_to_sand') .itemInputs('#tfc:brown_gravel') .itemOutputs('tfc:sand/brown') - .duration(200) + .duration(20*3.5) .EUt(2) event.recipes.greate.pressing('tfc:sand/brown', '#tfc:brown_gravel') @@ -149,7 +149,7 @@ function registerTFCSandRecipes(event) { event.recipes.gtceu.forge_hammer('white_gravel_to_sand') .itemInputs('#tfc:white_gravel') .itemOutputs('tfc:sand/white') - .duration(200) + .duration(20*3.5) .EUt(2) event.recipes.greate.pressing('tfc:sand/white', '#tfc:white_gravel') @@ -160,7 +160,7 @@ function registerTFCSandRecipes(event) { event.recipes.gtceu.forge_hammer('black_gravel_to_sand') .itemInputs('#tfc:black_gravel') .itemOutputs('tfc:sand/black') - .duration(200) + .duration(20*3.5) .EUt(2) event.recipes.greate.pressing('tfc:sand/black', '#tfc:black_gravel') @@ -171,7 +171,7 @@ function registerTFCSandRecipes(event) { event.recipes.gtceu.forge_hammer('red_gravel_to_sand') .itemInputs('#tfc:red_gravel') .itemOutputs('tfc:sand/red') - .duration(200) + .duration(20*3.5) .EUt(2) event.recipes.greate.pressing('tfc:sand/red', '#tfc:red_gravel') @@ -182,7 +182,7 @@ function registerTFCSandRecipes(event) { event.recipes.gtceu.forge_hammer('yellow_gravel_to_sand') .itemInputs('#tfc:yellow_gravel') .itemOutputs('tfc:sand/yellow') - .duration(200) + .duration(20*3.5) .EUt(2) event.recipes.greate.pressing('tfc:sand/yellow', '#tfc:yellow_gravel') @@ -193,7 +193,7 @@ function registerTFCSandRecipes(event) { event.recipes.gtceu.forge_hammer('green_gravel_to_sand') .itemInputs('#tfc:green_gravel') .itemOutputs('tfc:sand/green') - .duration(200) + .duration(20*3.5) .EUt(2) event.recipes.greate.pressing('tfc:sand/green', '#tfc:green_gravel') @@ -204,7 +204,7 @@ function registerTFCSandRecipes(event) { event.recipes.gtceu.forge_hammer('pink_gravel_to_sand') .itemInputs('#tfc:pink_gravel') .itemOutputs('tfc:sand/pink') - .duration(200) + .duration(20*3.5) .EUt(2) event.recipes.greate.pressing('tfc:sand/pink', '#tfc:pink_gravel') diff --git a/kubejs/server_scripts/tfc/recipes.wood.js b/kubejs/server_scripts/tfc/recipes.wood.js index 21b77297c..7afa73464 100644 --- a/kubejs/server_scripts/tfc/recipes.wood.js +++ b/kubejs/server_scripts/tfc/recipes.wood.js @@ -3,6 +3,8 @@ function registerTFCWoodRecipes(event) { + event.replaceInput({ output: '#tfc:sewing_tables'}, '#forge:shears', '#forge:tools/knives') + // Какие то рецепты дерева global.TFC_WOOD_TYPES.forEach(wood => { event.remove({ id: `tfc:crafting/wood/${wood}_axle` }) diff --git a/kubejs/server_scripts/tfc/tags.js b/kubejs/server_scripts/tfc/tags.js index 1d8b81b14..3e9df62ba 100644 --- a/kubejs/server_scripts/tfc/tags.js +++ b/kubejs/server_scripts/tfc/tags.js @@ -330,6 +330,9 @@ const registerTFCItemTags = (event) => { event.add('minecraft:stone_buttons', `tfc:rock/button/${stone}`) event.add('minecraft:buttons', `tfc:rock/button/${stone}`) }) + + event.add('tfc:any_knapping', '#tfc:pit_kiln_straw') + event.add('tfg:burlap_fiber', 'tfc:jute_fiber') } const registerTFCBlockTags = (event) => { @@ -366,6 +369,9 @@ const registerTFCBlockTags = (event) => { event.add('tfc:can_start_collapse', '#tfg:rock_walls') event.add('tfc:can_trigger_collapse', '#tfg:rock_walls') + event.add('tfc:can_start_collapse', '#tfc:rock/smooth') + event.add('tfc:can_trigger_collapse', '#tfc:rock/smooth') + // Возможность обрушения руды event.add('tfc:can_collapse', '#forge:ores') event.add('tfc:can_start_collapse', '#forge:ores') @@ -601,6 +607,7 @@ const registerTFCPlacedFeatures = (event) => { // Crops event.add('tfc:feature/crops', 'tfg:earth/sunflower_patch') event.add('tfc:feature/crops', 'tfg:earth/rapeseed_patch') + event.add('tfc:feature/crops', 'tfg:earth/flax_patch') // Other decoration event.add('tfc:in_biome/underground_decoration', 'tfg:glow_lichen') diff --git a/kubejs/server_scripts/tfg/data.js b/kubejs/server_scripts/tfg/data.js index 561dc4d85..4fe84fcf7 100644 --- a/kubejs/server_scripts/tfg/data.js +++ b/kubejs/server_scripts/tfg/data.js @@ -21,6 +21,7 @@ const registerTFGHeatData = (event) => { event.itemHeat('tfg:sunflower_product', 1.0, null, null) event.itemHeat('tfg:roasted_sunflower_seeds', 1.0, null, null) + event.itemHeat('#tfc:powders', 1.0, null, null) } @@ -257,6 +258,8 @@ const registerTFGFoodData = (event) => { food.decayModifier(1.5) }) + + // high-tech food @@ -428,6 +431,15 @@ const registerTFGCropRanges = (event) => { climate.hydrationWiggle(7.5) climate.temperatureWiggle(1.5) }, 'tfg:rapeseed') + + event.climateRange(climate => { + climate.minHydration(15) + climate.maxHydration(65) + climate.minTemperature(-8) + climate.maxTemperature(25) + climate.hydrationWiggle(6.5) + climate.temperatureWiggle(3) + }, 'tfg:flax') // Mars event.climateRange(climate => { @@ -522,6 +534,24 @@ const registerTFGFLPlanters = (event) => { ], null ) + + event.firmalifePlantable( + 'tfg:flax_seeds', + 'large', + 0, + 3, + 0.2, + 'tfg:flax_seeds', + 'tfg:flax_product', + 'nitrogen', + [ + 'tfg:block/crop/flax_age_0', + 'tfg:block/crop/flax_age_1', + 'tfg:block/crop/flax_age_5_top', + 'tfg:block/crop/flax_age_6_top' + ], + null + ) event.firmalifePlantable( 'betterend:amber_root_seeds', diff --git a/kubejs/server_scripts/tfg/events.chunks.js b/kubejs/server_scripts/tfg/events.chunks.js index ad12db91c..1906d8643 100644 --- a/kubejs/server_scripts/tfg/events.chunks.js +++ b/kubejs/server_scripts/tfg/events.chunks.js @@ -42,7 +42,7 @@ TFCEvents.createChunkDataProvider('mars', event => { .octaves(3) .scaled(70, 90) const forestLayer = TFC.misc.newOpenSimplex2D(event.worldSeed + 98713856895664) - .spread(0.0002) + .spread(0.00002) .terraces(9) .affine(6, 12) .scaled(6, 18, 0, 1) diff --git a/kubejs/server_scripts/tfg/events.forests.js b/kubejs/server_scripts/tfg/events.forests.js index 7e1551a4e..686924391 100644 --- a/kubejs/server_scripts/tfg/events.forests.js +++ b/kubejs/server_scripts/tfg/events.forests.js @@ -5,18 +5,25 @@ TFCEvents.worldgenData(event => { event.forest('tfg:mars_forest', '#tfg:mars_forest_entries', [ - event.forestTypesMapEntry('none', [1, 3], 0, 0, 0, false, false, 0), - event.forestTypesMapEntry('sparse', [2, 5], 6, 0.08, 0, true, false, null), - event.forestTypesMapEntry('edge', 5, 15, 0.1, 1, true, true, [0, 1]), - event.forestTypesMapEntry('normal', 10, 25, 0.1, 1, true, true, [1, 2]), - event.forestTypesMapEntry('old_growth', 15, 40, 0.2, 1, true, true, [1, 2]) + // https://notenoughmail.github.io/kubejs_tfc/1.20.1/worldgen/#forest-types-map-entry + // type, treeCount, groundcoverCount, perChunkChance, bushCount, hasSpoilerOldGrowth, allowsOldGrowth, leafPileCount + + event.forestTypesMapEntry('none', [0, 1], 0, 0.02, 0, false, false, 0), + event.forestTypesMapEntry('sparse', [1, 3], 6, 0.2, 0, false, false, [0, 1]), + event.forestTypesMapEntry('edge', [2, 4], 15, 0.8, 1, true, false, [0, 1]), + event.forestTypesMapEntry('normal', [4, 6], 25, 1, 1, true, false, [1, 2]), + event.forestTypesMapEntry('old_growth', [5, 8], 40, 1, 2, true, true, [1, 2]) ], false, placement => {} ) event.forestEntry('tfg:mars/crimson_forest_entry', - climate => {}, // TODO: climate variation? + climate => { + climate.maxTemp(-20) + climate.minTemp(-65) + climate.minRain(-10) + }, 'beneath:wood/wood/crimson', // bush log 'beneath:wood/leaves/crimson', // bush leaves 'beneath:wood/log/crimson', // fallen log @@ -24,9 +31,10 @@ TFCEvents.worldgenData(event => { [ // ground cover 'minecraft:crimson_fungus', 'beneath:wood/fallen_leaves/crimson', + 'beneath:wood/leaves/crimson', 'beneath:wood/twig/crimson', - 'tfc:groundcover/feather', - 'tfc:groundcover/stick' + 'tfg:groundcover/wraptor_feather', + 'tfg:groundcover/glider_feather' ], 'tfg:mars/tree/crimson', // tree feature 'tfg:mars/tree/crimson_dead', // dead tree feature @@ -41,7 +49,12 @@ TFCEvents.worldgenData(event => { ) event.forestEntry('tfg:mars/warped_forest_entry', - climate => {}, + climate => { + climate.maxTemp(-20) + climate.minTemp(-65) + climate.minRain(-20) + climate.maxRain(0) + }, 'beneath:wood/wood/warped', 'beneath:wood/leaves/warped', 'beneath:wood/log/warped', @@ -49,9 +62,10 @@ TFCEvents.worldgenData(event => { [ 'minecraft:warped_fungus', 'beneath:wood/fallen_leaves/warped', + 'beneath:wood/leaves/warped', 'beneath:wood/twig/warped', - 'tfc:groundcover/feather', - 'tfc:groundcover/stick' + 'tfg:groundcover/wraptor_feather', + 'tfg:groundcover/glider_feather' ], 'tfg:mars/tree/warped', 'tfg:mars/tree/warped_dead', @@ -61,17 +75,22 @@ TFCEvents.worldgenData(event => { ) event.forestEntry('tfg:mars/aeronos_forest_entry', - climate => {}, + climate => { + climate.maxTemp(-30) + climate.minTemp(-85) + climate.minRain(-15) + }, 'ad_astra:aeronos_stem', 'ad_astra:aeronos_cap', - 'ad_astra:aeronos_stem', - null, + 'betterend:cave_bush', + 'betterend:cave_bush_fallen', [ "ad_astra:aeronos_mushroom", - 'beneath:wood/fallen_leaves/crimson', - 'beneath:wood/twig/crimson', - 'tfc:groundcover/feather', - 'tfc:groundcover/stick' + 'betterend:cave_bush', + 'betterend:cave_bush_fallen', + 'tfg:groundcover/wraptor_feather', + 'tfg:groundcover/glider_feather', + 'tfg:groundcover/aeronos_stick' ], 'tfg:mars/tree/aeronos', 'tfg:mars/tree/aeronos_dead', @@ -81,17 +100,22 @@ TFCEvents.worldgenData(event => { ) event.forestEntry('tfg:mars/strophar_forest_entry', - climate => {}, + climate => { + climate.maxTemp(-20) + climate.minTemp(-80) + climate.maxRain(5) + }, 'ad_astra:strophar_stem', 'ad_astra:strophar_cap', - null, - null, + 'betterend:lucernia_leaves', + 'betterend:lucernia_leaves_fallen', [ "ad_astra:strophar_mushroom", - 'beneath:wood/fallen_leaves/warped', - 'beneath:wood/twig/warped', - 'tfc:groundcover/feather', - 'tfc:groundcover/stick' + 'betterend:lucernia_leaves', + 'betterend:lucernia_leaves_fallen', + 'tfg:groundcover/wraptor_feather', + 'tfg:groundcover/glider_feather', + 'tfg:groundcover/strophar_stick' ], 'tfg:mars/tree/strophar', 'tfg:mars/tree/strophar_dead', @@ -101,16 +125,18 @@ TFCEvents.worldgenData(event => { ) event.forestEntry('tfg:mars/alphacene_forest_entry', - climate => {}, + climate => { + climate.minTemp(-40) + }, 'minecraft:mushroom_stem', 'species:alphacene_mushroom_block', 'minecraft:mushroom_stem', null, [ "species:alphacene_mushroom", - 'beneath:wood/fallen_leaves/crimson', - 'beneath:wood/twig/crimson', - 'tfc:groundcover/feather', + 'tfg:groundcover/wraptor_feather', + 'tfg:groundcover/glider_feather', + 'tfg:groundcover/alphacene_stick', 'tfc:groundcover/stick' ], 'species:alphacene_mushroom', @@ -119,6 +145,8 @@ TFCEvents.worldgenData(event => { null, null, null, null, null, null, placement => {} ) + + // TODO: glacian }) function registerTFGForestConfiguredFeatures(event) { diff --git a/kubejs/server_scripts/tfg/loot.js b/kubejs/server_scripts/tfg/loot.js new file mode 100644 index 000000000..ac78e2fe8 --- /dev/null +++ b/kubejs/server_scripts/tfg/loot.js @@ -0,0 +1,168 @@ +"use strict"; + + +function registerTFGLoots(event) { + + //#region Vase Loot + global.MINECRAFT_DYE_NAMES.forEach(color => { + event.addBlockLootModifier(`tfg:decorative_vase/generated/${color}`) + .removeLoot(Ingredient.all) + //ore + .pool((pool) => { + pool.rolls([4, 6]); + pool.addAlternativesLoot( + LootEntry.of('tfc:ore/normal_bismuthinite').when((c) => c.randomChance(0.1)), + LootEntry.of('tfc:ore/rich_bismuthinite').when((c) => c.randomChance(0.2)), + + LootEntry.of('tfc:ore/normal_native_copper').when((c) => c.randomChance(0.1)), + LootEntry.of('tfc:ore/rich_native_copper').when((c) => c.randomChance(0.2)), + + LootEntry.of('tfc:ore/normal_sphalerite').when((c) => c.randomChance(0.1)), + LootEntry.of('tfc:ore/rich_sphalerite').when((c) => c.randomChance(0.2)), + + LootEntry.of('tfc:ore/normal_cassiterite').when((c) => c.randomChance(0.1)), + LootEntry.of('tfc:ore/rich_cassiterite').when((c) => c.randomChance(0.2)), + + LootEntry.of('tfc:ore/normal_native_gold').when((c) => c.randomChance(0.1)), + LootEntry.of('tfc:ore/rich_native_gold').when((c) => c.randomChance(0.2)), + + LootEntry.of('tfc:ore/normal_native_silver').when((c) => c.randomChance(0.1)), + LootEntry.of('tfc:ore/rich_native_silver').when((c) => c.randomChance(0.2)), + + LootEntry.of('tfc:ore/normal_hematite').when((c) => c.randomChance(0.1)), + LootEntry.of('tfc:ore/rich_hematite').when((c) => c.randomChance(0.2)), + + LootEntry.of('gtceu:rich_raw_rock_salt').when((c) => c.randomChance(0.1)), + LootEntry.of('gtceu:rich_raw_salt').when((c) => c.randomChance(0.1)), + LootEntry.of('gtceu:rich_raw_saltpeter').when((c) => c.randomChance(0.1)) + ); + }) + //seeds + .pool((pool) => { + pool.rolls([2, 8]); + pool.addAlternativesLoot( + LootEntry.of('tfc:seeds/onion').when((c) => c.randomChance(0.2)), + LootEntry.of('tfc:seeds/cabbage').when((c) => c.randomChance(0.2)), + LootEntry.of('tfc:seeds/potato').when((c) => c.randomChance(0.2)), + LootEntry.of('tfc:seeds/jute').when((c) => c.randomChance(0.1)), + LootEntry.of('tfc:seeds/sugarcane').when((c) => c.randomChance(0.1)), + LootEntry.of('firmalife:plant/pineapple_bush').when((c) => c.randomChance(0.1)), + LootEntry.of('tfc:plant/peach_sapling').when((c) => c.randomChance(0.1)), + LootEntry.of('tfc:plant/red_apple_sapling').when((c) => c.randomChance(0.1))); + }) + //loot + .pool((pool) => { + pool.rolls([0, 3]); + pool.addAlternativesLoot( + LootEntry.of('tfc:wool_yarn').when((c) => c.randomChance(0.1)), + LootEntry.of('tfc:blubber').when((c) => c.randomChance(0.1)), + LootEntry.of('minecraft:bone').when((c) => c.randomChance(0.1)), + LootEntry.of('tfc:kaolin_clay').when((c) => c.randomChance(0.1)), + LootEntry.of('tfc:glue').when((c) => c.randomChance(0.1)), + LootEntry.of('tfc:burlap_cloth').when((c) => c.randomChance(0.1)), + LootEntry.of('tfc:wool_cloth').when((c) => c.randomChance(0.1)), + LootEntry.of('tfc:mortar').when((c) => c.randomChance(0.1)), + LootEntry.of('tfc:leather').when((c) => c.randomChance(0.1)), + LootEntry.of('chalk:black_chalk').when((c) => c.randomChance(0.1)), + LootEntry.of('chalk:red_chalk').when((c) => c.randomChance(0.1)), + LootEntry.of('chalk:white_chalk').when((c) => c.randomChance(0.1)), + LootEntry.of('minecraft:goat_horn').when((c) => c.randomChance(0.1)), + LootEntry.of('tfg:regeneration_pill').when((c) => c.randomChance(0.1)), + LootEntry.of('tfg:water_breathing_pill').when((c) => c.randomChance(0.1)), + LootEntry.of('tfg:night_vision_pill').when((c) => c.randomChance(0.1)), + LootEntry.of('tfg:haste_pill').when((c) => c.randomChance(0.1)), + LootEntry.of('tfc:small_raw_hide').when((c) => c.randomChance(0.1)), + LootEntry.of('tfc:medium_raw_hide').when((c) => c.randomChance(0.1)), + LootEntry.of('tfc:large_raw_hide').when((c) => c.randomChance(0.1)), + LootEntry.of('firmalife:beeswax').when((c) => c.randomChance(0.1)), + LootEntry.of('gtceu:bismuth_bronze_pickaxe_head').when((c) => c.randomChance(0.1)), + LootEntry.of('gtceu:bismuth_bronze_axe_head').when((c) => c.randomChance(0.1)), + LootEntry.of('gtceu:bismuth_bronze_shovel_head').when((c) => c.randomChance(0.1)), + LootEntry.of('gtceu:bismuth_bronze_knife_head').when((c) => c.randomChance(0.1))); + }) + }); + + //#region Blocks + + event.addBlockLootModifier('minecraft:campfire') + .removeLoot(Ingredient.all) + .addLoot('minecraft:campfire') + + //#endregion + + //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) + }) + + // Extra animal drop amounts for butchery knives + + event.addEntityLootModifier('tfg:glacian_ram') + .matchMainHand('#forge:tools/butchery_knives') + .addWeightedLoot([6, 9], ['tfg:food/raw_glacian_mutton']) + + event.addEntityLootModifier('tfg:moon_rabbit') + .matchMainHand('#forge:tools/butchery_knives') + .addLoot('tfg:food/raw_moon_rabbit') + + event.addEntityLootModifier('tfg:sniffer') + .matchMainHand('#forge:tools/butchery_knives') + .addWeightedLoot([6, 9], ['tfg:food/raw_sniffer_beef']) +}; diff --git a/kubejs/server_scripts/tfg/loot_tables.js b/kubejs/server_scripts/tfg/loot_tables.js deleted file mode 100644 index f377a8868..000000000 --- a/kubejs/server_scripts/tfg/loot_tables.js +++ /dev/null @@ -1,155 +0,0 @@ -"use strict"; - - -function registerTFGLoots(event) { - - //#region Vase Loot - global.MINECRAFT_DYE_NAMES.forEach(color => { - event.addBlockLootModifier(`tfg:decorative_vase/generated/${color}`) - .removeLoot(Ingredient.all) - //ore - .pool((pool) => { - pool.rolls([4, 6]); - pool.addAlternativesLoot( - LootEntry.of('tfc:ore/normal_bismuthinite').when((c) => c.randomChance(0.1)), - LootEntry.of('tfc:ore/rich_bismuthinite').when((c) => c.randomChance(0.2)), - - LootEntry.of('tfc:ore/normal_native_copper').when((c) => c.randomChance(0.1)), - LootEntry.of('tfc:ore/rich_native_copper').when((c) => c.randomChance(0.2)), - - LootEntry.of('tfc:ore/normal_sphalerite').when((c) => c.randomChance(0.1)), - LootEntry.of('tfc:ore/rich_sphalerite').when((c) => c.randomChance(0.2)), - - LootEntry.of('tfc:ore/normal_cassiterite').when((c) => c.randomChance(0.1)), - LootEntry.of('tfc:ore/rich_cassiterite').when((c) => c.randomChance(0.2)), - - LootEntry.of('tfc:ore/normal_native_gold').when((c) => c.randomChance(0.1)), - LootEntry.of('tfc:ore/rich_native_gold').when((c) => c.randomChance(0.2)), - - LootEntry.of('tfc:ore/normal_native_silver').when((c) => c.randomChance(0.1)), - LootEntry.of('tfc:ore/rich_native_silver').when((c) => c.randomChance(0.2)), - - LootEntry.of('tfc:ore/normal_hematite').when((c) => c.randomChance(0.1)), - LootEntry.of('tfc:ore/rich_hematite').when((c) => c.randomChance(0.2)), - - LootEntry.of('gtceu:rich_raw_rock_salt').when((c) => c.randomChance(0.1)), - LootEntry.of('gtceu:rich_raw_salt').when((c) => c.randomChance(0.1)), - LootEntry.of('gtceu:rich_raw_saltpeter').when((c) => c.randomChance(0.1)) - ); - }) - //seeds - .pool((pool) => { - pool.rolls([2, 8]); - pool.addAlternativesLoot( - LootEntry.of('tfc:seeds/onion').when((c) => c.randomChance(0.2)), - LootEntry.of('tfc:seeds/cabbage').when((c) => c.randomChance(0.2)), - LootEntry.of('tfc:seeds/potato').when((c) => c.randomChance(0.2)), - LootEntry.of('tfc:seeds/jute').when((c) => c.randomChance(0.1)), - LootEntry.of('tfc:seeds/sugarcane').when((c) => c.randomChance(0.1)), - LootEntry.of('firmalife:plant/pineapple_bush').when((c) => c.randomChance(0.1)), - LootEntry.of('tfc:plant/peach_sapling').when((c) => c.randomChance(0.1)), - LootEntry.of('tfc:plant/red_apple_sapling').when((c) => c.randomChance(0.1))); - }) - //loot - .pool((pool) => { - pool.rolls([0, 3]); - pool.addAlternativesLoot( - LootEntry.of('tfc:wool_yarn').when((c) => c.randomChance(0.1)), - LootEntry.of('tfc:blubber').when((c) => c.randomChance(0.1)), - LootEntry.of('minecraft:bone').when((c) => c.randomChance(0.1)), - LootEntry.of('tfc:kaolin_clay').when((c) => c.randomChance(0.1)), - LootEntry.of('tfc:glue').when((c) => c.randomChance(0.1)), - LootEntry.of('tfc:burlap_cloth').when((c) => c.randomChance(0.1)), - LootEntry.of('tfc:wool_cloth').when((c) => c.randomChance(0.1)), - LootEntry.of('tfc:mortar').when((c) => c.randomChance(0.1)), - LootEntry.of('tfc:leather').when((c) => c.randomChance(0.1)), - LootEntry.of('chalk:black_chalk').when((c) => c.randomChance(0.1)), - LootEntry.of('chalk:red_chalk').when((c) => c.randomChance(0.1)), - LootEntry.of('chalk:white_chalk').when((c) => c.randomChance(0.1)), - LootEntry.of('minecraft:goat_horn').when((c) => c.randomChance(0.1)), - LootEntry.of('tfg:regeneration_pill').when((c) => c.randomChance(0.1)), - LootEntry.of('tfg:water_breathing_pill').when((c) => c.randomChance(0.1)), - LootEntry.of('tfg:night_vision_pill').when((c) => c.randomChance(0.1)), - LootEntry.of('tfg:haste_pill').when((c) => c.randomChance(0.1)), - LootEntry.of('tfc:small_raw_hide').when((c) => c.randomChance(0.1)), - LootEntry.of('tfc:medium_raw_hide').when((c) => c.randomChance(0.1)), - LootEntry.of('tfc:large_raw_hide').when((c) => c.randomChance(0.1)), - LootEntry.of('firmalife:beeswax').when((c) => c.randomChance(0.1)), - LootEntry.of('gtceu:bismuth_bronze_pickaxe_head').when((c) => c.randomChance(0.1)), - LootEntry.of('gtceu:bismuth_bronze_axe_head').when((c) => c.randomChance(0.1)), - LootEntry.of('gtceu:bismuth_bronze_shovel_head').when((c) => c.randomChance(0.1)), - LootEntry.of('gtceu:bismuth_bronze_knife_head').when((c) => c.randomChance(0.1))); - }) - }); - - //#region Blocks - - event.addBlockLootModifier('minecraft:campfire') - .removeLoot(Ingredient.all) - .addLoot('minecraft:campfire') - - //#endregion - - //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.bioreactor.js b/kubejs/server_scripts/tfg/recipes.bioreactor.js new file mode 100644 index 000000000..fe5da21c3 --- /dev/null +++ b/kubejs/server_scripts/tfg/recipes.bioreactor.js @@ -0,0 +1,193 @@ +// priority: 0 +"use strict"; + +/** + * @param {Internal.RecipesEventJS} event + */ +function registerTFGBioreactorRecipes(event) { + const $ISPRecipeLogic = Java.loadClass("su.terrafirmagreg.core.common.data.tfgt.machine.trait.ISPOutputRecipeLogic") + const $SizedIngredient = Java.loadClass("com.gregtechceu.gtceu.api.recipe.ingredient.SizedIngredient") + + /** + * @typedef {Object} BioreactorRecipeData + * @property {number?} circuit + * @property {Internal.GTRecipeComponents$FluidIngredientJS_[]?} fluidInputs + * @property {Internal.FluidStackJS[]?} fluidOutputs + * @property {(string | [string, Internal.Ingredient])[]?} itemInputs + * @property {string[]?} itemOutputs Ingredient outputs - first output is replaced with ISP output if defined + * @property {Internal.ItemStackProviderJS?} itemOutputProvider ItemStackProvider which provides the recipe output. + * @property {boolean?} daytime + * @property {boolean?} perTick + * @property {(string | [string, Internal.GTRecipeSchema$GTRecipeJS.dimension])?} dimension + * @property {Internal.GTRecipeSchema$GTRecipeJS.cleanroom?} cleanroom CleanroomType + * @property {string[]?} notConsumable + * + * **NOTE:** TFC Ingredients do not support item counts higher than 1. Do `Sized(TFCIngredient('item:item'), count)` instead of `TFCIngredient('[count]x item:item')` + */ + + //#region Helper funcs + + /** + * @param {"bioreactor"} type + * @param {string} id + * @param {number} duration + * @param {number} EUt + * @param {string} text + * @param {BioreactorRecipeData} data + */ + function registerBioreactorRecipe(type, id, duration, EUt, text, data) { + if (data.itemInputs === undefined) data.itemInputs = [] + if (data.itemOutputs === undefined) data.itemOutputs = [] + if (data.fluidInputs === undefined) data.fluidInputs = [] + if (data.fluidOutputs === undefined) data.fluidOutputs = [] + if (data.notConsumable === undefined) data.notConsumable = [] + let gregInputs = [], inputs = [] + let outputFirstIndex = (data.itemOutputProvider === undefined) ? 0 : 1 + data.itemInputs.forEach(item => { + if (typeof item === "string") { + gregInputs.push(item) + + const match = item.match(/^(\d+)\s*x\s*/i); + let count = 1 + if (match) { + count = parseInt(match[1]); + item = item.slice(match[0].length); + } + inputs.push($SizedIngredient.create(item, count)) + } else { + gregInputs.push(item[0]) + inputs.push(item[1]) + } + }) + + $ISPRecipeLogic.RegisterRecipeData(`${type }/${ id}`, inputs, (data.itemOutputProvider === undefined) ? null : data.itemOutputProvider.asCanonClass(), data.itemOutputs.slice(outputFirstIndex).map(i => Item.of(i))) + + let r = event.recipes.gtceu[type](id) + .duration(duration) + .EUt(EUt) + + if (data.circuit) r.circuit(data.circuit) + if (data.daytime) r.daytime(data.daytime) + if (data.perTick) r.perTick(data.perTick) + if (data.dimension) r.dimension(data.dimension) + if (data.cleanroom) r.cleanroom(data.cleanroom) + if (data.notConsumable.length > 0) r.notConsumable(data.notConsumable) + if (data.itemOutputs.length > 0) r.itemOutputs(data.itemOutputs) + if (data.itemInputs.length > 0) r.itemInputs(data.itemInputs) + if (data.fluidInputs.length > 0) r.inputFluids(data.fluidInputs); + if (data.fluidOutputs.length > 0) r.outputFluids(data.fluidOutputs); + if (text !== "") r.addDataString("action", text); + + return r; + } + + /** + * @param {string} id + * @param {number} duration + * @param {number} EUt + * @param {FoodRecipeData} data + */ + const bioreactorRecipe = (id, duration, EUt, data) => registerBioreactorRecipe("bioreactor", id, duration, EUt, "", data) + + /** + * @param {string} id + * @param {number} duration + * @param {number} EUt + * @param {FoodRecipeData} data + * @param {string} text + */ + const bioreactorRecipeText = (id, duration, EUt, text, data) => registerBioreactorRecipe("bioreactor", id, duration, EUt, text, data) + + ///////////////////////////////////////// + + //#region Recipes + // EXAMPLE + // bioreactorRecipeText('test/test', 1*10*20, GTValues.VA[GTValues.EV], 'tfg.food_recipe.brining', { + // itemInputs: ['tfc:food/red_apple'], + // fluidInputs: ['#tfc:milks 10'], + // itemOutputs: ['3x tfc:food/green_apple'], + // notConsumable: ['minecraft:bucket'], + // dimension: 'minecraft:overworld', + // perTick: true, + // daytime: true, + // cleanroom: CleanroomType.STERILE_CLEANROOM, + // fluidOutputs: ['minecraft:lava 10'], + // itemOutputProvider: TFC.isp.of('3x tfc:food/green_apple').copyFood().addTrait('firmalife:smoked') + // }) + + //#endregion + //#region Multiblock Parts + + event.recipes.gtceu.assembler('tfg:uv_led') + .itemInputs('gtceu:phosphorus_wafer', '2x gtceu:smd_resistor') + .inputFluids(Fluid.of('gtceu:polyethylene', 72)) + .itemOutputs('4x tfg:uv_led') + .duration(10*20) + .circuit(4) + .EUt(GTValues.VA[GTValues.EV]); + + event.recipes.gtceu.assembler('tfg:smd_uv_led') + .itemInputs('gtceu:phosphorus_wafer', '2x gtceu:advanced_smd_resistor') + .inputFluids(Fluid.of('gtceu:polyethylene', 72)) + .itemOutputs('16x tfg:smd_uv_led') + .duration(10*20) + .circuit(4) + .EUt(GTValues.VA[GTValues.IV]); + + event.recipes.gtceu.assembler('tfg:uv_casing') + .itemInputs('gtceu:inert_machine_casing', '16x #tfg:components/uv_leds', '#gtceu:circuits/mv') + .inputFluids(Fluid.of('gtceu:soldering_alloy', 144)) + .itemOutputs('tfg:casings/machine_casing_ultraviolet') + .duration(8*20) + .circuit(4) + .EUt(GTValues.VA[GTValues.EV]); + + event.recipes.gtceu.assembler('tfg:bioculture_casing') + .itemInputs('gtceu:plascrete', '#forge:frames/desh') + .inputFluids(Fluid.of('gtceu:hastelloy_c_276', 288)) + .itemOutputs('tfg:casings/machine_casing_bioculture') + .duration(8*20) + .circuit(4) + .EUt(GTValues.VA[GTValues.HV]); + + event.recipes.gtceu.assembler('tfg:bioculture_glass') + .itemInputs('#forge:frames/desh', ChemicalHelper.get(TagPrefix.dust, GTMaterials.Iron, 1), ChemicalHelper.get(TagPrefix.dust, GTMaterials.Bismuth, 1)) + .inputFluids(Fluid.of('gtceu:glass', 144)) + .itemOutputs('tfg:casings/machine_casing_bioculture_glass') + .duration(8*20) + .circuit(4) + .EUt(GTValues.VA[GTValues.HV]); + + event.shaped('tfg:bioreactor', [ + 'CBC', + 'EAF', + 'CDC' + ], { + A: 'gtceu:ev_machine_hull', + B: '#tfg:components/uv_leds', + C: '#gtceu:circuits/ev', + D: 'gtceu:aluminium_single_cable', + E: 'gtceu:ev_electric_pump', + F: 'gtceu:ev_electric_motor', + }).id('tfg:shaped/bioreactor'); + + event.shaped('tfg:casings/bioculture_rotor_primary', [ + 'CBC', + 'DBD', + 'CAC' + ], { + A: 'gtceu:ev_rotor_holder', + B: 'gtceu:tungsten_steel_rotor', + C: 'gtceu:inert_machine_casing', + D: ChemicalHelper.get(TagPrefix.ring, GTMaterials.StyreneButadieneRubber, 1) + }).id('tfg:shaped/bioculture_rotor_primary'); + + event.shapeless('tfg:casings/bioculture_rotor_secondary', [ + 'tfg:casings/bioculture_rotor_primary' + ]).id('tfg:shapeless/bioculture_rotor_primary_to_secondary') + + event.shapeless('tfg:casings/bioculture_rotor_primary', [ + 'tfg:casings/bioculture_rotor_secondary' + ]).id('tfg:shapeless/bioculture_rotor_secondary_to_primary') + //#endregion +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.collapse.js b/kubejs/server_scripts/tfg/recipes.collapse.js index 570a5055c..4d2de6a9c 100644 --- a/kubejs/server_scripts/tfg/recipes.collapse.js +++ b/kubejs/server_scripts/tfg/recipes.collapse.js @@ -66,5 +66,12 @@ function registerTFGCollapseRecipes(event) { event.recipes.tfc.landslide('tfg:grass/mars_dirt', 'tfg:grass/amber_mycelium') event.recipes.tfc.landslide('tfg:grass/mars_dirt', 'tfg:grass/rusticus_mycelium') event.recipes.tfc.landslide('tfg:grass/mars_dirt', 'tfg:grass/sangnum_mycelium') + event.recipes.tfc.landslide('tfg:grass/mars_clay_dirt', 'tfg:grass/mars_clay_dirt') + event.recipes.tfc.landslide('tfg:grass/mars_clay_dirt', 'tfg:grass/amber_clay_mycelium') + event.recipes.tfc.landslide('tfg:grass/mars_clay_dirt', 'tfg:grass/rusticus_clay_mycelium') + event.recipes.tfc.landslide('tfg:grass/mars_clay_dirt', 'tfg:grass/sangnum_clay_mycelium') + event.recipes.tfc.landslide('tfc:red_kaolin_clay', 'tfg:grass/amber_kaolin_mycelium') + event.recipes.tfc.landslide('tfc:red_kaolin_clay', 'tfg:grass/rusticus_kaolin_mycelium') + event.recipes.tfc.landslide('tfc:red_kaolin_clay', 'tfg:grass/sangnum_kaolin_mycelium') // #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 7d8148cd1..ab85b700f 100644 --- a/kubejs/server_scripts/tfg/recipes.food.js +++ b/kubejs/server_scripts/tfg/recipes.food.js @@ -18,6 +18,11 @@ function registerTFGFoodRecipes(event) { * @property {(string | [string, Internal.Ingredient])[]?} itemInputs * @property {string[]?} itemOutputs Ingredient outputs - first output is replaced with ISP output if defined * @property {Internal.ItemStackProviderJS?} itemOutputProvider ItemStackProvider which provides the recipe output. + * @property {boolean?} daytime + * @property {boolean?} perTick + * @property {(string | [string, Internal.GTRecipeSchema$GTRecipeJS.dimension])?} dimension + * @property {Internal.GTRecipeSchema$GTRecipeJS.cleanroom?} cleanroom CleanroomType + * @property {string[]?} notConsumable * * **NOTE:** TFC Ingredients do not support item counts higher than 1. Do `Sized(TFCIngredient('item:item'), count)` instead of `TFCIngredient('[count]x item:item')` */ @@ -37,6 +42,7 @@ function registerTFGFoodRecipes(event) { if (data.itemOutputs === undefined) data.itemOutputs = [] if (data.fluidInputs === undefined) data.fluidInputs = [] if (data.fluidOutputs === undefined) data.fluidOutputs = [] + if (data.notConsumable === undefined) data.notConsumable = [] let gregInputs = [], inputs = [] let outputFirstIndex = (data.itemOutputProvider === undefined) ? 0 : 1 data.itemInputs.forEach(item => { @@ -63,6 +69,11 @@ function registerTFGFoodRecipes(event) { .EUt(EUt) if (data.circuit) r.circuit(data.circuit) + if (data.daytime) r.daytime(data.daytime) + if (data.perTick) r.perTick(data.perTick) + if (data.dimension) r.dimension(data.dimension) + if (data.cleanroom) r.cleanroom(data.cleanroom) + if (data.notConsumable.length > 0) r.notConsumable(data.notConsumable) if (data.itemOutputs.length > 0) r.itemOutputs(data.itemOutputs) if (data.itemInputs.length > 0) r.itemInputs(data.itemInputs) if (data.fluidInputs.length > 0) r.inputFluids(data.fluidInputs); diff --git a/kubejs/server_scripts/tfg/recipes.js b/kubejs/server_scripts/tfg/recipes.js index 17bde7c41..da644a3b6 100644 --- a/kubejs/server_scripts/tfg/recipes.js +++ b/kubejs/server_scripts/tfg/recipes.js @@ -21,7 +21,8 @@ const registerTFGRecipes = (event) => { registerTFGStoneDustRecipes(event) registerTFGRecyclingRecipes(event) registerTFGNuclearRecipes(event) - registerTFGMarsRecipes(event) - registerTFGMoonOres(event) + registerTFGBioreactorRecipes(event) + registerTFGSpaceOres(event) + -} \ No newline at end of file +} diff --git a/kubejs/server_scripts/tfg/recipes.mars.js b/kubejs/server_scripts/tfg/recipes.mars.js deleted file mode 100644 index 1d1cbebd9..000000000 --- a/kubejs/server_scripts/tfg/recipes.mars.js +++ /dev/null @@ -1,72 +0,0 @@ - function registerTFGMarsRecipes(event) { - -const $ChanceLogic = Java.loadClass('com.gregtechceu.gtceu.api.recipe.chance.logic.ChanceLogic') - - // Ostrum Harvester - - event.recipes.gtceu.ostrum_harvester(`ostrum_harvesting`) - .perTick(true) - .inputFluids('gtceu:drilling_fluid 4') - .perTick(false) - .dimension('ad_astra:mars') - .itemOutputsRanged('gtceu:ostrum_dust',1,5) - .duration(20*5) - .EUt(GTValues.VA[GTValues.LV]); - - // Large Centrifuge Ostrum dust - SCRAP FROM MARS GOING TO VENUS - - /* - - event.recipes.gtceu.centrifuge(`ostrum_harvesting`) - .inputFluids('gtceu:bromine 100') - .itemInputs('#forge:dusts/ostrum') - .dimension('ad_astra:mars') - .chancedFluidOutputLogic($ChanceLogic.XOR) - .chancedFluidOutput('gtceu:lightweight_ostrum_vapor',6000,0) - .chancedFluidOutput('gtceu:ostrum_vapor',3000,0) - .chancedFluidOutput('gtceu:dense_ostrum_vapor',1000,0) - .duration(20*58) - .EUt(GTValues.VA[GTValues.EV], 4); - -event.recipes.gtceu.extraterrestrial_ore_fabricator('lightweight_ostrum') - .inputFluids('gtceu:lightweight_ostrum_vapor 1000') - .inputFluids(Fluid.of('gtceu:radon', 1000)) - .itemOutputsRanged('#forge:crushed_ores/tantalite',1,10) - .itemOutputsRanged('#forge:crushed_ores/bauxite',1,10) - //.itemOutputsRanged('#forge:crushed_ores/pyrope',1,10) - //.itemOutputsRanged('#forge:crushed_ores/rose_quartz',1,10) - .itemOutputsRanged('#forge:crushed_ores/thorium',1,10) - //.itemOutputsRanged(Item.of('gtceu:crushed_ruby_ore'),1,10) - .dimension('ad_astra:venus') - .duration(20*5) - .EUt(GTValues.VA[GTValues.IV]); - -event.recipes.gtceu.extraterrestrial_ore_fabricator('ostrum') - .inputFluids('gtceu:ostrum_vapor 1000') - .inputFluids(Fluid.of('gtceu:residual_radioactive_concoction', 1000)) - .itemOutputsRanged(Item.of('gtceu:crushed_chromite_ore'),1,10) - //.itemOutputsRanged(Item.of('gtceu:crushed_malachite_ore'),1,10) - .itemOutputsRanged(Item.of('gtceu:crushed_quartzite_ore'),1,10) - //.itemOutputsRanged(Item.of('gtceu:crushed_gypsum_ore'),1,10) - .itemOutputsRanged(Item.of('gtceu:crushed_electrotine_ore'),1,10) - //.itemOutputsRanged(Item.of('gtceu:crushed_barite_ore'),1,10) - .dimension('ad_astra:venus') - .duration(20*5) - .EUt(GTValues.VA[GTValues.IV]); - -event.recipes.gtceu.extraterrestrial_ore_fabricator('dense_ostrum') - .inputFluids('gtceu:dense_ostrum_vapor 1000') - .inputFluids(Fluid.of('gtceu:tritiated_water', 500)) - .itemOutputsRanged('#forge:crushed_ores/uraninite',1,10) - .itemOutputsRanged(Item.of('gtceu:crushed_certus_quartz_ore'),1,10) - .itemOutputsRanged(Item.of('gtceu:crushed_beryllium_ore'),1,10) - //.itemOutputsRanged(Item.of('gtceu:crushed_bastnasite_ore'),1,10) - //.itemOutputsRanged(Item.of('gtceu:crushed_spessartine_ore'),1,10) - //.itemOutputsRanged(Item.of('gtceu:crushed_silver_ore'),1,10) - .dimension('ad_astra:venus') - .duration(20*5) - .EUt(GTValues.VA[GTValues.IV]); - - */ - - } \ 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 17ea21a87..d5f1c2386 100644 --- a/kubejs/server_scripts/tfg/recipes.miscellaneous.js +++ b/kubejs/server_scripts/tfg/recipes.miscellaneous.js @@ -1005,6 +1005,14 @@ function registerTFGMiscellaneousRecipes(event) { .duration(80) .blastFurnaceTemp(3400) .EUt(GTValues.VA[GTValues.EV]) + event.recipes.gtceu.electric_blast_furnace('smelt_wraptor_wool') + .itemInputs('tfg:wraptor_wool') + .chancedOutput('gtceu:ash_dust', 5000, 0) + .outputFluids(Fluid.of('tfg:molten_aes', 100)) + .circuit(8) + .duration(60) + .blastFurnaceTemp(3400) + .EUt(GTValues.VA[GTValues.EV]) //endregion @@ -1143,6 +1151,7 @@ function registerTFGMiscellaneousRecipes(event) { .inputFluids(Fluid.of('gtceu:carbon_monoxide', 1000), Fluid.of('gtceu:oxygen', 500), Fluid.of('gtceu:methanol', 2000)) .outputFluids(Fluid.of('tfg:dimethyl_carbonate', 1000), Fluid.of('minecraft:water', 1000)) .duration(120) + .circuit(2) .EUt(GTValues.VA[GTValues.HV]) event.recipes.gtceu.chemical_reactor('tfg:methyl_phenylcarbamate_synthesis') .inputFluids(Fluid.of('tfg:aniline', 1000), Fluid.of('tfg:dimethyl_carbonate', 1000)) @@ -1161,12 +1170,14 @@ function registerTFGMiscellaneousRecipes(event) { .duration(80) .EUt(GTValues.VA[GTValues.IV]) event.recipes.gtceu.mixer('tfg:aes_polyurethane_electric_only') - .itemInputs('tfg:aes_compressed_wool', //'2x tfg:sniffer_wool' REVERT UNTIL MARS, + .itemInputs('tfg:aes_compressed_wool', //'2x #tfg:mineral_rich_wool' REVERT UNTIL MARS, '#forge:dusts/methylene_diphenyl_diisocyanate') .inputFluids(Fluid.of('gtceu:diethylenetriamine', 250), Fluid.of('gtceu:acetone', 1000)) .itemOutputs('tfg:aes_polyurethane') .duration(80) .EUt(GTValues.VA[GTValues.IV]) + + addCircuitToRecipe(event, 'gtceu:chemical_reactor/acetic_acid_from_methanol', 1) //endregion //Aerogel @@ -1338,7 +1349,6 @@ function registerTFGMiscellaneousRecipes(event) { event.replaceInput({ id: "minecraft:jukebox"}, 'minecraft:diamond', 'tfg:etching_diamond_tip'); - //Large Nest event.shaped('tfg:large_nest_box', [ @@ -1360,6 +1370,60 @@ function registerTFGMiscellaneousRecipes(event) { B: 'beneath:warped_straw' }).id('tfg:shaped_large_nest_warped') - //#endregion + + //#region flax stuff + + event.recipes.tfc.scraping( + 'tfg:flax_waste', + 'tfg:flax_product', + 'tfg:item/flax_waste', + 'tfg:item/flax_product', + '2x tfg:flax_line' + ).id('tfg:scraping/flax_line') + + event.recipes.tfc.scraping( + 'tfc:groundcover/humus', + 'tfg:flax_waste', + 'tfc:item/groundcover/humus', + 'tfg:item/flax_waste', + 'tfg:flax_tow' + ).id('tfg:scraping/flax_tow') + + event.recipes.tfc.damage_inputs_shapeless_crafting( + event.shapeless('4x tfg:linen_thread', [ + 'tfg:flax_line', + 'tfc:spindle' + ]).id('tfg:shapeless/linen_thread') + ) + + //#region looming + event.recipes.tfc.loom( + '1x tfg:linen_cloth', + '16x tfg:linen_thread', + 8, + 'tfc:block/burlap' + ) + + event.recipes.tfc.loom( + '1x tfc:burlap_cloth', + '16x tfg:flax_tow', + 12, + 'tfc:block/burlap' + ) + + event.recipes.gtceu.assembler('tfg:assembler/linen_cloth') + .itemInputs('16x tfg:linen_thread') + .circuit(10) + .itemOutputs('tfg:linen_cloth') + .duration(100) + .EUt(4) + + event.recipes.gtceu.assembler('tfg:assembler/flax_burlap') + .itemInputs('16x tfg:flax_tow') + .circuit(10) + .itemOutputs('tfc:burlap_cloth') + .duration(100) + .EUt(4) + } diff --git a/kubejs/server_scripts/tfg/recipes.moon_ores.js b/kubejs/server_scripts/tfg/recipes.moon_ores.js deleted file mode 100644 index a110ed7c6..000000000 --- a/kubejs/server_scripts/tfg/recipes.moon_ores.js +++ /dev/null @@ -1,131 +0,0 @@ -// priority: 0 - -function registerTFGMoonOres(event) { - -//#region Moon Harvester - - event.recipes.gtceu.moon_dust_harvester('tfg:lunar_assurine_harvester') - .biome('tfg:moon/lunar_asurine_dense') - .itemOutputsRanged('#forge:dusts/certus_regolith',1,5) - .duration(20*80) - .EUt(GTValues.VA[GTValues.LV]) - .circuit(1) - - event.recipes.gtceu.moon_dust_harvester('tfg:lunar_chorus_dense') - .biome('tfg:moon/lunar_chorus_dense') - .itemOutputsRanged('#forge:dusts/goethe_regolith',1,5) - .duration(20*80) - .EUt(GTValues.VA[GTValues.LV]) - .circuit(2) - - event.recipes.gtceu.moon_dust_harvester('tfg:lunar_corals_dense') - .biome('tfg:moon/lunar_corals_dense') - .itemOutputsRanged('#forge:dusts/bright_regolith',1,5) - .duration(20*80) - .EUt(GTValues.VA[GTValues.LV]) - .circuit(3) - - event.recipes.gtceu.moon_dust_harvester('tfg:lunar_lights_dense') - .biome('tfg:moon/lunar_lights_dense') - .itemOutputsRanged('#forge:dusts/cassiterite_regolith',1,5) - .duration(20*80) - .EUt(GTValues.VA[GTValues.LV]) - .circuit(4) - - //#endregion - - //#region Regolith Vapor Processing - - event.recipes.gtceu.mixer('tfg:regolith_slurry_suspension') - .itemInputs('ad_astra:moon_sand', 'tfg:dry_ice') - .itemOutputs('#forge:dusts/regolith_mush') - .dimension('ad_astra:moon') - .duration(20*60) - .EUt(GTValues.VA[GTValues.LV]) - - event.recipes.gtceu.chemical_bath('tfg:regolith_vapor') - .itemInputs('#forge:dusts/regolith_mush') - .inputFluids('gtceu:nitrogen 1000') - .itemOutputs('#forge:dusts/silicon_dioxide') - .outputFluids('gtceu:regolith_vapor 1000') - .dimension('ad_astra:moon') - .duration(20*28) - .EUt(GTValues.VHA[GTValues.LV]) - - //#endregion - - //#region Making Dusty Ores - -const $ChanceLogic = Java.loadClass('com.gregtechceu.gtceu.api.recipe.chance.logic.ChanceLogic') - - event.recipes.gtceu.chemical_reactor('tfg:dusty_certus_reactor') - .itemInputs('#forge:dusts/certus_regolith') - .inputFluids('gtceu:regolith_vapor 100') - .itemOutputs('gtceu:dusty_raw_certus_quartz') - .dimension('ad_astra:moon') - .duration(20*68) - .EUt(GTValues.VHA[GTValues.ULV]) - - event.recipes.gtceu.chemical_reactor('tfg:dusty_goethite_reactor') - .itemInputs('#forge:dusts/goethe_regolith') - .inputFluids('gtceu:regolith_vapor 100') - .itemOutputs('gtceu:dusty_raw_goethite') - .dimension('ad_astra:moon') - .duration(20*68) - .EUt(GTValues.VHA[GTValues.ULV]) - - event.recipes.gtceu.chemical_reactor('tfg:dusty_shiny_reactor') - .itemInputs('#forge:dusts/bright_regolith') - .inputFluids('gtceu:regolith_vapor 100') - .chancedItemOutputLogic($ChanceLogic.XOR) - .chancedOutput('gtceu:dusty_raw_diamond',2000,0) - .chancedOutput('gtceu:dusty_raw_gold',8000,0) - .dimension('ad_astra:moon') - .duration(20*68) - .EUt(GTValues.VHA[GTValues.ULV]) - - event.recipes.gtceu.chemical_reactor('tfg:dusty_cassiterite_reactor') - .itemInputs('#forge:dusts/cassiterite_regolith') - .inputFluids('gtceu:regolith_vapor 100') - .itemOutputs('gtceu:dusty_raw_cassiterite') - .dimension('ad_astra:moon') - .duration(20*68) - .EUt(GTValues.VHA[GTValues.ULV]) - - //#endregion - - //#region Dusty to Dust through centrifuge - - event.recipes.gtceu.centrifuge('tfg:dusty_to_dust_certus_quartz') - .itemInputs('gtceu:dusty_raw_certus_quartz') - .itemOutputs('ae2:certus_quartz_dust') - .duration(20*45) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.centrifuge('tfg:dusty_to_dust_goethite') - .itemInputs('gtceu:dusty_raw_goethite') - .chancedItemOutputLogic($ChanceLogic.XOR) - .chancedOutput('gtceu:iron_dust',5000,0) - .chancedOutput('gtceu:copper_dust',5000,0) - .duration(20*45) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.centrifuge('tfg:dusty_to_dust_diamond') - .itemInputs('gtceu:dusty_raw_diamond') - .itemOutputs('gtceu:diamond_dust') - .duration(20*45) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.centrifuge('tfg:dusty_to_dust_gold') - .itemInputs('gtceu:dusty_raw_gold') - .itemOutputs('gtceu:gold_dust') - .duration(20*45) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.centrifuge('tfg:dusty_to_dust_tin') - .itemInputs('gtceu:dusty_raw_cassiterite') - .itemOutputs('gtceu:tin_dust') - .duration(20*45) - .EUt(GTValues.VA[GTValues.MV]) - -} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.nuclear.js b/kubejs/server_scripts/tfg/recipes.nuclear.js index 376743188..4e106853c 100644 --- a/kubejs/server_scripts/tfg/recipes.nuclear.js +++ b/kubejs/server_scripts/tfg/recipes.nuclear.js @@ -49,14 +49,14 @@ function registerTFGNuclearRecipes(event) { event.recipes.gtceu.centrifuge('mars_heavy_water') .inputFluids(Fluid.of('tfg:heavy_ammoniacal_water', 1000)) - .outputFluids(Fluid.of('gtceu:heavy_water', 500)) + .outputFluids(Fluid.of('tfg:heavy_water', 500)) .itemOutputs('#forge:dusts/ammonium_chloride', '2x #forge:small_dusts/ammonium_chloride') .duration(20*9) .EUt(GTValues.VA[GTValues.LV]) event.recipes.gtceu.centrifuge('mars_semiheavy_water') .inputFluids(Fluid.of('tfg:semiheavy_ammoniacal_water', 1000)) - .outputFluids(Fluid.of('minecraft:water', 500)) + .outputFluids(Fluid.of('tfg:semiheavy_water', 500)) .itemOutputs('2x #forge:tiny_dusts/ammonium_chloride') .duration(20*9) .EUt(GTValues.VA[GTValues.MV]) @@ -177,7 +177,7 @@ function registerTFGNuclearRecipes(event) { // Recipe for Uranium Reactor event.recipes.gtceu.fission_reactor('uranium_radioactive') .itemInputs('#forge:bolts/uranium_pellet') - .inputFluids(Fluid.of('gtceu:heavy_water', 750)) + .inputFluids(Fluid.of('tfg:heavy_water', 750)) .outputFluids(Fluid.of('gtceu:radioactive_steam', 750)) .outputFluids(Fluid.of('gtceu:radioactive_waste', 50)) .duration(20*100) @@ -186,7 +186,7 @@ function registerTFGNuclearRecipes(event) { // Recipe for Plutonium Reactor event.recipes.gtceu.fission_reactor('plutonium_irradiated') .itemInputs('#forge:bolts/plutonium_pellet') - .inputFluids(Fluid.of('gtceu:heavy_water', 2000)) + .inputFluids(Fluid.of('tfg:heavy_water', 2000)) .outputFluids(Fluid.of('gtceu:irradiated_steam', 2000)) .outputFluids(Fluid.of('gtceu:tritiated_water', 50)) .duration(20*100) diff --git a/kubejs/server_scripts/tfg/recipes.rocks.js b/kubejs/server_scripts/tfg/recipes.rocks.js index 519d5f9e4..b850e8dad 100644 --- a/kubejs/server_scripts/tfg/recipes.rocks.js +++ b/kubejs/server_scripts/tfg/recipes.rocks.js @@ -159,30 +159,30 @@ function registerTFGRockRecipes(event) { const HAMMERING = [ { raw: 'minecraft:deepslate', hammered: 'minecraft:cobbled_deepslate', duration: 10, eu: 16 }, - { raw: 'minecraft:cobbled_deepslate', hammered: 'tfc:sand/black', duration: 200, eu: 2 }, - { raw: 'minecraft:blackstone', hammered: 'tfc:sand/black', duration: 200, eu: 2 }, - { raw: 'beneath:crackrack', hammered: 'tfc:sand/pink', duration: 200, eu: 2 }, - { raw: 'minecraft:dripstone_block', hammered: 'tfc:sand/brown', duration: 200, eu: 2 }, + { raw: 'minecraft:cobbled_deepslate', hammered: 'tfc:sand/black', duration: 20*3.5, eu: 2 }, + { raw: 'minecraft:blackstone', hammered: 'tfc:sand/black', duration: 20*3.5, eu: 2 }, + { raw: 'beneath:crackrack', hammered: 'tfc:sand/pink', duration: 20*3.5, eu: 2 }, + { raw: 'minecraft:dripstone_block', hammered: 'tfc:sand/brown', duration: 20*3.5, eu: 2 }, { raw: 'ad_astra:moon_stone', hammered: 'ad_astra:moon_cobblestone', duration: 10, eu: 16 }, { raw: 'tfg:rock/hardened_moon_stone', hammered: 'ad_astra:moon_cobblestone', duration: 10, eu: 16 }, - { raw: 'ad_astra:moon_cobblestone', hammered: 'ad_astra:moon_sand', duration: 200, eu: 2 }, - { raw: 'ad_astra:moon_deepslate', hammered: 'ad_astra:moon_sand', duration: 200, eu: 2 }, - { raw: 'tfg:rock/hardened_moon_deepslate', hammered: 'ad_astra:moon_sand', duration: 200, eu: 2 }, + { raw: 'ad_astra:moon_cobblestone', hammered: 'ad_astra:moon_sand', duration: 20*3.5, eu: 2 }, + { raw: 'ad_astra:moon_deepslate', hammered: 'ad_astra:moon_sand', duration: 20*3.5, eu: 2 }, + { raw: 'tfg:rock/hardened_moon_deepslate', hammered: 'ad_astra:moon_sand', duration: 20*3.5, eu: 2 }, { raw: 'ad_astra:mars_stone', hammered: 'ad_astra:mars_cobblestone', duration: 10, eu: 16 }, { raw: 'tfg:rock/hardened_mars_stone', hammered: 'ad_astra:mars_cobblestone', duration: 10, eu: 16 }, - { raw: 'ad_astra:mars_cobblestone', hammered: 'ad_astra:mars_sand', duration: 200, eu: 2 }, + { raw: 'ad_astra:mars_cobblestone', hammered: 'ad_astra:mars_sand', duration: 20*3.5, eu: 2 }, { raw: 'ad_astra:venus_stone', hammered: 'ad_astra:venus_cobblestone', duration: 10, eu: 16 }, { raw: 'tfg:rock/hardened_venus_stone', hammered: 'ad_astra:venus_cobblestone', duration: 10, eu: 16 }, - { raw: 'ad_astra:venus_cobblestone', hammered: 'ad_astra:venus_sand', duration: 200, eu: 2 }, + { raw: 'ad_astra:venus_cobblestone', hammered: 'ad_astra:venus_sand', duration: 20*3.5, eu: 2 }, { raw: 'ad_astra:mercury_stone', hammered: 'ad_astra:mercury_cobblestone', duration: 10, eu: 16 }, { raw: 'tfg:rock/hardened_mercury_stone', hammered: 'ad_astra:mercury_cobblestone', duration: 10, eu: 16 }, - { raw: 'ad_astra:mercury_cobblestone', hammered: 'tfc:sand/red', duration: 200, eu: 2 }, + { raw: 'ad_astra:mercury_cobblestone', hammered: 'tfc:sand/red', duration: 20*3.5, eu: 2 }, { raw: 'ad_astra:glacio_stone', hammered: 'ad_astra:glacio_cobblestone', duration: 10, eu: 16 }, { raw: 'tfg:rock/hardened_glacio_stone', hammered: 'ad_astra:glacio_cobblestone', duration: 10, eu: 16 }, - { raw: 'ad_astra:glacio_cobblestone', hammered: 'tfc:sand/white', duration: 200, eu: 2 }, + { raw: 'ad_astra:glacio_cobblestone', hammered: 'tfc:sand/white', duration: 20*3.5, eu: 2 }, { raw: 'ad_astra:conglomerate', hammered: 'tfc:rock/gravel/conglomerate', duration: 10, eu: 16 }, - { raw: 'ad_astra:permafrost', hammered: '4x gtceu:ice_dust', duration: 200, eu: 2 } + { raw: 'ad_astra:permafrost', hammered: '4x gtceu:ice_dust', duration: 20, eu: 2 } ] HAMMERING.forEach(x => { diff --git a/kubejs/server_scripts/tfg/recipes.space.js b/kubejs/server_scripts/tfg/recipes.space.js index 186d1ffb8..0216dee8b 100644 --- a/kubejs/server_scripts/tfg/recipes.space.js +++ b/kubejs/server_scripts/tfg/recipes.space.js @@ -105,6 +105,13 @@ function registerTFGSpaceRecipes(event) { .addDataString("fluidA", "tfc:spring_water") .outputFluids(Fluid.of("tfc:spring_water", 1000)) + event.recipes.gtceu.aqueous_accumulator('more_water') + .circuit(aaCircuit++) + .duration(10) + .EUt(GTValues.VHA[GTValues.HV]) + .addDataString("fluidA", "minecraft:water") + .outputFluids(Fluid.of("minecraft:water", 20000)) + // Plants - Can't use the default builder here because fertiliser is much harder to get on the moon, // and we're using helium-3 as the fertiliser diff --git a/kubejs/server_scripts/tfg/recipes.space_ores.js b/kubejs/server_scripts/tfg/recipes.space_ores.js new file mode 100644 index 000000000..7f50e7ab7 --- /dev/null +++ b/kubejs/server_scripts/tfg/recipes.space_ores.js @@ -0,0 +1,203 @@ +// priority: 0 + +function registerTFGSpaceOres(event) { + + //#region Moon Harvester + + event.recipes.gtceu.moon_dust_harvester('tfg:lunar_assurine_harvester') + .biome('tfg:moon/lunar_asurine_dense') + .itemOutputsRanged('#forge:dusts/certus_regolith', 1, 5) + .duration(20 * 80) + .EUt(GTValues.VA[GTValues.LV]) + .circuit(1) + + event.recipes.gtceu.moon_dust_harvester('tfg:lunar_chorus_dense') + .biome('tfg:moon/lunar_chorus_dense') + .itemOutputsRanged('#forge:dusts/goethe_regolith', 1, 5) + .duration(20 * 80) + .EUt(GTValues.VA[GTValues.LV]) + .circuit(2) + + event.recipes.gtceu.moon_dust_harvester('tfg:lunar_corals_dense') + .biome('tfg:moon/lunar_corals_dense') + .itemOutputsRanged('#forge:dusts/bright_regolith', 1, 5) + .duration(20 * 80) + .EUt(GTValues.VA[GTValues.LV]) + .circuit(3) + + event.recipes.gtceu.moon_dust_harvester('tfg:lunar_lights_dense') + .biome('tfg:moon/lunar_lights_dense') + .itemOutputsRanged('#forge:dusts/cassiterite_regolith', 1, 5) + .duration(20 * 80) + .EUt(GTValues.VA[GTValues.LV]) + .circuit(4) + + //#endregion + + //#region Regolith Vapor Processing + + event.recipes.gtceu.mixer('tfg:regolith_slurry_suspension') + .itemInputs('ad_astra:moon_sand', 'tfg:dry_ice') + .itemOutputs('#forge:dusts/regolith_mush') + .dimension('ad_astra:moon') + .duration(20 * 60) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.chemical_bath('tfg:regolith_vapor') + .itemInputs('#forge:dusts/regolith_mush') + .inputFluids('gtceu:nitrogen 1000') + .itemOutputs('#forge:dusts/silicon_dioxide') + .outputFluids('gtceu:regolith_vapor 1000') + .dimension('ad_astra:moon') + .duration(20 * 28) + .EUt(GTValues.VHA[GTValues.LV]) + + //#endregion + + //#region Making Dusty Ores + + const $ChanceLogic = Java.loadClass('com.gregtechceu.gtceu.api.recipe.chance.logic.ChanceLogic') + + event.recipes.gtceu.chemical_reactor('tfg:dusty_certus_reactor') + .itemInputs('#forge:dusts/certus_regolith') + .inputFluids('gtceu:regolith_vapor 100') + .itemOutputs('gtceu:dusty_raw_certus_quartz') + .dimension('ad_astra:moon') + .duration(20 * 68) + .EUt(GTValues.VHA[GTValues.ULV]) + + event.recipes.gtceu.chemical_reactor('tfg:dusty_goethite_reactor') + .itemInputs('#forge:dusts/goethe_regolith') + .inputFluids('gtceu:regolith_vapor 100') + .itemOutputs('gtceu:dusty_raw_goethite') + .dimension('ad_astra:moon') + .duration(20 * 68) + .EUt(GTValues.VHA[GTValues.ULV]) + + event.recipes.gtceu.chemical_reactor('tfg:dusty_shiny_reactor') + .itemInputs('#forge:dusts/bright_regolith') + .inputFluids('gtceu:regolith_vapor 100') + .chancedItemOutputLogic($ChanceLogic.XOR) + .chancedOutput('gtceu:dusty_raw_diamond', 2000, 0) + .chancedOutput('gtceu:dusty_raw_gold', 8000, 0) + .dimension('ad_astra:moon') + .duration(20 * 68) + .EUt(GTValues.VHA[GTValues.ULV]) + + event.recipes.gtceu.chemical_reactor('tfg:dusty_cassiterite_reactor') + .itemInputs('#forge:dusts/cassiterite_regolith') + .inputFluids('gtceu:regolith_vapor 100') + .itemOutputs('gtceu:dusty_raw_cassiterite') + .dimension('ad_astra:moon') + .duration(20 * 68) + .EUt(GTValues.VHA[GTValues.ULV]) + + //#endregion + + //#region Basic dusty ore centrifuging + + // These have special recipes + const DUSTY_ORE_EXCEPTIONS = [ + GTMaterials.Goethite, + GTMaterials.Cassiterite, + GTMaterials.Bauxite + ] + + // Otherwise everything else just centrifuges into its dust version + forEachMaterial(material => { + if (DUSTY_ORE_EXCEPTIONS.indexOf(material) >= 0) + return; + + const dustyOre = ChemicalHelper.get(TFGTagPrefix.dustyRawOre, material, 1) + const dust = ChemicalHelper.get(TagPrefix.dust, material, 1) + + if (dustyOre !== null && dust !== null) { + event.recipes.gtceu.centrifuge(`tfg:dusty_to_dust_${material.getName()}`) + .itemInputs(dustyOre) + .itemOutputs(dust) + .duration(20 * 45) + .EUt(GTValues.VA[GTValues.MV]) + } + }) + + event.recipes.gtceu.centrifuge('tfg:dusty_to_dust_goethite') + .itemInputs('#forge:dusty_raw_materials/goethite') + .chancedItemOutputLogic($ChanceLogic.XOR) + .chancedOutput('#forge:dusts/iron', 5000, 0) + .chancedOutput('#forge:dusts/copper', 5000, 0) + .duration(20 * 45) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.centrifuge('tfg:dusty_to_dust_bauxite') + .itemInputs('#forge:dusty_raw_materials/bauxite') + .itemOutputs('#forge:dusts/aluminium') + .duration(20 * 45) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.centrifuge('tfg:dusty_to_dust_tin') + .itemInputs('#forge:dusty_raw_materials/cassiterite') + .itemOutputs('#forge:dusts/tin') + .duration(20 * 45) + .EUt(GTValues.VA[GTValues.MV]) + + // Ostrum Harvester + + event.recipes.gtceu.ostrum_harvester(`tfg:ostrum_harvesting`) + .perTick(true) + .inputFluids('gtceu:drilling_fluid 4') + .perTick(false) + .dimension('ad_astra:mars') + .itemOutputsRanged('gtceu:ostrum_dust', 1, 5) + .duration(20 * 30) + .duration(20 * 30) + .EUt(GTValues.VA[GTValues.LV]); + + + // Ostrum Linear Accelerator Recipes + + event.recipes.gtceu.ostrum_linear_accelerator('tfg:ostrum_transformation') + .inputFluids('gtceu:residual_radioactive_concoction 1000') + .itemInputs('32x #forge:dusts/ostrum') + .chancedFluidOutputLogic($ChanceLogic.XOR) + .chancedFluidOutput('gtceu:lightweight_ostrum_vapor', 6000, 0) + .chancedFluidOutput('gtceu:ostrum_vapor', 3000, 0) + .chancedFluidOutput('gtceu:dense_ostrum_vapor', 1000, 0) + .dimension('ad_astra:mars') + .duration(20 * 5) + .EUt(GTValues.VA[GTValues.EV]); + + event.recipes.gtceu.ostrum_linear_accelerator('tfg:lightweight_ostrum') + .inputFluids('gtceu:lightweight_ostrum_vapor 1000') + .inputFluids('gtceu:residual_radioactive_concoction 100') + .inputFluids(Fluid.of('tfg:heavy_water', 1000)) + .itemOutputsRanged('#forge:dusty_raw_materials/pitchblende', 1, 10) + .itemOutputsRanged('#forge:dusty_raw_materials/silver', 1, 10) + .itemOutputsRanged('#forge:dusty_raw_materials/tricalcium_phosphate', 1, 10) + .dimension('ad_astra:mars') + .duration(20 * 5) + .EUt(GTValues.VA[GTValues.IV]); + + event.recipes.gtceu.ostrum_linear_accelerator('tfg:ostrum') + .inputFluids('gtceu:ostrum_vapor 1000') + .inputFluids('gtceu:residual_radioactive_concoction 100') + .inputFluids(Fluid.of('gtceu:radon', 100)) + .itemOutputsRanged(Item.of('#forge:dusty_raw_materials/bauxite'), 1, 10) + .itemOutputsRanged(Item.of('#forge:dusty_raw_materials/lead'), 1, 10) + .itemOutputsRanged(Item.of('#forge:dusty_raw_materials/beryllium'), 1, 10) + .dimension('ad_astra:mars') + .duration(20 * 5) + .EUt(GTValues.VA[GTValues.IV]); + + event.recipes.gtceu.ostrum_linear_accelerator('tfg:dense_ostrum') + .inputFluids('gtceu:dense_ostrum_vapor 1000') + .inputFluids('gtceu:residual_radioactive_concoction 100') + .inputFluids(Fluid.of('gtceu:tritiated_water', 500)) + .itemOutputsRanged(Item.of('#forge:dusty_raw_materials/thorium'), 1, 10) + .itemOutputsRanged(Item.of('#forge:dusty_raw_materials/uraninite'), 1, 10) + .dimension('ad_astra:mars') + .duration(20 * 5) + .EUt(GTValues.VA[GTValues.IV]); + + //#endregion + +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.stone_dusts.js b/kubejs/server_scripts/tfg/recipes.stone_dusts.js index d63e44a26..32cd0c6b2 100644 --- a/kubejs/server_scripts/tfg/recipes.stone_dusts.js +++ b/kubejs/server_scripts/tfg/recipes.stone_dusts.js @@ -13,8 +13,8 @@ function registerTFGStoneDustRecipes(event) { .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, GTMaterials.Diorite, 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Clay, 1), 4500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Mirabilite, 1), 2000, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Clay, 1), 4500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Mirabilite, 1), 2000, 0) .outputFluids(Fluid.of('gtceu:oxygen', 5)) event.recipes.gtceu.centrifuge('gtceu:decomposition_centrifuging__marble') @@ -22,8 +22,8 @@ function registerTFGStoneDustRecipes(event) { .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, GTMaterials.Marble, 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Calcite, 1), 6000, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Magnesium, 1), 1500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Calcite, 1), 6000, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Magnesium, 1), 1500, 0) .outputFluids(Fluid.of('gtceu:oxygen', 12)) event.recipes.gtceu.centrifuge('gtceu:decomposition_centrifuging__andesite') @@ -31,24 +31,24 @@ function registerTFGStoneDustRecipes(event) { .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, GTMaterials.Andesite, 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Asbestos, 1), 6000, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Saltpeter, 1), 2000, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Asbestos, 1), 6000, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Saltpeter, 1), 2000, 0) event.recipes.gtceu.centrifuge('gtceu:decomposition_centrifuging__basalt') .EUt(GTValues.VA[GTValues.MV]) .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, GTMaterials.Basalt, 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Flint, 1), 5000, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Olivine, 1), 1500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Calcite, 1), 1500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Flint, 1), 5000, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Olivine, 1), 1500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Calcite, 1), 1500, 0) event.recipes.gtceu.centrifuge('gtceu:decomposition_centrifuging__granite') .EUt(GTValues.VA[GTValues.MV]) .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, GTMaterials.Granite, 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Redrock, 1), 2000, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Redrock, 1), 2000, 0) .outputFluids(Fluid.of('gtceu:oxygen', 5)) event.recipes.gtceu.centrifuge('gtceu:decomposition_centrifuging__deepslate') @@ -56,9 +56,9 @@ function registerTFGStoneDustRecipes(event) { .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, GTMaterials.Deepslate, 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Biotite, 1), 2000, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Olivine, 1), 3500, 700) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 3500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Biotite, 1), 2000, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Olivine, 1), 3500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 3500, 0) .outputFluids(Fluid.of('gtceu:oxygen', 12)) event.recipes.gtceu.centrifuge('blackstone_dust_separation') @@ -66,9 +66,9 @@ function registerTFGStoneDustRecipes(event) { .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, GTMaterials.Blackstone, 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Graphite, 1), 3500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Magnesium, 1), 4500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Gold, 1), 3500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Graphite, 1), 3500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Magnesium, 1), 4500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Gold, 1), 3500, 0) .outputFluids(Fluid.of('gtceu:oxygen', 16)) // TFC @@ -78,17 +78,16 @@ function registerTFGStoneDustRecipes(event) { .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, TFGHelpers.getMaterial('gabbro'), 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Magnetite, 1), 2500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Rutile, 1), 1500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 1500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Magnetite, 1), 2500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 1500, 0) event.recipes.gtceu.centrifuge('shale_dust_separation') .EUt(GTValues.VA[GTValues.MV]) .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, TFGHelpers.getMaterial('shale'), 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Sodium, 1), 6500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 1500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Sodium, 1), 6500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 1500, 0) .outputFluids(Fluid.of('gtceu:oxygen', 16)) event.recipes.gtceu.centrifuge('claystone_dust_separation') @@ -96,9 +95,9 @@ function registerTFGStoneDustRecipes(event) { .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, TFGHelpers.getMaterial('claystone'), 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Clay, 1), 3000, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Hematite, 1), 3500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Bauxite, 1), 2500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Clay, 1), 3000, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Hematite, 1), 3500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Bauxite, 1), 2500, 0) .outputFluids(Fluid.of('gtceu:oxygen', 5)) event.recipes.gtceu.centrifuge('limestone_dust_separation') @@ -106,8 +105,8 @@ function registerTFGStoneDustRecipes(event) { .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, TFGHelpers.getMaterial('limestone'), 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Calcium, 1), 5500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 1500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Calcium, 1), 5500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 1500, 0) .outputFluids(Fluid.of('gtceu:oxygen', 36)) event.recipes.gtceu.centrifuge('conglomerate_dust_separation') @@ -115,8 +114,8 @@ function registerTFGStoneDustRecipes(event) { .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, TFGHelpers.getMaterial('conglomerate'), 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Hematite, 1), 3500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.TricalciumPhosphate, 1), 3500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Hematite, 1), 3500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.TricalciumPhosphate, 1), 3500, 0) .outputFluids(Fluid.of('gtceu:oxygen', 5)) event.recipes.gtceu.centrifuge('dolomite_dust_separation') @@ -124,9 +123,9 @@ function registerTFGStoneDustRecipes(event) { .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, TFGHelpers.getMaterial('dolomite'), 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Magnesium, 1), 6500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Calcium, 1), 5500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 3500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Magnesium, 1), 6500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Calcium, 1), 5500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 3500, 0) .outputFluids(Fluid.of('gtceu:oxygen', 16)) event.recipes.gtceu.centrifuge('chert_dust_separation') @@ -134,8 +133,8 @@ function registerTFGStoneDustRecipes(event) { .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, TFGHelpers.getMaterial('chert'), 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Redrock, 1), 5500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 3500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Redrock, 1), 5500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 3500, 0) .outputFluids(Fluid.of('gtceu:oxygen', 24)) event.recipes.gtceu.centrifuge('chalk_dust_separation') @@ -143,9 +142,9 @@ function registerTFGStoneDustRecipes(event) { .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, TFGHelpers.getMaterial('chalk'), 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Calcium, 1), 6500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Carbon, 1), 3500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 1500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Calcium, 1), 6500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Carbon, 1), 3500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 1500, 0) .outputFluids(Fluid.of('gtceu:oxygen', 12)) event.recipes.gtceu.centrifuge('rhyolite_dust_separation') @@ -153,18 +152,17 @@ function registerTFGStoneDustRecipes(event) { .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, TFGHelpers.getMaterial('rhyolite'), 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Tantalite, 1), 1500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 1500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 1500, 0) event.recipes.gtceu.centrifuge('dacite_dust_separation') .EUt(GTValues.VA[GTValues.MV]) .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, TFGHelpers.getMaterial('dacite'), 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Sodium, 1), 6500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Calcium, 1), 5500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Kyanite, 1), 3500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 1500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Sodium, 1), 6500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Calcium, 1), 5500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Kyanite, 1), 3500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 1500, 0) .outputFluids(Fluid.of('gtceu:oxygen', 12)) event.recipes.gtceu.centrifuge('slate_dust_separation') @@ -172,8 +170,8 @@ function registerTFGStoneDustRecipes(event) { .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, TFGHelpers.getMaterial('slate'), 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Sapphire, 1), 1500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 1500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Sapphire, 1), 1500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 1500, 0) .outputFluids(Fluid.of('gtceu:oxygen', 24)) event.recipes.gtceu.centrifuge('phyllite_dust_separation') @@ -181,8 +179,8 @@ function registerTFGStoneDustRecipes(event) { .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, TFGHelpers.getMaterial('phyllite'), 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Quartzite, 1), 5500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.CalciumChloride, 1), 1500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Quartzite, 1), 5500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.CalciumChloride, 1), 1500, 0) .outputFluids(Fluid.of('gtceu:oxygen', 5)) event.recipes.gtceu.centrifuge('schist_dust_separation') @@ -190,9 +188,9 @@ function registerTFGStoneDustRecipes(event) { .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, TFGHelpers.getMaterial('schist'), 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Mica, 1), 6500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Talc, 1), 5500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Mica, 1), 6500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Talc, 1), 5500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 500, 0) .outputFluids(Fluid.of('gtceu:oxygen', 12)) event.recipes.gtceu.centrifuge('gneiss_dust_separation') @@ -200,8 +198,8 @@ function registerTFGStoneDustRecipes(event) { .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, TFGHelpers.getMaterial('gneiss'), 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Quartzite, 1), 6500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Biotite, 1), 3500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Quartzite, 1), 6500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Biotite, 1), 3500, 0) .outputFluids(Fluid.of('gtceu:oxygen', 5)) event.recipes.gtceu.centrifuge('dripstone_dust_separation') @@ -209,8 +207,8 @@ function registerTFGStoneDustRecipes(event) { .duration(480) .itemInputs(ChemicalHelper.get(TagPrefix.dust, TFGHelpers.getMaterial('dripstone'), 1)) .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.CalciumCarbonate, 1), 8500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.CalciumHydroxide, 1), 1500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.CalciumCarbonate, 1), 8500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.CalciumHydroxide, 1), 1500, 0) .outputFluids(Fluid.of('gtceu:oxygen', 12)) // Ad astra @@ -219,9 +217,8 @@ function registerTFGStoneDustRecipes(event) { .EUt(GTValues.VA[GTValues.MV]) .duration(10 * 20) .itemInputs(ChemicalHelper.get(TagPrefix.dust, TFGHelpers.getMaterial('moon_stone'), 1)) - .chancedOutput('ae2:sky_dust', 5000, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Ilmenite, 1), 1000, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Magnetite, 1), 2000, 500) + .chancedOutput('ae2:sky_dust', 5000, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Magnetite, 1), 2000, 0) .outputFluids(Fluid.of('gtceu:helium_3', 200)) event.recipes.gtceu.centrifuge('moon_deepslate_dust_separation') @@ -229,8 +226,8 @@ function registerTFGStoneDustRecipes(event) { .duration(10 * 20) .itemInputs(ChemicalHelper.get(TagPrefix.dust, TFGHelpers.getMaterial('moon_deepslate'), 1)) .chancedOutput('ae2:sky_dust', 5000, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Calcium, 1), 2000, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Olivine, 1), 1500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Calcium, 1), 2000, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Olivine, 1), 1500, 0) .outputFluids(Fluid.of('gtceu:helium_3', 200)) event.recipes.gtceu.centrifuge('glacio_stone_dust_separation') @@ -238,8 +235,8 @@ function registerTFGStoneDustRecipes(event) { .duration(10 * 20) .itemInputs(ChemicalHelper.get(TagPrefix.dust, TFGHelpers.getMaterial('glacio_stone'), 1)) .chancedOutput('ae2:sky_dust', 3000, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Sodium, 1), 4000, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Potassium, 1), 4000, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Sodium, 1), 4000, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Potassium, 1), 4000, 0) .outputFluids(Fluid.of('gtceu:oxygen', 50), Fluid.of('gtceu:helium_3', 300)) // AE2 @@ -249,7 +246,7 @@ function registerTFGStoneDustRecipes(event) { .duration(100) .itemInputs('ae2:sky_dust') .itemOutputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.SiliconDioxide, 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.CertusQuartz, 1), 4500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.CertusQuartz, 1), 4500, 0) // Create @@ -257,8 +254,8 @@ function registerTFGStoneDustRecipes(event) { .EUt(GTValues.VA[GTValues.LV]) .duration(100) .itemInputs(ChemicalHelper.get(TagPrefix.dust, TFGHelpers.getMaterial('asurine'), 1)) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.CertusQuartz, 1), 4500, 500) - .chancedOutput(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.Zinc, 1), 3500, 500) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.CertusQuartz, 1), 4500, 0) + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Zinc, 1), 3500, 0) // Misc dust @@ -267,5 +264,5 @@ function registerTFGStoneDustRecipes(event) { .duration(60) .itemInputs('2x gtceu:quartz_sand_dust') .itemOutputs('gtceu:quartzite_dust') - .chancedOutput('#forge:dust/nether_quartz', 2000, 200) + .chancedOutput('#forge:dusts/nether_quartz', 2000, 0) } \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/tags.js b/kubejs/server_scripts/tfg/tags.js index 8001e35f1..9fd5f17a4 100644 --- a/kubejs/server_scripts/tfg/tags.js +++ b/kubejs/server_scripts/tfg/tags.js @@ -1,4 +1,4 @@ -"use strict"; +"use strict"; const registerTFGItemTags = (event) => { @@ -7,9 +7,11 @@ const registerTFGItemTags = (event) => { //crop stuff event.add('tfc:seeds', 'tfg:sunflower_seeds') event.add('tfc:seeds', 'tfg:rapeseed_seeds') + event.add('tfc:seeds', 'tfg:flax_seeds') event.add('tfc:foods', 'tfg:roasted_sunflower_seeds') event.add('tfc:compost_greens_high', 'tfg:rapeseed_product') event.add('tfc:compost_greens_high', 'tfg:sunflower_product') + event.add('tfc:compost_greens_high', 'tfg:flax_product') event.add('tfg:water_breathing_ingredients', 'tfg:rapeseed_product') event.add('tfg:night_vision_ingredients', 'tfg:sunflower_product') @@ -44,6 +46,10 @@ const registerTFGItemTags = (event) => { //Knapping event.add('tfc:any_knapping', 'minecraft:flint') + //Circuit Stuff + event.add('tfg:components/uv_leds', 'tfg:uv_led') + event.add('tfg:components/uv_leds', 'tfg:smd_uv_led') + //#region Tools & Armor event.add('forge:tools/fishing_nets', 'tfg:fishing_net/wood') event.add('forge:tools/fishing_nets', 'tfg:fishing_net/brass') @@ -92,6 +98,8 @@ const registerTFGItemTags = (event) => { event.add('tfc:fluxstone', 'tfg:loose/dripstone') // #endregion + event.add('buildinggadgets2:deny', 'tfg:spice') + //#region Cloth & String event.add('forge:cloth', 'tfg:phantom_silk') event.add('forge:cloth', 'tfg:polycaprolactam_fabric') @@ -101,6 +109,7 @@ const registerTFGItemTags = (event) => { event.add('tfc:sewing_dark_cloth', 'tfg:polycaprolactam_fabric') event.add('forge:string', 'tfg:phantom_thread') event.add('forge:string', 'tfg:polycaprolactam_string') + event.add('forge:string', 'firmalife:pineapple_yarn') //#endregion // #region Medicines @@ -215,9 +224,14 @@ const registerTFGItemTags = (event) => { event.add('tfg:any_iron_double_ingot', '#forge:double_ingots/iron') event.add('tfg:any_iron_double_ingot', '#forge:double_ingots/wrought_iron') + // Allow any bronze type event.add('tfg:any_bronze_frame', '#forge:frames/bronze') event.add('tfg:any_bronze_frame', '#forge:frames/bismuth_bronze') event.add('tfg:any_bronze_frame', '#forge:frames/black_bronze') + + event.add('forge:rods/any_bronze', '#forge:rods/bronze') + event.add('forge:rods/any_bronze', '#forge:rods/bismuth_bronze') + event.add('forge:rods/any_bronze', '#forge:rods/black_bronze') //#region Food const RAW_MEATS = [ @@ -242,6 +256,13 @@ const registerTFGItemTags = (event) => { event.add('tfc:foods/cooked_meats', meat) }) + //These tags are used to add the tooltips and for searchability + global.COOLING_FOODS.forEach(food => { event.add('tfg:cooling_foods', food) }) + + event.add('tfg:cooling_foods_strong', 'tfg:food/ice_soup') + + global.WARMING_FOODS.forEach(food => { event.add('tfg:warming_foods', food) }) + //jam sandwhich stuff const usable_in_jam_sandwich = Ingredient.of('#tfc:foods/usable_in_jam_sandwich').itemIds.toArray().map(String); const preserves = Ingredient.of('#tfc:foods/preserves').itemIds.toArray().map(String); @@ -314,14 +335,14 @@ const registerTFGItemTags = (event) => { event.add('minecraft:mineable/shovel', 'tfg:grass/sangnum_mycelium') // #endregion - // Mars stone dust - + // Mars stone dust event.add('forge:mars_stone_dusts', 'tfg:venus_stone_dust') event.add('forge:mars_stone_dusts', 'gtceu:granite_red_dust') event.add('forge:mars_stone_dusts', 'tfg:mars_stone_dust') //Mars animal region event.add('tfg:martian_eggs', 'tfg:sniffer_egg') + event.add('tfg:martian_eggs', 'tfg:wraptor_egg') event.add('tfg:martian_animal_foods', 'betterend:amber_root_product') event.add('tfg:martian_animal_foods', 'betterend:blossom_berry_product') @@ -332,9 +353,45 @@ const registerTFGItemTags = (event) => { event.add('tfg:glacian_ram_food', '#tfg:martian_animal_foods') event.add('tfg:sniffer_food', '#tfg:martian_animal_foods') - - //#endregion + event.add('tfg:wraptor_food', '#tfg:martian_animal_foods') + event.add('tfg:mineral_rich_wool', 'tfg:wraptor_wool') + event.add('tfg:mineral_rich_wool', 'tfg:sniffer_wool') + //#endregion + + //#region Пыли стоунтайпов в один тэг + event.add('tfg:stone_dusts', 'tfg:gabbro_dust') + event.add('tfg:stone_dusts', 'tfg:shale_dust') + event.add('tfg:stone_dusts', 'tfg:claystone_dust') + event.add('tfg:stone_dusts', 'tfg:limestone_dust') + event.add('tfg:stone_dusts', 'tfg:conglomerate_dust') + event.add('tfg:stone_dusts', 'tfg:dolomite_dust') + event.add('tfg:stone_dusts', 'tfg:chert_dust') + event.add('tfg:stone_dusts', 'tfg:chalk_dust') + event.add('tfg:stone_dusts', 'tfg:rhyolite_dust') + event.add('tfg:stone_dusts', 'tfg:dacite_dust') + event.add('tfg:stone_dusts', 'gtceu:quartzite_dust') + event.add('tfg:stone_dusts', 'tfg:slate_dust') + event.add('tfg:stone_dusts', 'tfg:phyllite_dust') + event.add('tfg:stone_dusts', 'tfg:schist_dust') + event.add('tfg:stone_dusts', 'tfg:gneiss_dust') + event.add('tfg:stone_dusts', 'gtceu:marble_dust') + event.add('tfg:stone_dusts', 'gtceu:basalt_dust') + event.add('tfg:stone_dusts', 'gtceu:diorite_dust') + event.add('tfg:stone_dusts', 'gtceu:andesite_dust') + event.add('tfg:stone_dusts', 'gtceu:granite_dust') + event.add('tfg:stone_dusts', 'gtceu:deepslate_dust') + event.add('tfg:stone_dusts', 'gtceu:blackstone_dust') + event.add('tfg:stone_dusts', 'tfg:dripstone_dust') + event.add('tfg:stone_dusts', 'tfg:moon_stone_dust') + event.add('tfg:stone_dusts', 'tfg:moon_deepslate_dust') + event.add('tfg:stone_dusts', 'tfg:mars_stone_dust') + event.add('tfg:stone_dusts', 'tfg:venus_stone_dust') + event.add('tfg:stone_dusts', 'tfg:mercury_stone_dust') + event.add('tfg:stone_dusts', 'tfg:glacio_stone_dust') + event.add('tfg:stone_dusts', 'gtceu:stone_dust') + event.add('tfg:stone_dusts', 'gtceu:red_granite_dust') + //#endregion // #region 0.7.19 -> 0.9 conversion event.add('c:hidden_from_recipe_viewers', 'treetap:tap') @@ -446,6 +503,31 @@ const registerTFGBlockTags = (event) => { event.add('tfc:crops', 'tfg:sunflower') event.add('tfc:mineable_with_sharp_tool', 'tfg:sunflower') + + event.add('tfc:crops', 'tfg:flax') + event.add('tfc:mineable_with_sharp_tool', 'tfg:flax') + + // Spice unmovable + + event.add('buildinggadgets2:deny', 'tfg:spice') + event.add('ae2:blacklisted/spatial', 'tfg:spice') + + event.add('buildinggadgets2:deny', 'tfg:geyser_source') + event.add('ae2:blacklisted/spatial', 'tfg:geyser_source') + + event.add('buildinggadgets2:deny', 'tfg:geyser_source_small') + event.add('ae2:blacklisted/spatial', 'tfg:geyser_source_small') + + // Spice unmovable + + event.add('buildinggadgets2:deny', 'tfg:spice') + event.add('ae2:blacklisted/spatial', 'tfg:spice') + + event.add('buildinggadgets2:deny', 'tfg:geyser_source') + event.add('ae2:blacklisted/spatial', 'tfg:geyser_source') + + event.add('buildinggadgets2:deny', 'tfg:geyser_source_small') + event.add('ae2:blacklisted/spatial', 'tfg:geyser_source_small') // #region Nether blocks event.add('minecraft:nether_carver_replaceables', 'tfg:rock/hardened_deepslate') @@ -470,23 +552,44 @@ const registerTFGBlockTags = (event) => { // #region Mars blocks event.add('minecraft:dirt', 'tfg:grass/mars_dirt') + event.add('minecraft:dirt', 'tfg:grass/mars_clay_dirt') event.add('minecraft:dirt', 'tfg:grass/amber_mycelium') event.add('minecraft:dirt', 'tfg:grass/rusticus_mycelium') event.add('minecraft:dirt', 'tfg:grass/sangnum_mycelium') + event.add('minecraft:dirt', 'tfg:grass/amber_clay_mycelium') + event.add('minecraft:dirt', 'tfg:grass/rusticus_clay_mycelium') + event.add('minecraft:dirt', 'tfg:grass/sangnum_clay_mycelium') + event.add('minecraft:dirt', 'tfg:grass/amber_kaolin_mycelium') + event.add('minecraft:dirt', 'tfg:grass/rusticus_kaolin_mycelium') + event.add('minecraft:dirt', 'tfg:grass/sangnum_kaolin_mycelium') event.add('tfc:dirt', 'tfg:grass/mars_dirt') + event.add('tfc:dirt', 'tfg:grass/mars_clay_dirt') event.add('tfc:farmland', 'tfg:grass/mars_farmland') event.add('tfc:grass', 'tfg:grass/amber_mycelium') event.add('tfc:grass', 'tfg:grass/rusticus_mycelium') event.add('tfc:grass', 'tfg:grass/sangnum_mycelium') + event.add('tfc:grass', 'tfg:grass/amber_clay_mycelium') + event.add('tfc:grass', 'tfg:grass/rusticus_clay_mycelium') + event.add('tfc:grass', 'tfg:grass/sangnum_clay_mycelium') + event.add('tfc:grass', 'tfg:grass/amber_kaolin_mycelium') + event.add('tfc:grass', 'tfg:grass/rusticus_kaolin_mycelium') + event.add('tfc:grass', 'tfg:grass/sangnum_kaolin_mycelium') event.add('tfg:do_not_destroy_in_space', 'tfg:grass/amber_mycelium') event.add('tfg:do_not_destroy_in_space', 'tfg:grass/rusticus_mycelium') event.add('tfg:do_not_destroy_in_space', 'tfg:grass/sangnum_mycelium') event.add('tfg:do_not_destroy_in_space', 'tfg:grass/mars_farmland') event.add('tfc:can_landslide', 'tfg:grass/mars_dirt') + event.add('tfc:can_landslide', 'tfg:grass/mars_clay_dirt') event.add('tfc:can_landslide', 'tfg:grass/mars_farmland') event.add('tfc:can_landslide', 'tfg:grass/amber_mycelium') event.add('tfc:can_landslide', 'tfg:grass/rusticus_mycelium') event.add('tfc:can_landslide', 'tfg:grass/sangnum_mycelium') + event.add('tfc:can_landslide', 'tfg:grass/amber_clay_mycelium') + event.add('tfc:can_landslide', 'tfg:grass/rusticus_clay_mycelium') + event.add('tfc:can_landslide', 'tfg:grass/sangnum_clay_mycelium') + event.add('tfc:can_landslide', 'tfg:grass/amber_kaolin_mycelium') + event.add('tfc:can_landslide', 'tfg:grass/rusticus_kaolin_mycelium') + event.add('tfc:can_landslide', 'tfg:grass/sangnum_kaolin_mycelium') event.add('minecraft:mushroom_grow_block', '#tfc:dirt') event.add('minecraft:mushroom_grow_block', '#tfc:grass') event.add('minecraft:mineable/shovel', 'tfg:grass/mars_farmland') @@ -515,6 +618,7 @@ const registerTFGBlockTags = (event) => { event.add('forge:mineable/wrench', 'tfg:reflector') event.add('forge:mineable/wrench', 'tfg:machine_casing_aluminium_plated_steel') + event.add('tfg:decorative_plant_attachable', '#minecraft:logs') } //#endregion diff --git a/kubejs/server_scripts/tfg/tags.veins.js b/kubejs/server_scripts/tfg/tags.veins.js index da310cfa2..9f24e44af 100644 --- a/kubejs/server_scripts/tfg/tags.veins.js +++ b/kubejs/server_scripts/tfg/tags.veins.js @@ -6,6 +6,7 @@ const registerTFGOreVeinFeatures = (event) => { // #region earth ores + event.add('tfc:in_biome/veins', 'tfg:earth/vein/deep_sheldonite') event.add('tfc:in_biome/veins', 'tfg:earth/vein/deep_garnet_amethyst') event.add('tfc:in_biome/veins', 'tfg:earth/vein/deep_garnet_opal') event.add('tfc:in_biome/veins', 'tfg:earth/vein/deep_gold') @@ -16,7 +17,6 @@ const registerTFGOreVeinFeatures = (event) => { event.add('tfc:in_biome/veins', 'tfg:earth/vein/deep_pitchblende') event.add('tfc:in_biome/veins', 'tfg:earth/vein/deep_sapphire') event.add('tfc:in_biome/veins', 'tfg:earth/vein/deep_scheelite') - event.add('tfc:in_biome/veins', 'tfg:earth/vein/deep_sheldonite') event.add('tfc:in_biome/veins', 'tfg:earth/vein/deep_topaz') event.add('tfc:in_biome/veins', 'tfg:earth/vein/normal_apatite') event.add('tfc:in_biome/veins', 'tfg:earth/vein/normal_basaltic_sands') @@ -60,7 +60,32 @@ const registerTFGOreVeinFeatures = (event) => { // #region mars ores + event.add('tfg:mars_veins', 'tfg:mars/vein/deep_mars_chromite') + event.add('tfg:mars_veins', 'tfg:mars/vein/deep_mars_pitchblende') + event.add('tfg:mars_veins', 'tfg:mars/vein/deep_mars_sheldonite') + event.add('tfg:mars_veins', 'tfg:mars/vein/mars_almandine') + event.add('tfg:mars_veins', 'tfg:mars/vein/mars_apatite') + event.add('tfg:mars_veins', 'tfg:mars/vein/mars_beryllium') + event.add('tfg:mars_veins', 'tfg:mars/vein/mars_coal') + event.add('tfg:mars_veins', 'tfg:mars/vein/mars_copper') + event.add('tfg:mars_veins', 'tfg:mars/vein/mars_galena') + event.add('tfg:mars_veins', 'tfg:mars/vein/mars_sapphire') event.add('tfg:mars_veins', 'tfg:mars/vein/mars_hematite') + event.add('tfg:mars_veins', 'tfg:mars/vein/mars_lubricant') + event.add('tfg:mars_veins', 'tfg:mars/vein/mars_neodynium') + event.add('tfg:mars_veins', 'tfg:mars/vein/mars_nickel') + event.add('tfg:mars_veins', 'tfg:mars/vein/mars_pitchblende') + event.add('tfg:mars_veins', 'tfg:mars/vein/mars_quartzite') + event.add('tfg:mars_veins', 'tfg:mars/vein/mars_salt') + event.add('tfg:mars_veins', 'tfg:mars/vein/mars_stibnite') + event.add('tfg:mars_veins', 'tfg:mars/vein/mars_sulfur') + event.add('tfg:mars_veins', 'tfg:mars/vein/mars_tantalite') + event.add('tfg:mars_veins', 'tfg:mars/vein/mars_tungsten') + event.add('tfg:mars_veins', 'tfg:mars/vein/surface_bismuthinite') + event.add('tfg:mars_veins', 'tfg:mars/vein/surface_cassiterite') + event.add('tfg:mars_veins', 'tfg:mars/vein/surface_hematite') + event.add('tfg:mars_veins', 'tfg:mars/vein/surface_nickel_galena') + event.add('tfg:mars_veins', 'tfg:mars/vein/surface_tetrahedrite') // #endregion @@ -71,6 +96,7 @@ const registerTFGOreVeinFeatures = (event) => { event.add('tfg:moon_veins', 'tfg:moon/vein/moon_bauxite') event.add('tfg:moon_veins', 'tfg:moon/vein/moon_beryllium') event.add('tfg:moon_veins', 'tfg:moon/vein/moon_cassiterite') + event.add('tfg:moon_veins', 'tfg:moon/vein/moon_sheldonite') event.add('tfg:moon_veins', 'tfg:moon/vein/moon_desh') event.add('tfg:moon_veins', 'tfg:moon/vein/moon_garnet') event.add('tfg:moon_veins', 'tfg:moon/vein/moon_garnierite') @@ -89,7 +115,6 @@ const registerTFGOreVeinFeatures = (event) => { event.add('tfg:moon_veins', 'tfg:moon/vein/moon_saltpeter') event.add('tfg:moon_veins', 'tfg:moon/vein/moon_sapphire') event.add('tfg:moon_veins', 'tfg:moon/vein/moon_scheelite') - event.add('tfg:moon_veins', 'tfg:moon/vein/moon_sheldonite') event.add('tfg:moon_veins', 'tfg:moon/vein/moon_silver') event.add('tfg:moon_veins', 'tfg:moon/vein/moon_sphalerite') event.add('tfg:moon_veins', 'tfg:moon/vein/moon_tetrahedrite') @@ -105,6 +130,7 @@ const registerTFGOreVeinFeatures = (event) => { event.add('tfg:nether_veins', 'tfg:nether/vein/nether_basaltic_sands') event.add('tfg:nether_veins', 'tfg:nether/vein/nether_beryllium') event.add('tfg:nether_veins', 'tfg:nether/vein/nether_cassiterite') + event.add('tfg:nether_veins', 'tfg:nether/vein/nether_sheldonite') event.add('tfg:nether_veins', 'tfg:nether/vein/nether_copper') event.add('tfg:nether_veins', 'tfg:nether/vein/nether_garnet') event.add('tfg:nether_veins', 'tfg:nether/vein/nether_garnet_tin') @@ -129,7 +155,6 @@ const registerTFGOreVeinFeatures = (event) => { event.add('tfg:nether_veins', 'tfg:nether/vein/nether_saltpeter') event.add('tfg:nether_veins', 'tfg:nether/vein/nether_sapphire') event.add('tfg:nether_veins', 'tfg:nether/vein/nether_scheelite') - event.add('tfg:nether_veins', 'tfg:nether/vein/nether_sheldonite') event.add('tfg:nether_veins', 'tfg:nether/vein/nether_silver') event.add('tfg:nether_veins', 'tfg:nether/vein/nether_sphalerite') event.add('tfg:nether_veins', 'tfg:nether/vein/nether_sulfur') diff --git a/kubejs/server_scripts/toolbelt/recipes.js b/kubejs/server_scripts/toolbelt/recipes.js index 94b1969f7..e2e1cad7c 100644 --- a/kubejs/server_scripts/toolbelt/recipes.js +++ b/kubejs/server_scripts/toolbelt/recipes.js @@ -10,7 +10,7 @@ const registerToolBeltRecipes = (event) => { 'BAB' ], { A: '#forge:string', - B: '#forge:leather', + B: 'sns:leather_strip', C: '#forge:bolts/rose_gold' }).id('tfg:toolbelt/shaped/pouch') @@ -20,8 +20,8 @@ const registerToolBeltRecipes = (event) => { 'BCB' ], { A: '#forge:string', - B: '#forge:leather', - C: '#forge:plates/wrought_iron' + B: 'sns:leather_strip', + C: 'sns:buckle' }).id(`tfg:toolbelt/shaped/belt_${2}`) diff --git a/kubejs/server_scripts/wan_ancient_beasts/loot.js b/kubejs/server_scripts/wan_ancient_beasts/loot.js new file mode 100644 index 000000000..a1f5cfb53 --- /dev/null +++ b/kubejs/server_scripts/wan_ancient_beasts/loot.js @@ -0,0 +1,23 @@ +// priority: 0 +"use strict"; + +function registerWansAncientBeastsLoots(event) { + + // Extra animal drop amounts for butchery knives + + event.addEntityLootModifier('wan_ancient_beasts:crusher') + .matchMainHand('#forge:tools/butchery_knives') + .addWeightedLoot([1, 3], ['tfg:food/raw_crusher_meat']) + + event.addEntityLootModifier('wan_ancient_beasts:glider') + .matchMainHand('#forge:tools/butchery_knives') + .addWeightedLoot([1, 3], ['tfg:food/raw_glider_wings']) + + event.addEntityLootModifier('wan_ancient_beasts:soarer') + .matchMainHand('#forge:tools/butchery_knives') + .addWeightedLoot([1, 2], ['tfg:food/raw_whole_soarer']) + + event.addEntityLootModifier('wan_ancient_beasts:walker') + .matchMainHand('#forge:tools/butchery_knives') + .addWeightedLoot([6, 12], ['tfg:food/raw_walker_steak']) +} \ No newline at end of file diff --git a/kubejs/server_scripts/wan_ancient_beasts/recipes.js b/kubejs/server_scripts/wan_ancient_beasts/recipes.js index 7109c0f50..143097b65 100644 --- a/kubejs/server_scripts/wan_ancient_beasts/recipes.js +++ b/kubejs/server_scripts/wan_ancient_beasts/recipes.js @@ -34,7 +34,19 @@ const registerWABRecipes = (event) => { .itemOutputs('32x #forge:dusts/bone') .duration(400) .EUt(30) - + + event.recipes.tfc.damage_inputs_shapeless_crafting( + event.shapeless('4x tfg:fletching', [ + 'wan_ancient_beasts:glider_feather', + '#forge:tools/knives' + ]).id('tfg:shapeless/glider_feather_fletching')) + + event.recipes.gtceu.assembler('tfg:assembler/glider_feather_fletching') + .itemInputs('1x wan_ancient_beasts:glider_feather') + .itemOutputs('4x tfg:fletching') + .duration(20) + .circuit(4) + .EUt(GTValues.VA[GTValues.ULV]) } const registerWABFoodData = (event) => { diff --git a/kubejs/server_scripts/wan_ancient_beasts/tags.js b/kubejs/server_scripts/wan_ancient_beasts/tags.js index 390e92127..e315a5db2 100644 --- a/kubejs/server_scripts/wan_ancient_beasts/tags.js +++ b/kubejs/server_scripts/wan_ancient_beasts/tags.js @@ -5,6 +5,10 @@ const registerWABBlockTags = (event) => { event.removeAllTagsFrom(block) event.add('c:hidden_from_recipe_viewers', block) }) + + // don't put sand layers on these, otherwise they'll fall through + event.add('minecraft:snow_layer_cannot_survive_on', 'wan_ancient_beasts:quick_sand') + event.add('minecraft:snow_layer_cannot_survive_on', 'wan_ancient_beasts:quick_red_sand') } const registerWABItemTags = (event) => { @@ -25,4 +29,13 @@ const registerWABItemTags = (event) => { event.add('tfc:foods/cooked_meats', 'wan_ancient_beasts:cooked_toxlacanth') event.add('firmalife:foods/cooked_fish', 'wan_ancient_beasts:cooked_toxlacanth') event.add('tfc:food/meats', 'wan_ancient_beasts:cooked_toxlacanth') +} + +const registerWABEntityTypeTags = (event) => { + + event.add('wan_ancient_beasts:eater_ignore', '#wan_ancient_beasts:ancient_mobs') + event.add('wan_ancient_beasts:eater_ignore', 'tfg:sniffer') + event.add('wan_ancient_beasts:eater_ignore', 'tfg:wraptor') + event.add('wan_ancient_beasts:eater_ignore', 'species:springling') + } \ No newline at end of file diff --git a/kubejs/startup_scripts/ad_astra/constants.js b/kubejs/startup_scripts/ad_astra/constants.js index 7c891feb7..7c5cc5409 100644 --- a/kubejs/startup_scripts/ad_astra/constants.js +++ b/kubejs/startup_scripts/ad_astra/constants.js @@ -43,6 +43,7 @@ global.AD_ASTRA_DISABLED_ITEMS = 'ad_astra:steel_cable', 'ad_astra:desh_cable', 'ad_astra:glacian_leaves', + 'ad_astra:raw_ostrum', // Don't tag prefix these, several systems rely on all ore blocks being gregtech's generated ones 'ad_astra:moon_ice_shard_ore', @@ -81,15 +82,7 @@ global.AD_ASTRA_DISABLED_ITEMS = 'ad_astra:ostrum_tank', 'tfg:rocket_fin_t3', 'tfg:rocket_cone_t3', - 'tfg:elite_power_thruster', - 'tfg:better_space_suit_fabric', - 'ad_astra:netherite_space_helmet', - 'ad_astra:netherite_space_suit', - 'ad_astra:netherite_space_pants', - 'ad_astra:netherite_space_boots', - - - + 'tfg:elite_power_thruster', // Disabled until LuV planet @@ -108,7 +101,11 @@ global.AD_ASTRA_DISABLED_FLUIDS = 'ad_astra:hydrogen', 'ad_astra:oil', 'ad_astra:fuel', - 'ad_astra:cryo_fuel' + 'ad_astra:cryo_fuel', + + 'gtceu:molten_desh', + 'gtceu:molten_ostrum', + 'gtceu:molten_calorite' ]; global.BREATHABLE_COMPRESSED_AIRS = diff --git a/kubejs/startup_scripts/ad_astra/materials.js b/kubejs/startup_scripts/ad_astra/materials.js index 37ac4831b..a9923498f 100644 --- a/kubejs/startup_scripts/ad_astra/materials.js +++ b/kubejs/startup_scripts/ad_astra/materials.js @@ -37,7 +37,7 @@ const registerAdAstraMaterials = (event) => { // mars event.create('ostrum') - //.components('3x scheelite', '2x hematite', '2x thorium', '4x oxygen') + .components('2x pitchblende', '1x tricalcium_phosphate', '1x bauxite', '1x silver', '1x beryllium') .color(0xbd7980) .secondaryColor(0xA66C8D) .iconSet(GTMaterialIconSet.getByName('tfc_cassiterite')) @@ -45,10 +45,10 @@ const registerAdAstraMaterials = (event) => { .liquid() .blastTemp(2900, 'mid', GTValues.VA[GTValues.HV]) .flags( + GTMaterialFlags.DISABLE_DECOMPOSITION, GTMaterialFlags.FORCE_GENERATE_BLOCK, GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.DISABLE_ALLOY_BLAST - ) // venus? diff --git a/kubejs/startup_scripts/advancedperipherals/constants.js b/kubejs/startup_scripts/advancedperipherals/constants.js index cd152dbd6..3680e5292 100644 --- a/kubejs/startup_scripts/advancedperipherals/constants.js +++ b/kubejs/startup_scripts/advancedperipherals/constants.js @@ -8,6 +8,9 @@ global.ADVANCED_PERIPHERALS_DISABLED_ITEMS = [ 'advancedperipherals:colony_integrator', 'advancedperipherals:computer_tool', + // deprecated in favour of CC's redstone relay + 'advancedperipherals:redstone_integrator', + // banned for trans-dimensional travel 'advancedperipherals:overpowered_end_automata_core', // banned for offline chunk loading (bad for server performance) diff --git a/kubejs/startup_scripts/betterend/blocks.js b/kubejs/startup_scripts/betterend/blocks.js index 78fb4fbda..9f6b35914 100644 --- a/kubejs/startup_scripts/betterend/blocks.js +++ b/kubejs/startup_scripts/betterend/blocks.js @@ -8,8 +8,9 @@ function registerBetterEndBlocks(event) { event.create('betterend:chorus_lily', 'tfc:ground_cover') .soundType('cherry_wood') .hardness(0.5) - .tagBlock('minecraft:mineable/hoe') .tagItem('tfg:moon_plants') + .tagBlock('minecraft:mineable/hoe') + .tagBlock('tfg:do_not_destroy_in_space') .mapColor('terracotta_white') .box(0, 0, 0, 16, 6, 16) .fullBlock(false) @@ -31,59 +32,148 @@ function registerBetterEndBlocks(event) { .box(2, 0, 2, 14, 14, 14) createPlant(event, 'amber_grass', 'mars') .box(3, 0, 3, 13, 8, 13) + .lootItem('tfc:straw') createPlant(event, 'bushy_grass', 'mars') .box(3, 0, 3, 13, 12, 13) createPlant(event, 'cave_grass', 'mars') .box(3, 0, 3, 13, 12, 13) + .lootItem('beneath:warped_straw') createPlant(event, 'clawfern', 'mars') .box(2, 0, 2, 14, 14, 14) createPlant(event, 'creeping_moss', 'mars') .box(2, 0, 2, 14, 20, 14) - createPlant(event, 'flamaea', 'mars') - .box(2, 0, 2, 14, 3, 14) + .lootItem('beneath:warped_straw') createPlant(event, 'flammalix', 'mars') createPlant(event, 'globulagus', 'mars') .box(3, 0, 3, 13, 13, 13) + .lootItem('beneath:crimson_straw') createPlant(event, 'lamellarium', 'mars') createPlant(event, 'lutebus', 'mars') .box(3, 0, 3, 13, 8, 13) + .lootItem('tfc:straw') createPlant(event, 'orango', 'mars') .box(3, 0, 3, 13, 12, 13) + .lootItem('tfc:straw') createPlant(event, 'ruscus', 'mars') + .lootItem('beneath:crimson_straw') createPlant(event, 'small_amaranita_mushroom', 'mars') .box(3, 0, 3, 13, 8, 13) + createPlant(event, 'lucernia_outer_leaves', 'mars') + createPlant(event, 'lanceleaf_small', 'mars') + .box(4, 0, 4, 12, 8, 12) // 1 block tall waterlogged - // charnia (and its colors) - // jungle_grass - // Crops - // amber_root - // blossom_berry - // shadow_berry - // chorus mushroom + createPlant(event, 'charnia_orange', 'mars') + createPlant(event, 'charnia_cyan', 'mars') + createPlant(event, 'charnia_green', 'mars') + createPlant(event, 'charnia_light_blue', 'mars') + createPlant(event, 'charnia_purple', 'mars') + createPlant(event, 'charnia_red', 'mars') + + // Water surface + + event.create('betterend:flamaea', 'tfg:floating_decorative_plant') + .soundType('crop') + .box(1, 0, 1, 15, 2, 15) + .mapColor('color_light_blue') + .tagItem('tfg:mars_plants') + .tagItem('forge:mushrooms') + .tagBlock('tfg:do_not_destroy_in_space') + .tagBlock('minecraft:replaceable') + + event.create('betterend:lacugrove', 'tfg:floating_decorative_plant') + .xz_offset(false) + .soundType('crop') + .box(0, 0, 0, 16, 1, 16) + .mapColor('color_cyan') + .tagItem('tfg:mars_plants') + .tagBlock('tfg:do_not_destroy_in_space') + .tagBlock('minecraft:replaceable') // Mosses / Can go on sides of blocks - // bulb_moss - // cyan_moss - // filalux_wings - // jungle_fern - // twisted_moss - - //createPlant(event, 'aurant_polypore', 'mars') - //createPlant(event, 'purple_polypore', 'mars') - // Vines - // bulb_vine - // dense_vine - // hydralux (bottom up, waterlogged) - // jungle_vine - // magnula - // rubinea + // TODO: needs features + event.create('betterend:aurant_polypore', 'tfg:attached_decorative_plant') + .soundType('nether_wart') + .tagItem('tfg:mars_plants') + .tagItem('forge:mushrooms') + .tagBlock('minecraft:replaceable') + .tagBlock('tfg:do_not_destroy_in_space') - // Blocks - // cave_bush - // cave_pumpkin (also a vine) + event.create('betterend:purple_polypore', 'tfg:attached_decorative_plant') + .soundType('nether_wart') + .tagItem('tfg:mars_plants') + .tagItem('forge:mushrooms') + .tagBlock('minecraft:replaceable') + .tagBlock('tfg:do_not_destroy_in_space') + + event.create('betterend:filalux_wings', 'tfg:attached_decorative_plant') + .soundType('nether_wart') + .allowVertical(true) + .tagItem('tfg:mars_plants') + .tagItem('forge:mushrooms') + .tagBlock('minecraft:replaceable') + .tagBlock('tfg:do_not_destroy_in_space') + + event.create('betterend:bulb_moss', 'tfg:attached_decorative_plant') + .soundType('crop') + .lootItem('tfc:straw') + .tagItem('tfg:mars_plants') + .tagBlock('minecraft:replaceable') + .tagBlock('tfg:do_not_destroy_in_space') + + // Leaves + + event.create('betterend:cave_bush', 'tfc:leaves') + .soundType('azalea_leaves') + .tagBlock('minecraft:mineable/hoe') + .tagBlock('tfg:do_not_destroy_in_space') + .mapColor('fire') + .seasonalColors(false) + .tagItem('tfg:mars_plants') + .fallenLeaves(leaves => { + leaves.noCollision() + leaves.notSolid() + leaves.defaultCutout() + leaves.soundType('azalea_leaves') + leaves.tagBlock('minecraft:mineable/hoe') + leaves.tagBlock('minecraft:replaceable') + // TODO: kjs-tfc 1.3.3 will have an option to disable tinting on leaves + leaves.models((modelType, generator) => { + if (modelType.layers != 8) { + generator.parent("tfc:block/groundcover/fallen_leaves_height" + modelType.height); + generator.texture("all", "betterend:block/cave_bush_leaves_1"); + } else { + generator.parent("betterend:block/cave_bush_01"); + } + }) + }) + + event.create('betterend:lucernia_leaves', 'tfc:leaves') + .soundType('azalea_leaves') + .tagBlock('minecraft:mineable/hoe') + .tagBlock('tfg:do_not_destroy_in_space') + .mapColor('color_orange') + .seasonalColors(false) + .tagItem('tfg:mars_plants') + .fallenLeaves(leaves => { + leaves.noCollision() + leaves.notSolid() + leaves.defaultCutout() + leaves.soundType('azalea_leaves') + leaves.tagBlock('minecraft:mineable/hoe') + leaves.tagBlock('minecraft:replaceable') + // TODO: kjs-tfc 1.3.3 will have an option to disable tinting on leaves + leaves.models((modelType, generator) => { + if (modelType.layers != 8) { + generator.parent("tfc:block/groundcover/fallen_leaves_height" + modelType.height); + generator.texture("all", "betterend:block/lucernia_leaves_1"); + } else { + generator.parent("betterend:block/lucernia_leaves_1"); + } + }) + }) // "Structures"? // blue_vine (blue) @@ -93,8 +183,22 @@ function registerBetterEndBlocks(event) { // end lotus // lanceleaf + event.create('betterend:large_amaranita_mushroom', 'tfg:tall_decorative_plant') + .height(3) + .soundType('nether_wart') + .tagItem('tfg:mars_plants') + .tagBlock('tfg:do_not_destroy_in_space') + .tagItem('forge:mushrooms') + .mapColor('fire') - // ?? + event.create('betterend:lanceleaf', 'tfg:tall_decorative_plant') + .height(5) + .soundType('crop') + .tagItem('tfg:mars_plants') + .tagBlock('tfg:do_not_destroy_in_space') + .mapColor('color_orange') + + // europa...? createPlant(event, 'crystal_grass', 'unused') .box(3, 0, 3, 13, 12, 13) @@ -115,4 +219,5 @@ function createPlant(event, id, planet) { return event.create(`betterend:${id}`, 'tfg:decorative_plant') .tagItem(`tfg:${planet}_plants`) .tagBlock('minecraft:replaceable') + .tagBlock('tfg:do_not_destroy_in_space') } \ No newline at end of file diff --git a/kubejs/startup_scripts/firmalife/modifications.js b/kubejs/startup_scripts/firmalife/modifications.js index 8a9924201..97de6ce74 100644 --- a/kubejs/startup_scripts/firmalife/modifications.js +++ b/kubejs/startup_scripts/firmalife/modifications.js @@ -9,4 +9,22 @@ function registerFirmalifeItemModifications(event) { event.modify('firmalife:mixing_bowl', item => { item.setCraftingRemainder('firmalife:mixing_bowl') }) + + //#region add cooling/heating to foods + global.COOLING_FOODS.forEach(food => { + event.modify(food, item =>{ + item.foodProperties = food => { + food.effect('tfg:cooling', 20, 0, 1) + } + }) + }) + + global.WARMING_FOODS.forEach(food => { + event.modify(food, item =>{ + item.foodProperties = food => { + food.effect('tfg:warming', 20, 1, 1) + } + }) + }) + } \ No newline at end of file diff --git a/kubejs/startup_scripts/gtceu/machines.js b/kubejs/startup_scripts/gtceu/machines.js index 66cf74285..fb0ebb741 100644 --- a/kubejs/startup_scripts/gtceu/machines.js +++ b/kubejs/startup_scripts/gtceu/machines.js @@ -575,12 +575,12 @@ const registerGTCEuMachines = (event) => { .recipeModifiers([GTRecipeModifiers.OC_NON_PERFECT, (machine, recipe) => GTRecipeModifiers.crackerOverclock(machine, recipe)]) .appearanceBlock(() => Block.getBlock('gtceu:nonconducting_casing')) .pattern(definition => FactoryBlockPattern.start() - .aisle(' ' ,'A A', 'AAAAA', 'ACCCA', 'AAEAA', ' AAA ') - .aisle(' ' ,' ', 'BBBBB', 'B B', 'BB BB', ' BFB ') - .aisle(' ' ,' ', 'ADDDA', 'D D', 'A A', ' BFB ') - .aisle(' G ' ,' ', 'ADDDA', 'D D', 'A A', ' BFB ') - .aisle(' ' ,' ', 'ADDDA', 'D D', 'A A', ' BFB ') - .aisle(' ' ,' ', 'BBBBB', 'B B', 'BB BB', ' BFB ') + .aisle(' ' ,'A A', 'AAAAA', 'ACCCA', 'AACAA', ' AAA ') + .aisle(' G ' ,' ', 'BBBBB', 'B B', 'BB BB', ' BFB ') + .aisle(' GGG ' ,' ', 'ADDDA', 'D D', 'A A', ' BFB ') + .aisle('GGGGG' ,' ', 'ADDDA', 'D D', 'A A', ' BFB ') + .aisle(' GGG ' ,' ', 'ADDDA', 'D D', 'A A', ' BFB ') + .aisle(' G ' ,' ', 'BBBBB', 'B B', 'BB BB', ' BFB ') .aisle(' ' ,'A A', 'AAAAA', 'ACXCA', 'AACAA', ' AAA ') .where('X', Predicates.controller(Predicates.blocks(definition.get()))) .where('A', Predicates.blocks('gtceu:secure_maceration_casing')) @@ -591,8 +591,6 @@ const registerGTCEuMachines = (event) => { .or(Predicates.abilities(PartAbility.INPUT_ENERGY).setMaxGlobalLimited(2).setPreviewCount(2)) .or(Predicates.abilities(PartAbility.MAINTENANCE).setExactLimit(1).setPreviewCount(1))) .where('D', Predicates.blocks('tfg:casings/machine_casing_vacuum_engine_intake')) - .where('E', Predicates.blocks('gtceu:nonconducting_casing') - .or(Predicates.abilities(PartAbility.MUFFLER).setExactLimit(1).setPreviewCount(1))) .where('F', Predicates.heatingCoils()) .where('G', Predicates.blocks('tfg:spice')) .where('#', Predicates.air()) @@ -640,15 +638,15 @@ const registerGTCEuMachines = (event) => { // Extraterrestrial Ore Fabricator - event.create('extraterrestrial_ore_fabricator', 'multiblock') + event.create('ostrum_linear_accelerator', 'multiblock') .rotationState(RotationState.NON_Y_AXIS) - .recipeType('extraterrestrial_ore_fabricator') + .recipeType('ostrum_linear_accelerator') .recipeModifiers([GTRecipeModifiers.PARALLEL_HATCH, GTRecipeModifiers.OC_NON_PERFECT]) .appearanceBlock(() => Block.getBlock('tfg:casings/machine_casing_mars')) .pattern(definition => FactoryBlockPattern.start() .aisle('AAAAAAAAA', 'AAAAAAAAA', 'AAAAAAAAA', ' ', ' ' ) .aisle('BAAAAAAAA', 'B#######D', 'BBBBBBBAA', ' BCCCB ', ' BBBBB ' ) - .aisle('AAAAAAAAA', 'A#######D', 'BB###BBGA', ' C###C ', ' BBHBB ' ) + .aisle('AAAAAAAAA', 'A#######D', 'BB###BBAA', ' C###C ', ' BHHHB ' ) .aisle('BEBEBEAAA', 'BEBEBEA#D', 'BBBBBBBAA', ' BCCCB ', ' BBBBB ' ) .aisle('A#####AFA', 'A#####AXA', 'AAAAAAAFA', ' ', ' ' ) .where('X', Predicates.controller(Predicates.blocks(definition.get()))) @@ -661,8 +659,9 @@ const registerGTCEuMachines = (event) => { .or(Predicates.abilities(PartAbility.IMPORT_FLUIDS).setMaxGlobalLimited(6))) .where('F', Predicates.blocks('tfg:casings/machine_casing_mars') .or(Predicates.abilities(PartAbility.MAINTENANCE).setExactLimit(1))) - .where('G', Predicates.abilities(PartAbility.MUFFLER).setExactLimit(1)) - .where('H', Predicates.abilities(PartAbility.EXPORT_ITEMS).setExactLimit(1)) + .where('H', Predicates.blocks('tfg:casings/machine_casing_mars') + .or(Predicates.abilities(PartAbility.EXPORT_ITEMS)) + .or(Predicates.abilities(PartAbility.EXPORT_FLUIDS))) .where('#', Predicates.air()) .where(' ', Predicates.any()) .build() @@ -670,7 +669,7 @@ const registerGTCEuMachines = (event) => { .shapeInfo(controller => MultiblockShapeInfo.builder() .aisle('KKAAAAAAA', 'AAAAAAAAA', 'AAAAAAAAA', ' ', ' ' ) .aisle('BAAAAAAAA', 'B D', 'BBBBBBBAA', ' BCCCB ', ' BBBBB ' ) - .aisle('AAAAAAAAA', 'A D', 'BB BBGA', ' C C ', ' BBHBB ' ) + .aisle('AAAAAAAAA', 'A D', 'BB BBAA', ' C C ', ' BIAHB ' ) .aisle('BEBEBEAAA', 'BEBEBEA#D', 'BBBBBBBAA', ' BCCCB ', ' BBBBB ' ) .aisle('A AMA', 'A AXA', 'AAAAAAAAA', ' ', ' ' ) .where('X', controller, Direction.SOUTH) @@ -679,8 +678,8 @@ const registerGTCEuMachines = (event) => { .where('C', Block.getBlock('tfg:casings/machine_casing_vacuum_engine_intake')) .where('D', Block.getBlock('gtceu:heat_vent')) .where('E', GTMachines.FLUID_IMPORT_HATCH[GTValues.EV], Direction.SOUTH) - .where('G', GTMachines.MUFFLER_HATCH[GTValues.LV], Direction.UP) .where('H', GTMachines.ITEM_EXPORT_BUS[GTValues.EV], Direction.UP) + .where('I', GTMachines.FLUID_EXPORT_HATCH[GTValues.EV], Direction.UP) .where('M', GTMachines.AUTO_MAINTENANCE_HATCH, Direction.SOUTH) .where('K', GTMachines.ENERGY_INPUT_HATCH[GTValues.HV], Direction.NORTH) .where(' ', Block.getBlock('minecraft:air')) diff --git a/kubejs/startup_scripts/gtceu/materials.js b/kubejs/startup_scripts/gtceu/materials.js index 692a1384e..7e70c05d0 100644 --- a/kubejs/startup_scripts/gtceu/materials.js +++ b/kubejs/startup_scripts/gtceu/materials.js @@ -168,13 +168,23 @@ const registerGTCEuMaterialModification = (event) => { GTMaterials.Zinc.addFlags(GENERATE_DOUBLE_INGOTS, GENERATE_BOLT_SCREW); GTMaterials.SterlingSilver.addFlags(GENERATE_DOUBLE_INGOTS); - // /* Generate Dusty Ores for Infinite Ores + //#region Generate Dusty Ores for Infinite Ores GTMaterials.Goethite.addFlags(GENERATE_DUSTY_ORES); GTMaterials.Diamond.addFlags(GENERATE_DUSTY_ORES); GTMaterials.CertusQuartz.addFlags(GENERATE_DUSTY_ORES); GTMaterials.Gold.addFlags(GENERATE_DUSTY_ORES); GTMaterials.Cassiterite.addFlags(GENERATE_DUSTY_ORES); + GTMaterials.Pitchblende.addFlags(GENERATE_DUSTY_ORES); + GTMaterials.Silver.addFlags(GENERATE_DUSTY_ORES); + GTMaterials.TricalciumPhosphate.addFlags(GENERATE_DUSTY_ORES); + GTMaterials.Bauxite.addFlags(GENERATE_DUSTY_ORES); + GTMaterials.Lead.addFlags(GENERATE_DUSTY_ORES); + GTMaterials.Beryllium.addFlags(GENERATE_DUSTY_ORES); + GTMaterials.Thorium.addFlags(GENERATE_DUSTY_ORES); + GTMaterials.Uraninite.addFlags(GENERATE_DUSTY_ORES); + + //#endregion // // /* Имеют инструменты, броню TFC, двойные слитки */ diff --git a/kubejs/startup_scripts/gtceu/modifications.js b/kubejs/startup_scripts/gtceu/modifications.js index 5d11e070c..5005bc417 100644 --- a/kubejs/startup_scripts/gtceu/modifications.js +++ b/kubejs/startup_scripts/gtceu/modifications.js @@ -43,4 +43,29 @@ function registerGTCEuItemModifications(event) { item.armorProtection = 12 item.armorKnockbackResistance = 0.25 }) + + //#region eating radioactive stuff + const EDIBLE_ITEMS = [ + 'gtceu:thorium_nugget', + 'gtceu:enriched_naquadah_nugget', + 'gtceu:thorium_232_nugget', + 'gtceu:thorium_230_nugget', + 'gtceu:ruthenium_trinium_americium_neutronate_nugget', + 'gtceu:plutonium_nugget', + 'gtceu:plutonium_241_nugget', + 'gtceu:neutronium_nugget', + 'gtceu:naquadria_nugget', + 'gtceu:uranium_nugget', + 'gtceu:uranium_rhodium_dinaquadide_nugget', + 'gtceu:uranium_triplatinum_nugget', + 'gtceu:uranium_235_nugget' + ] + + EDIBLE_ITEMS.forEach(edible => { + event.modify(edible, item => { + item.foodProperties = food => { + food.effect('tfg:instant_radiation', -1, 0, 0.5) + } + }) + }) } \ No newline at end of file diff --git a/kubejs/startup_scripts/gtceu/recipe_types.js b/kubejs/startup_scripts/gtceu/recipe_types.js index f7afe396e..e769eedb9 100644 --- a/kubejs/startup_scripts/gtceu/recipe_types.js +++ b/kubejs/startup_scripts/gtceu/recipe_types.js @@ -88,10 +88,10 @@ const registerGTCEuRecipeTypes = (event) => { .setProgressBar(GuiTextures.PROGRESS_BAR_GAS_COLLECTOR, FillDirection.LEFT_TO_RIGHT) .setSound(GTSoundEntries.JET_ENGINE) - event.create('extraterrestrial_ore_fabricator') - .category('extraterrestrial_ore_fabricator') + event.create('ostrum_linear_accelerator') + .category('ostrum_linear_accelerator') .setEUIO('in') - .setMaxIOSize(0, 6, 2, 0) + .setMaxIOSize(1, 6, 3, 3) .setSlotOverlay(false, false, GuiTextures.EXTRACTOR_OVERLAY) .setProgressBar(GuiTextures.PROGRESS_BAR_EXTRACT, FillDirection.LEFT_TO_RIGHT) .setSound(GTSoundEntries.BATH) diff --git a/kubejs/startup_scripts/minecraft/constants.js b/kubejs/startup_scripts/minecraft/constants.js index 29ae97104..751aa93a1 100644 --- a/kubejs/startup_scripts/minecraft/constants.js +++ b/kubejs/startup_scripts/minecraft/constants.js @@ -743,6 +743,9 @@ global.MINECRAFT_HIDED_ITEMS = [ 'minecraft:oxidized_cut_copper_stairs', 'minecraft:oxidized_cut_copper_slab',*/ + 'minecraft:crimson_fungus', + 'minecraft:warped_fungus', + "minecraft:raw_iron_block", "minecraft:raw_copper_block", "minecraft:raw_gold_block" diff --git a/kubejs/startup_scripts/minecraft/modifications.js b/kubejs/startup_scripts/minecraft/modifications.js index 63c56c360..d462a397a 100644 --- a/kubejs/startup_scripts/minecraft/modifications.js +++ b/kubejs/startup_scripts/minecraft/modifications.js @@ -18,6 +18,13 @@ function registerMinecraftItemModifications(event) { } }) + event.modify('minecraft:popped_chorus_fruit', item => { + item.foodProperties = food => { + food.hunger(2) + food.saturation(1) + } + }) + event.modify('minecraft:elytra', item => { item.maxDamage = 2046 }) diff --git a/kubejs/startup_scripts/sacksnsuch/constants.js b/kubejs/startup_scripts/sacksnsuch/constants.js new file mode 100644 index 000000000..082ed5400 --- /dev/null +++ b/kubejs/startup_scripts/sacksnsuch/constants.js @@ -0,0 +1,11 @@ +// priority: 0 +"use strict"; + + +global.SNS_DISABLED_ITEMS = [ + + 'sns:mob_net', + 'sns:lunchbox' + +]; + diff --git a/kubejs/startup_scripts/soulbind/constants.js b/kubejs/startup_scripts/soulbind/constants.js new file mode 100644 index 000000000..b332e784c --- /dev/null +++ b/kubejs/startup_scripts/soulbind/constants.js @@ -0,0 +1,11 @@ +global.SOULBINDABLE_ITEMS = [ + { equipment: 'ad_astra:space_helmet', item: 'endermanoverhaul:soul_pearl' }, + { equipment: 'ad_astra:space_suit', item: 'endermanoverhaul:soul_pearl' }, + { equipment: 'ad_astra:space_pants', item: 'endermanoverhaul:soul_pearl' }, + { equipment: 'ad_astra:space_boots', item: 'endermanoverhaul:soul_pearl' }, + + { equipment: 'ad_astra:netherite_space_helmet', item: 'sandworm_mod:sandworm_tooth' }, + { equipment: 'ad_astra:netherite_space_suit', item: 'sandworm_mod:sandworm_tooth' }, + { equipment: 'ad_astra:netherite_space_pants', item: 'sandworm_mod:sandworm_tooth' }, + { equipment: 'ad_astra:netherite_space_boots', item: 'sandworm_mod:sandworm_tooth' }, +] \ No newline at end of file diff --git a/kubejs/startup_scripts/species/constants.js b/kubejs/startup_scripts/species/constants.js index 711a5db52..d37c205d2 100644 --- a/kubejs/startup_scripts/species/constants.js +++ b/kubejs/startup_scripts/species/constants.js @@ -34,7 +34,6 @@ global.SPECIES_DISABLED_ITEMS = [ 'species:ricoshield', 'species:smoke_bomb', 'species:wicked_dope', - 'species:cracked_wraptor_egg', 'species:monster_meal', 'species:wicked_treat', 'species:ghoul_tongue', diff --git a/kubejs/startup_scripts/tfc/constants.js b/kubejs/startup_scripts/tfc/constants.js index 2f8c73dff..85ff1b4bd 100644 --- a/kubejs/startup_scripts/tfc/constants.js +++ b/kubejs/startup_scripts/tfc/constants.js @@ -1035,6 +1035,8 @@ global.TFC_GREENHOUSE_VEGETABLE_RECIPE_COMPONENTS = [ { input: '8x tfc:seeds/yellow_bell_pepper', fluid_amount: 4000, output: '24x tfc:food/yellow_bell_pepper', name: 'yellow_bell_pepper' }, { input: '8x tfg:sunflower_seeds', fluid_amount: 4000, output: '24x tfg:sunflower_product', name: 'sunflower' }, { input: '8x tfg:rapeseed_seeds', fluid_amount: 4000, output: '24x tfg:rapeseed_product', name: 'rapeseed' }, + { input: '8x tfg:flax_seeds', fluid_amount: 4000, output: '24x tfg:flax_product', name: 'flax' } + ]; global.TFC_GREENHOUSE_BERRY_RECIPE_COMPONENTS = [ diff --git a/kubejs/startup_scripts/tfc/register_climates.js b/kubejs/startup_scripts/tfc/register_climates.js index 3b06bc2b2..ec0317c87 100644 --- a/kubejs/startup_scripts/tfc/register_climates.js +++ b/kubejs/startup_scripts/tfc/register_climates.js @@ -162,7 +162,7 @@ TFCEvents.registerClimateModel(event => { // irl mars' poles have a snowfall of 0.13mm but that's barely noticeable here. // Use a negative rainfall to stop it snowing closer to the equator. TFC clamps negatives to zero so it's fine - return calcAverage(pos.z, 10000, 13, -25) + return calcAverage(pos.x, 10000, 13, -25) }) builder.setAirFog((level, pos, calendarTicks) => 0) diff --git a/kubejs/startup_scripts/tfg/blocks.js b/kubejs/startup_scripts/tfg/blocks.js index 8da674a2a..3b0cb3d21 100644 --- a/kubejs/startup_scripts/tfg/blocks.js +++ b/kubejs/startup_scripts/tfg/blocks.js @@ -32,21 +32,6 @@ const registerTFGBlocks = (event) => { .particleCount(2) .particleForced(false) - event.create('tfg:spice', 'tfg:particle_emitter') - .textureAll('tfg:block/sand_spice') - .soundType('sand') - .hardness(1) - .resistance(1) - .unbreakable() - .tagBlock('tfcambiental:hot_stuff') - .lightLevel(0.1) - .mapColor('color_white') - .particleOffset(0, 2, 0) - .particleVelocity(0.05, 0, 0.05) - .particle('electric_spark') - .particleCount(3) - .particleForced(false) - // #region Machine Casings global.TFG_MACHINE_CASINGS.forEach(type => { @@ -73,7 +58,7 @@ const registerTFGBlocks = (event) => { event.create('tfg:casings/machine_casing_vacuum_engine_intake', 'gtceu:active') .simple('tfg:block/casings/machine_casing_vacuum_engine_intake') - .translationKey(`block.tfg.casings.machine_casing_vacuum_engine_intake`) + .translationKey('block.tfg.casings.machine_casing_vacuum_engine_intake') .soundType('metal') .resistance(6).hardness(5) .tagBlock('mineable/pickaxe') @@ -81,6 +66,57 @@ const registerTFGBlocks = (event) => { .requiresTool(true) .mapColor('color_light_gray') + event.create('tfg:casings/machine_casing_bioculture') + .translationKey('block.tfg.casings.machine_casing_bioculture') + .model('tfg:block/casings/machine_casing_bioculture') + .soundType('copper') + .hardness(5) + .resistance(6) + .tagBlock('minecraft:mineable/pickaxe') + .tagBlock('minecraft:mineable/wrench') + .mapColor('color_red') + + event.create('tfg:casings/machine_casing_bioculture_glass') + .translationKey('block.tfg.casings.machine_casing_bioculture_glass') + .model('tfg:block/casings/machine_casing_bioculture_glass') + .soundType('glass') + .hardness(5) + .resistance(6) + .tagBlock('minecraft:mineable/pickaxe') + .tagBlock('minecraft:mineable/wrench') + .mapColor('color_orange') + .defaultTranslucent() + + event.create('tfg:casings/bioculture_rotor_primary', 'gtceu:active') + .translationKey('block.tfg.casings.bioculture_rotor_primary') + .model('tfg:block/casings/bioculture_rotor_primary') + .soundType('copper') + .hardness(5) + .resistance(6) + .tagBlock('minecraft:mineable/pickaxe') + .tagBlock('minecraft:mineable/wrench') + .mapColor('color_light_gray') + + event.create('tfg:casings/bioculture_rotor_secondary', 'gtceu:active') + .translationKey('block.tfg.casings.bioculture_rotor_secondary') + .model('tfg:block/casings/bioculture_rotor_secondary') + .soundType('copper') + .hardness(5) + .resistance(6) + .tagBlock('minecraft:mineable/pickaxe') + .tagBlock('minecraft:mineable/wrench') + .mapColor('color_light_gray') + + event.create('tfg:casings/machine_casing_ultraviolet', 'gtceu:active') + .translationKey('block.tfg.casings.machine_casing_ultraviolet') + .bloom('tfg:block/casings/machine_casing_ultraviolet') + .soundType('glass') + .hardness(5) + .resistance(6) + .tagBlock('minecraft:mineable/pickaxe') + .tagBlock('minecraft:mineable/wrench') + .mapColor('color_light_gray') + //#endregion // #region Decorative vases diff --git a/kubejs/startup_scripts/tfg/blocks.nether.js b/kubejs/startup_scripts/tfg/blocks.nether.js index 91bdef011..a63cafe7d 100644 --- a/kubejs/startup_scripts/tfg/blocks.nether.js +++ b/kubejs/startup_scripts/tfg/blocks.nether.js @@ -47,16 +47,28 @@ function registerTFGNetherBlocks(event) { .opaque(true) event.create('tfg:spike/dripstone_spike', 'tfc:rock_spike') + .textureAll('minecraft:block/dripstone_block') .soundType('dripstone_block') - .noItem() + .hardness(0.8) + .resistance(0.8) + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') event.create('tfg:spike/deepslate_spike', 'tfc:rock_spike') + .textureAll('minecraft:block/deepslate') .soundType('deepslate') - .noItem() + .hardness(0.8) + .resistance(0.8) + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') event.create('tfg:spike/blackstone_spike', 'tfc:rock_spike') + .textureAll('minecraft:block/blackstone') .stoneSoundType() - .noItem() + .hardness(0.8) + .resistance(0.8) + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') event.create('tfg:loose/deepslate', 'tfc:loose_rock') .itemTexture('tfg:item/loose/deepslate') diff --git a/kubejs/startup_scripts/tfg/blocks.plants.js b/kubejs/startup_scripts/tfg/blocks.plants.js index 0e1b496aa..130ebc1bc 100644 --- a/kubejs/startup_scripts/tfg/blocks.plants.js +++ b/kubejs/startup_scripts/tfg/blocks.plants.js @@ -59,6 +59,39 @@ const registerTFGCrops = (event) => { .tagBoth('tfc:wild_crops') .tagBlock('minecraft:mineable/hoe') .tagItem('c:hidden_from_recipe_viewers') + + event.create('tfg:flax', 'tfc:double_crop') + .translationKey('block.tfg.flax') + .soundType('crop') + .nutrient('nitrogen') + .stages(5) + .doubleStages(3) + .hardness(0.4) + .growthModifier(1.2) + .expiryModifier(1.2) + .tagBlock('minecraft:mineable/hoe') + .productItem(product => { + product.texture('tfg:item/flax_product') + product.tag('tfc:scrapable') + }) + .seedItem(seed => { + seed.texture('tfg:item/flax_seed') + }) + .deadBlock(dead => { + dead.hardness(0.2) + dead.soundType('crop') + dead.tagBlock('minecraft:mineable/hoe') + }) + + event.create('tfg:flax_wild', 'tfc:wild_crop') + .type('double') + .soundType('crop') + .seeds('tfg:flax_seeds') + .food('tfg:flax_product') + .hardness(0.2) + .tagBoth('tfc:wild_crops') + .tagBlock('minecraft:mineable/hoe') + .tagItem('c:hidden_from_recipe_viewers') // Mars Crops @@ -256,30 +289,43 @@ const registerTFGCrops = (event) => { event.create('tfg:saplings/crimson', 'tfc:sapling') .features('tfg:mars/tree/crimson') - .translationKey('minecraft.block.crimson_fungus') + .tagBlock('tfg:do_not_destroy_in_space') .growthDays(6) + .soundType('nether_wart') + .defaultCutout() event.create('tfg:saplings/warped', 'tfc:sapling') .features('tfg:mars/tree/warped') - .translationKey('minecraft.block.warped_fungus') + .tagBlock('tfg:do_not_destroy_in_space') .growthDays(6) + .soundType('nether_wart') + .defaultCutout() event.create('tfg:saplings/alphacene', 'tfc:sapling') .features('species:alphacene_mushroom') - .translationKey('species.block.alphacene_mushroom') + .tagBlock('tfg:do_not_destroy_in_space') .growthDays(3) + .soundType('nether_wart') + .defaultCutout() event.create('tfg:saplings/strophar', 'tfc:sapling') .features('tfg:mars/tree/strophar') - .translationKey('ad_astra.block.strophar_mushroom') + .tagBlock('tfg:do_not_destroy_in_space') .growthDays(7) + .soundType('nether_wart') + .defaultCutout() event.create('tfg:saplings/aeronos', 'tfc:sapling') .features('tfg:mars/tree/aeronos') - .translationKey('ad_astra.block.strophar_mushroom') + .tagBlock('tfg:do_not_destroy_in_space') .growthDays(9) + .soundType('nether_wart') + .defaultCutout() event.create('tfg:saplings/glacian', 'tfc:sapling') .features('tfg:mars/tree/glacian') + .tagBlock('tfg:do_not_destroy_in_space') .growthDays(9) + .soundType('nether_wart') + .defaultCutout() } \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/blocks.space.js b/kubejs/startup_scripts/tfg/blocks.space.js index 483a55578..cfcf8a0cc 100644 --- a/kubejs/startup_scripts/tfg/blocks.space.js +++ b/kubejs/startup_scripts/tfg/blocks.space.js @@ -217,36 +217,68 @@ function registerTFGSpaceBlocks(event) { // Spikes event.create('tfg:spike/moon_stone_spike', 'tfc:rock_spike') + .textureAll('ad_astra:block/moon_stone') .stoneSoundType() - .noItem() + .hardness(0.8) + .resistance(0.8) + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') event.create('tfg:spike/moon_deepslate_spike', 'tfc:rock_spike') + .textureAll('ad_astra:block/moon_deepslate') .soundType('deepslate') - .noItem() + .hardness(0.8) + .resistance(0.8) + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') event.create('tfg:spike/mars_stone_spike', 'tfc:rock_spike') + .textureAll('ad_astra:block/mars_stone') .stoneSoundType() - .noItem() + .hardness(0.8) + .resistance(0.8) + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') event.create('tfg:spike/venus_stone_spike', 'tfc:rock_spike') + .textureAll('ad_astra:block/venus_stone') .stoneSoundType() - .noItem() + .hardness(0.8) + .resistance(0.8) + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') event.create('tfg:spike/mercury_stone_spike', 'tfc:rock_spike') + .textureAll('ad_astra:block/mercury_stone') .stoneSoundType() - .noItem() + .hardness(0.8) + .resistance(0.8) + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') event.create('tfg:spike/glacio_stone_spike', 'tfc:rock_spike') + .textureAll('ad_astra:block/glacio_stone') .stoneSoundType() - .noItem() + .hardness(0.8) + .resistance(0.8) + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') event.create('tfg:spike/permafrost_spike', 'tfc:rock_spike') + .textureAll('ad_astra:block/permafrost') .stoneSoundType() - .noItem() + .hardness(0.8) + .resistance(0.8) + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') event.create('tfg:spike/red_granite_spike', 'tfc:rock_spike') + .textureAll('gtceu:block/stones/red_granite/stone') .stoneSoundType() - .noItem() + .hardness(0.8) + .resistance(0.8) + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') // #region Plants @@ -265,7 +297,8 @@ function registerTFGSpaceBlocks(event) { .tagItem('tfg:moon_plants') .tagBlock('minecraft:replaceable') - event.create('tfg:corallium_arenicolus_0', 'tfg:double_decorative_plant') + event.create('tfg:corallium_arenicolus_0', 'tfg:tall_decorative_plant') + .height(2) .soundType('nether_wart') .tagItem('tfg:venus_plants') .lightLevel(0.4) @@ -331,6 +364,141 @@ function registerTFGSpaceBlocks(event) { // #endregion + // #region Mars Blocks + + event.create('tfg:spice', 'tfg:particle_emitter') + .textureAll('tfg:block/sand_spice') + .soundType('sand') + .hardness(2) + .resistance(6) + // makes it invisible on xaeros, so people can't use it to find the deposits :) + .mapColor('none') + .particleOffset(0.3, 1.5, 0.3) + .particleVelocity(0, 0.05, 0) + .particle('electric_spark') + .particleCount(2) + .particleForced(false) + .fullBlock(true) + .opaque(true) + + event.create('tfg:grass/amber_clay_mycelium') + .property(BlockProperties.SNOWY) + .soundType('wart_block') + .requiresTool(false) + .mapColor('terracotta_yellow') + .tagBlock('minecraft:mineable/shovel') + .tagBoth('tfc:dirt') + .fullBlock(true) + .opaque(true) + + event.create('tfg:grass/amber_kaolin_mycelium') + .property(BlockProperties.SNOWY) + .soundType('wart_block') + .requiresTool(false) + .mapColor('terracotta_yellow') + .tagBlock('minecraft:mineable/shovel') + .tagBoth('tfc:kaolin_clay') + .fullBlock(true) + .opaque(true) + + event.create('tfg:grass/rusticus_clay_mycelium') + .property(BlockProperties.SNOWY) + .soundType('wart_block') + .requiresTool(false) + .mapColor('terracotta_orange') + .tagBlock('minecraft:mineable/shovel') + .tagBoth('tfc:dirt') + .fullBlock(true) + .opaque(true) + + event.create('tfg:grass/rusticus_kaolin_mycelium') + .property(BlockProperties.SNOWY) + .soundType('wart_block') + .requiresTool(false) + .mapColor('terracotta_orange') + .tagBlock('minecraft:mineable/shovel') + .tagBoth('tfc:kaolin_clay') + .fullBlock(true) + .opaque(true) + + event.create('tfg:grass/sangnum_clay_mycelium') + .property(BlockProperties.SNOWY) + .soundType('wart_block') + .requiresTool(false) + .mapColor('terracotta_red') + .tagBlock('minecraft:mineable/shovel') + .tagBoth('tfc:dirt') + .fullBlock(true) + .opaque(true) + + event.create('tfg:grass/sangnum_kaolin_mycelium') + .property(BlockProperties.SNOWY) + .soundType('wart_block') + .requiresTool(false) + .mapColor('terracotta_red') + .tagBlock('minecraft:mineable/shovel') + .tagBoth('tfc:kaolin_clay') + .fullBlock(true) + .opaque(true) + + event.create('tfg:grass/mars_clay_dirt') + .property(BlockProperties.SNOWY) + .soundType('gravel') + .requiresTool(false) + .mapColor('dirt') + .tagBlock('minecraft:mineable/shovel') + .tagBoth('tfc:dirt') + .fullBlock(true) + .opaque(true) + + event.create('tfg:groundcover/glider_feather', 'tfc:ground_cover') + .box(4, 0, 4, 12, 2, 12) + .soundType('wool') + .groundCoverModelShape('feather') + .withPreexistingItem('wan_ancient_beasts:glider_feather') + .textureAll('wan_ancient_beasts:item/glider_feather') + + event.create('tfg:groundcover/wraptor_feather', 'tfc:ground_cover') + .box(4, 0, 4, 12, 2, 12) + .soundType('wool') + .groundCoverModelShape('feather') + .withPreexistingItem('minecraft:feather') + .textureAll('tfg:item/wraptor_wool') + + event.create('tfg:groundcover/aeronos_stick', 'tfc:ground_cover') + .box(3, 0, 3, 13, 3, 13) + .groundCoverModelShape('twig') + .withPreexistingItem('tfg:twigs/aeronos') + .texture('particle', 'ad_astra:block/aeronos_stem') + .texture('all', 'ad_astra:block/aeronos_stem') + .texture('top', 'ad_astra:block/aeronos_stem_inside') + + event.create('tfg:groundcover/strophar_stick', 'tfc:ground_cover') + .box(3, 0, 3, 13, 3, 13) + .groundCoverModelShape('twig') + .withPreexistingItem('tfg:twigs/strophar') + .texture('particle', 'ad_astra:block/strophar_stem') + .texture('all', 'ad_astra:block/strophar_stem') + .texture('top', 'ad_astra:block/strophar_stem_inside') + + event.create('tfg:groundcover/glacian_stick', 'tfc:ground_cover') + .box(3, 0, 3, 13, 3, 13) + .groundCoverModelShape('twig') + .withPreexistingItem('tfg:twigs/glacian') + .texture('particle', 'ad_astra:block/glacian_log') + .texture('all', 'ad_astra:block/glacian_log') + .texture('top', 'ad_astra:block/glacian_log_top') + + event.create('tfg:groundcover/alphacene_stick', 'tfc:ground_cover') + .box(3, 0, 3, 13, 3, 13) + .groundCoverModelShape('twig') + .withPreexistingItem('tfg:twigs/alphacene') + .texture('particle', 'species:block/alphacene_mushroom_block') + .texture('all', 'species:block/alphacene_mushroom_block') + .texture('top', 'minecraft:block/mushroom_stem') + + // #endregion + //#region Venus Blocks //Fluorapatite const fluorapatite_colors = ['blue', 'green', 'brown', 'orange', 'white', 'yellow']; diff --git a/kubejs/startup_scripts/tfg/constants.js b/kubejs/startup_scripts/tfg/constants.js index ae065b09d..4a7f24965 100644 --- a/kubejs/startup_scripts/tfg/constants.js +++ b/kubejs/startup_scripts/tfg/constants.js @@ -85,16 +85,17 @@ global.MOON_BIOMES = [ * @type {string[]} - Biome IDs */ global.MARS_BIOMES = [ - 'tfg:mars/martian_oasis', 'tfg:mars/martian_deep_desert', 'tfg:mars/martian_dunes', 'tfg:mars/martian_dune_edge', 'tfg:mars/martian_river', - 'tfg:mars/martian_riverbed', + 'tfg:mars/amber_edge', 'tfg:mars/amber_plains', 'tfg:mars/amber_hills', + 'tfg:mars/rusticus_edge', 'tfg:mars/rusticus_plains', 'tfg:mars/rusticus_hills', + 'tfg:mars/sangnum_edge', 'tfg:mars/sangnum_plains', 'tfg:mars/sangnum_hills', 'tfg:mars/martian_mountains' @@ -165,3 +166,23 @@ global.FOOD_FRUIT = [ {name: 'blossom_berry', id: 'betterend:blossom_berry_product', saturation: 1, water: 7.5, fruit: 1.5, decay: 2 }, {name: 'shadow_berry', id: 'betterend:shadow_berry_cooked', saturation: 1, water: 5, fruit: 1.5, decay: 2 } ]; + +global.COOLING_FOODS = [ + 'firmalife:food/vanilla_ice_cream', + 'firmalife:food/chocolate_ice_cream', + 'firmalife:food/strawberry_ice_cream', + 'firmalife:food/cookie_dough_ice_cream', + 'firmalife:food/banana_split' +]; + +global.COOLING_FOODS_STRONG = [ + 'tfg:ice_soup' +]; + +global.WARMING_FOODS = [ + 'tfc:food/grain_soup', + 'tfc:food/fruit_soup', + 'tfc:food/vegetables_soup', + 'tfc:food/protein_soup', + 'tfc:food/dairy_soup' +]; \ 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 58563747a..b000b4ed0 100644 --- a/kubejs/startup_scripts/tfg/items.food.js +++ b/kubejs/startup_scripts/tfg/items.food.js @@ -239,7 +239,8 @@ function registerTFGFoodItems(event) { event.create('tfg:food/ice_soup') .translationKey('item.tfg.food.ice_soup') .texture('tfg:item/food/ice_soup') - .food(food => food.eaten(ctx => { + .food(food => food.effect('tfg:cooling', 100, 0, 1) + .eaten(ctx => { ctx.player.give('tfc:ceramic/bowl') })) // intentionally not tagged as food diff --git a/kubejs/startup_scripts/tfg/items.js b/kubejs/startup_scripts/tfg/items.js index b314a0370..32a12587d 100644 --- a/kubejs/startup_scripts/tfg/items.js +++ b/kubejs/startup_scripts/tfg/items.js @@ -45,22 +45,22 @@ const registerTFGItems = (event) => { event.create('tfg:soaked_unrefined_paper') .translationKey('item.tfg.soaked_unrefined_paper') - + event.create('tfg:terra_firma_greg') .translationKey('item.tfg.terra_firma_greg') .tag('c:hidden_from_recipe_viewers') - + //#region chalk creation event.create('tfg:unfired_chalk') .translationKey('item.tfg.unfired_chalk') Color.DYE.forEach((dyeName, dye) => { event.create(`tfg:wet_${dyeName}_chalk`) - .translationKey(`item.tfg.wet_${dyeName}_chalk`) - .textureJson({ - layer0: 'tfg:item/unfired_chalk' - }) - .color(0, dye.getHexJS()); + .translationKey(`item.tfg.wet_${dyeName}_chalk`) + .textureJson({ + layer0: 'tfg:item/unfired_chalk' + }) + .color(0, dye.getHexJS()); }); //#endregion @@ -137,7 +137,7 @@ const registerTFGItems = (event) => { event.create(`tfg:antipoison_tablet`) .translationKey(`item.tfg.antipoison_tablet`) - .tooltip(`§9Cures All Harmful Effects`) + .tooltip(`§9Cures All Harmful Effects`) //salvos @@ -175,6 +175,21 @@ const registerTFGItems = (event) => { event.create('tfg:foil_pack') event.create('tfg:clean_foil_pack') event.create('tfg:flint_club_head') + event.create('tfg:uv_led') + event.create('tfg:smd_uv_led') + + event.create('tfg:twigs/strophar') + .tag('tfc:twigs') + .texture('tfg:item/wood/twig/strophar') + event.create('tfg:twigs/aeronos') + .tag('tfc:twigs') + .texture('tfg:item/wood/twig/aeronos') + event.create('tfg:twigs/glacian') + .tag('tfc:twigs') + .texture('tfg:item/wood/twig/glacian') + event.create('tfg:twigs/alphacene') + .tag('tfc:twigs') + .texture('tfg:item/wood/twig/alphacene') //#endregion //#region Cloth & String @@ -274,10 +289,10 @@ const registerTFGItems = (event) => { event.create('tfg:airship_balloon') .translationKey('item.tfg.airship_balloon') - + event.create('tfg:lv_aircraft_engine') .translationKey('item.tfg.lv_aircraft_engine') - + event.create('tfg:hv_aircraft_engine') .translationKey('item.tfg.hv_aircraft_engine') @@ -313,14 +328,14 @@ const registerTFGItems = (event) => { event.create('tfg:aluminium_hull_reinforcement') .translationKey('item.tfg.aluminium_hull_reinforcement') - + event.create('tfg:stainless_steel_hull_reinforcement') .translationKey('item.tfg.stainless_steel_hull_reinforcement') event.create('tfg:titanium_hull_reinforcement') .translationKey('item.tfg.titanium_hull_reinforcement') //#endregion - + //Tacz Helper Region event.create('tfg:flintlock_mechanism') .translationKey('item.tfg.flintlock_mechanism') @@ -338,7 +353,7 @@ const registerTFGItems = (event) => { event.create('tfg:nitrocellulose') .translationKey('tfg:nitrocellulose') //endregion - + //Tier2 Insulation event.create('tfg:aes_wool') .translationKey('tfg:aes_wool') @@ -349,25 +364,24 @@ const registerTFGItems = (event) => { event.create('tfg:aes_insulation_roll') .translationKey('tfg:aes_insulation_roll') //endregion - + //Tier 2 Rocket Parts event.create('tfg:rocket_fin_t2') event.create('tfg:rocket_cone_t2') //endregion - + //Tier 3 Insulation event.create('tfg:aes_polyurethane') event.create('tfg:mli_shielding') event.create('tfg:silica_aerogel') //endregion - + //Tier 3 Rocket Parts event.create('tfg:rocket_fin_t3') event.create('tfg:rocket_cone_t3') event.create('tfg:elite_power_thruster') - + event.create('tfg:better_space_suit_fabric') - event.create('tfg:glacian_wool') //endregion //#region Universal compost items @@ -388,7 +402,27 @@ const registerTFGItems = (event) => { event.create('tfg:photo_cell_t1') .translationKey("item.tfg.basic.photovoltaic.cell") .texture('tfg:item/photo_cell_t1') - //#endregion - + + //#region Mars Animals + event.create('tfg:wraptor_sugar') + .tag('tfg:sugars') + .tag('tfg:haste_ingredients') + .tag('tfc:sweetener') + //#endregion + + //#region Flax Stuff + event.create('tfg:flax_waste') + .tag('tfc:scrapable') + event.create('tfg:flax_tow') + .tag('tfg:burlap_fiber') + .tag('tfc:compost_browns') + event.create('tfg:flax_line') + .tag('tfc:compost_browns_low') + event.create('tfg:linen_thread') + .tag('forge:string') + event.create('tfg:linen_cloth') + .tag('forge:cloth') + .tag('tfc:sewing_light_cloth') + } diff --git a/kubejs/startup_scripts/tfg/materials.nuclear.js b/kubejs/startup_scripts/tfg/materials.nuclear.js index 2adc6678d..8f0cc5ffe 100644 --- a/kubejs/startup_scripts/tfg/materials.nuclear.js +++ b/kubejs/startup_scripts/tfg/materials.nuclear.js @@ -47,14 +47,20 @@ const registerTFGNuclearMaterials = (event) => { .flags( GTMaterialFlags.DISABLE_DECOMPOSITION) - event.create('heavy_water') - .fluid() + event.create('tfg:heavy_water') + .liquid(new GTFluidBuilder().temperature(236)) .components('2x deuterium', '1x oxygen') - .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) .iconSet(GTMaterialIconSet.FINE) .color(0xB5B9FF) .secondaryColor(0x81FFF9) + event.create('tfg:semiheavy_water') + .liquid(new GTFluidBuilder().temperature(213)) + .components('1x deuterium','1x hydrogen', '1x oxygen') + .iconSet(GTMaterialIconSet.FINE) + .color(0xb5ffff) + .secondaryColor(0x81FFF9) + event.create('uranium_waste') .liquid(new GTFluidBuilder().customStill().temperature(3850)) .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) diff --git a/pakku-lock.json b/pakku-lock.json index b8829535e..02c97b579 100644 --- a/pakku-lock.json +++ b/pakku-lock.json @@ -7,6 +7,69 @@ "forge": "47.4.6" }, "projects": [ + { + "pakku_id": "6k7DoFyO7bpHnhyk", + "type": "MOD", + "side": "CLIENT", + "slug": { + "curseforge": "aaa-particles", + "modrinth": "aaa-particles" + }, + "name": { + "curseforge": "AAA Particles", + "modrinth": "AAA Particles" + }, + "id": { + "curseforge": "979809", + "modrinth": "En8uHTOK" + }, + "files": [ + { + "type": "curseforge", + "file_name": "aaa_particles-1.20.1-1.4.11-forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6616/719/aaa_particles-1.20.1-1.4.11-forge.jar", + "id": "6616719", + "parent_id": "979809", + "hashes": { + "sha1": "e046caeff220722933cb82097a62412d902f6002", + "md5": "41e2e1bbd89f858b35f280858857323f" + }, + "required_dependencies": [], + "size": 5255759, + "date_published": "2025-06-05T09:17:54.350Z" + }, + { + "type": "modrinth", + "file_name": "aaa_particles-1.20.1-1.4.11-forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/En8uHTOK/versions/heNkI8gU/aaa_particles-1.20.1-1.4.11-forge.jar", + "id": "heNkI8gU", + "parent_id": "En8uHTOK", + "hashes": { + "sha512": "7d0df9076d1871338556165be8ee3feadfb8e09ab7315ab2726c398f8351ea5e3e0d1907caae2aa9afa5443d9e6ef71d139590887ee0a670a0e4de11dfa0e17b", + "sha1": "e046caeff220722933cb82097a62412d902f6002" + }, + "required_dependencies": [], + "size": 5255759, + "date_published": "2025-06-05T09:23:07.127326Z" + } + ] + }, { "pakku_id": "v1XVLzfV3EJPc5ke", "pakku_links": [ @@ -347,31 +410,9 @@ "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", + "file_name": "adaptive_performance_tweaks_core_1.20.1-11.5.0.jar", "mc_versions": [ "1.20.1" ], @@ -380,16 +421,38 @@ "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", + "url": "https://cdn.modrinth.com/data/L5xaBiBb/versions/W5qP6P9L/adaptive_performance_tweaks_core_1.20.1-11.5.0.jar", + "id": "W5qP6P9L", "parent_id": "L5xaBiBb", "hashes": { - "sha512": "c06ea3d4584447debb6d613e7722817c5bdc5d69b6bcc06482d1661ffb01c2d893a1c3bba0c3423a9e7861268e9e0ccec8b283643e1aea6a733d2420aa9fdc70", - "sha1": "297e77d462ab9097be985276fc2bba0169d240fe" + "sha512": "331f03dd3c35404ec1f8e0dc99bd3b8ba0f019d4165462033e2924ca4e23ffa966161ddee239b43466f876163dbe194a69f3a404b24cf4045c14edff80b7bde8", + "sha1": "5bde863758963b34de37f7c20d58856106328990" }, "required_dependencies": [], - "size": 109763, - "date_published": "2024-10-15T20:02:38.559474Z" + "size": 110646, + "date_published": "2025-08-28T21:50:31.543050Z" + }, + { + "type": "curseforge", + "file_name": "adaptive_performance_tweaks_core_1.20.1-11.5.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6939/58/adaptive_performance_tweaks_core_1.20.1-11.5.0.jar", + "id": "6939058", + "parent_id": "561087", + "hashes": { + "sha1": "eec168ef1210e1056f6aad6a3a9d7904f414bbdc", + "md5": "8db99b66a8cdfedf664d3cebfc04da8e" + }, + "required_dependencies": [], + "size": 110646, + "date_published": "2025-08-28T21:51:06.840Z" } ] }, @@ -412,34 +475,11 @@ "curseforge": "561137", "modrinth": "Rd89yO7d" }, + "redistributable": false, "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", + "file_name": "adaptive_performance_tweaks_gamerules_1.20.1-11.5.0.jar", "mc_versions": [ "1.20.1" ], @@ -448,18 +488,42 @@ "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", + "url": "https://cdn.modrinth.com/data/Rd89yO7d/versions/bVOTOwjF/adaptive_performance_tweaks_gamerules_1.20.1-11.5.0.jar", + "id": "bVOTOwjF", "parent_id": "Rd89yO7d", "hashes": { - "sha512": "f5091cb68956b1e1cd3946a4cc4f547a3cb8860b6d64a475871d7ef80a45f91f2878e2553fffd3113839b96955535b780ca229b4ceadfd6a2cb8e828ac22be23", - "sha1": "984a6212f00ab531548bc0f8428e02296b96529a" + "sha512": "2d5d72233bf64077765010651289d660bbbe2f841ba79c0c55390c2e5b6859c58a3efec7e57221690a9a33c2b932c8988c63e3c90975a06da40a11e27301129c", + "sha1": "676918dbc92e61bbccb7057ed1f60b653cef9788" }, "required_dependencies": [ "L5xaBiBb" ], - "size": 64938, - "date_published": "2024-10-15T20:02:44.784722Z" + "size": 64939, + "date_published": "2025-08-28T21:50:36.242341Z" + }, + { + "type": "curseforge", + "file_name": "adaptive_performance_tweaks_gamerules_1.20.1-11.5.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6939/059/adaptive_performance_tweaks_gamerules_1.20.1-11.5.0.jar", + "id": "6939059", + "parent_id": "561137", + "hashes": { + "sha1": "b29644ff148456224014597833fd4894e683ab95", + "md5": "1abd1894c64e96dadab65a2ff868b4b0" + }, + "required_dependencies": [ + "561087" + ], + "size": 64939, + "date_published": "2025-08-28T21:51:09.583Z" } ] }, @@ -482,34 +546,11 @@ "curseforge": "561439", "modrinth": "z3TjJLQ0" }, + "redistributable": false, "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", + "file_name": "adaptive_performance_tweaks_items_1.20.1-11.5.0.jar", "mc_versions": [ "1.20.1" ], @@ -518,18 +559,42 @@ "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", + "url": "https://cdn.modrinth.com/data/z3TjJLQ0/versions/EkO6vEVt/adaptive_performance_tweaks_items_1.20.1-11.5.0.jar", + "id": "EkO6vEVt", "parent_id": "z3TjJLQ0", "hashes": { - "sha512": "e989fa7de9e1647d3f9ca2ff02ea3ca0e222a75940d1559ccd699af39df9b57f8d5903f54304492ba93549f1aed1efd6e44bfd0226bcd9aa7655c23d2ec14a46", - "sha1": "1753a360b3011c9ab098677f4321727420d92a1d" + "sha512": "633e8077a9b4f568b9747c9b7cf1ac8d37ce39cd4516b2debfff6491508a43236a0f8a3ba7e2a4a882d5f2158ac8c6ea6b669dcf036bb5de6f4bf32da8e4f7dc", + "sha1": "773f2a13db5f7900ff760a567678a4021fafc7bb" }, "required_dependencies": [ "L5xaBiBb" ], - "size": 71935, - "date_published": "2024-10-15T20:02:50.684809Z" + "size": 72693, + "date_published": "2025-08-28T21:50:41.299543Z" + }, + { + "type": "curseforge", + "file_name": "adaptive_performance_tweaks_items_1.20.1-11.5.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6939/060/adaptive_performance_tweaks_items_1.20.1-11.5.0.jar", + "id": "6939060", + "parent_id": "561439", + "hashes": { + "sha1": "e70242b4b8fe82b6a5af786fe1e02f06bd354e50", + "md5": "222f625ea9ae1311b220eb458c4aa97b" + }, + "required_dependencies": [ + "561087" + ], + "size": 72694, + "date_published": "2025-08-28T21:51:11.257Z" } ] }, @@ -552,34 +617,11 @@ "curseforge": "563963", "modrinth": "jr5nzfKv" }, + "redistributable": false, "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", + "file_name": "adaptive_performance_tweaks_player_1.20.1-11.5.0.jar", "mc_versions": [ "1.20.1" ], @@ -588,18 +630,42 @@ "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", + "url": "https://cdn.modrinth.com/data/jr5nzfKv/versions/xq3WmGui/adaptive_performance_tweaks_player_1.20.1-11.5.0.jar", + "id": "xq3WmGui", "parent_id": "jr5nzfKv", "hashes": { - "sha512": "d0fa9d4a53b4aeb3dedab197343c4e5a58611a2911d9e86ae8014b3995368965f500d641b676bcecf99f472c4184634b15d771cce2f204a94d1d27c9a51087f9", - "sha1": "75f447183ec60d33d9c8b87dcc5c687d24424c58" + "sha512": "cf06eab3cfac5d10fe927adf36b328309e07866aa57b598f27a71295d915ca8459614835b3bf0791327f1501f6cbae0d28b0d15fd25893a8a2ddcd24a154b9d4", + "sha1": "5bcad2d5e2366a91115dfaa39ce60a2dbb6fd9d7" }, "required_dependencies": [ "L5xaBiBb" ], - "size": 66272, - "date_published": "2024-10-15T20:02:56.584235Z" + "size": 66273, + "date_published": "2025-08-28T21:50:46.161072Z" + }, + { + "type": "curseforge", + "file_name": "adaptive_performance_tweaks_player_1.20.1-11.5.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6939/061/adaptive_performance_tweaks_player_1.20.1-11.5.0.jar", + "id": "6939061", + "parent_id": "563963", + "hashes": { + "sha1": "1d571233979de03bd0a07d805f13e98abc7e5c31", + "md5": "f414f276b669b2e29aec0cc801f291d1" + }, + "required_dependencies": [ + "561087" + ], + "size": 66273, + "date_published": "2025-08-28T21:51:14.027Z" } ] }, @@ -734,6 +800,47 @@ } ] }, + { + "pakku_id": "cBBId9lxKRMCqYMS", + "pakku_links": [ + "64uacGcEw697jVGs" + ], + "type": "MOD", + "slug": { + "curseforge": "macaws-for-terrafirmacraft" + }, + "name": { + "curseforge": "All-In-One, Macaw's Mods for TerraFirmaCraft" + }, + "id": { + "curseforge": "908983" + }, + "files": [ + { + "type": "curseforge", + "file_name": "mcw_tfc_aio-0.2.30-1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "beta", + "url": "https://edge.forgecdn.net/files/5196/201/mcw_tfc_aio-0.2.30-1.20.1.jar", + "id": "5196201", + "parent_id": "908983", + "hashes": { + "sha1": "8a1f70ddd044142d4fa110fcb8dbd419565984a1", + "md5": "54d56a0bc4e5bf81e0dc2ad6ecef0230" + }, + "required_dependencies": [ + "302973" + ], + "size": 7062332, + "date_published": "2024-03-19T22:54:15.213Z" + } + ] + }, { "pakku_id": "4vY2wc52lDqNRsmG", "type": "MOD", @@ -749,7 +856,7 @@ "files": [ { "type": "curseforge", - "file_name": "alltheleaks-1.0.1+1.20.1-forge.jar", + "file_name": "alltheleaks-1.0.4+1.20.1-forge.jar", "mc_versions": [ "1.20.1" ], @@ -757,16 +864,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6916/160/alltheleaks-1.0.1+1.20.1-forge.jar", - "id": "6916160", + "url": "https://edge.forgecdn.net/files/6967/574/alltheleaks-1.0.4+1.20.1-forge.jar", + "id": "6967574", "parent_id": "1091339", "hashes": { - "sha1": "13dda9865bb6ecff4f9cbea148f71215172ebe73", - "md5": "3f02888ca792a2daae94d68ba71edb18" + "sha1": "4aafc8d482e3da5d9c59029f8614d44c93c6d86f", + "md5": "f15861b04cfb7335b0cd8de0cca9625b" }, "required_dependencies": [], - "size": 1134589, - "date_published": "2025-08-22T19:39:22.777Z" + "size": 1137043, + "date_published": "2025-09-06T00:40:00.270Z" } ] }, @@ -1454,6 +1561,70 @@ } ] }, + { + "pakku_id": "xYgkxAJKwHb9tvUM", + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "autopack-director", + "modrinth": "autopack-director" + }, + "name": { + "curseforge": "AutoPack-Director", + "modrinth": "AutoPack-Director" + }, + "id": { + "curseforge": "1182657", + "modrinth": "Fqqapnbs" + }, + "files": [ + { + "type": "curseforge", + "file_name": "AutoPack-Director-1.0.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "beta", + "url": "https://edge.forgecdn.net/files/6102/172/AutoPack-Director-1.0.1.jar", + "id": "6102172", + "parent_id": "1182657", + "hashes": { + "sha1": "973a115aeee0cd6d40ad0a0e1e255d5aa0419bb2", + "md5": "5b6d859ea086f988ed041045d0b58896" + }, + "required_dependencies": [], + "size": 3031600, + "date_published": "2025-01-19T07:37:46.543Z" + }, + { + "type": "modrinth", + "file_name": "Modpack-Director-1.0.1.jar", + "mc_versions": [ + "1.12.2", + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "beta", + "url": "https://cdn.modrinth.com/data/Fqqapnbs/versions/47y19tCP/Modpack-Director-1.0.1.jar", + "id": "47y19tCP", + "parent_id": "Fqqapnbs", + "hashes": { + "sha512": "2a58aff6a3bbcc4e44f6b81f7fb8477fd87f55112ff53c3704ae25a136d2ffd5146043983cf653444e823a4c9a247866028a452ff482d9cdc6cb81af4a1ffca3", + "sha1": "973a115aeee0cd6d40ad0a0e1e255d5aa0419bb2" + }, + "required_dependencies": [], + "size": 3031600, + "date_published": "2025-01-19T06:45:11.832901Z" + } + ] + }, { "pakku_id": "tcGlxrXYONei6sfG", "type": "MOD", @@ -2747,67 +2918,6 @@ } ] }, - { - "pakku_id": "WkkNIvKgtw8SFkOc", - "type": "MOD", - "side": "BOTH", - "slug": { - "curseforge": "clumps", - "modrinth": "clumps" - }, - "name": { - "curseforge": "Clumps", - "modrinth": "Clumps" - }, - "id": { - "curseforge": "256717", - "modrinth": "Wnxd13zP" - }, - "files": [ - { - "type": "curseforge", - "file_name": "Clumps-forge-1.20.1-12.0.0.4.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/5278/538/Clumps-forge-1.20.1-12.0.0.4.jar", - "id": "5278538", - "parent_id": "256717", - "hashes": { - "sha1": "97cc669f68dbe812cb77cc3631339334fc28b877", - "md5": "c9efc71827df6ab51e8dd0e40c3d4975" - }, - "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": "fYzrRo2M24y3MX3e", "type": "MOD", @@ -3741,30 +3851,9 @@ "modrinth": "QMGO17gm" }, "files": [ - { - "type": "curseforge", - "file_name": "create_factory_logistics-1.20.1-1.4.5.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "beta", - "url": "https://edge.forgecdn.net/files/6763/9/create_factory_logistics-1.20.1-1.4.5.jar", - "id": "6763009", - "parent_id": "1218807", - "hashes": { - "sha1": "5c2c2a416000273b8503a7ec666bc9325cb5707b", - "md5": "cd134d174ec0a84bc231cda56f8510a8" - }, - "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", + "file_name": "create_factory_logistics-1.20.1-1.4.6.jar", "mc_versions": [ "1.20.1" ], @@ -3772,16 +3861,37 @@ "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", + "url": "https://cdn.modrinth.com/data/QMGO17gm/versions/55cCh8ab/create_factory_logistics-1.20.1-1.4.6.jar", + "id": "55cCh8ab", "parent_id": "QMGO17gm", "hashes": { - "sha512": "6e3c43e506ac2166eea0d070641dd4f9180543e1fb5765138296dcbdb5f59f4aea01ead8c8a1c049d70ab8cb7d093535ddc196cee1a48c01ee3572f639e772af", - "sha1": "5c2c2a416000273b8503a7ec666bc9325cb5707b" + "sha512": "63b41cd141e1c2f660662dc19a607ce934ac8d2747b622b2a6d3ac962b2e01a7e69967fc5b42864418389a0c8f2fd6a6686a13c130b7f2ca404f8b7a87d20d4e", + "sha1": "465e6b54a7aad8c5501a517e4d83d9da4aefaaea" }, "required_dependencies": [], - "size": 1082428, - "date_published": "2025-07-13T08:41:15.583247Z" + "size": 1097007, + "date_published": "2025-08-25T07:30:00.875517Z" + }, + { + "type": "curseforge", + "file_name": "create_factory_logistics-1.20.1-1.4.6.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "beta", + "url": "https://edge.forgecdn.net/files/6925/756/create_factory_logistics-1.20.1-1.4.6.jar", + "id": "6925756", + "parent_id": "1218807", + "hashes": { + "sha1": "465e6b54a7aad8c5501a517e4d83d9da4aefaaea", + "md5": "65252091cb9878b33a5ebabdfd73cf7f" + }, + "required_dependencies": [], + "size": 1097007, + "date_published": "2025-08-25T07:30:01.110Z" } ] }, @@ -3991,6 +4101,74 @@ } ] }, + { + "pakku_id": "h91JpkOd7PzSuphT", + "pakku_links": [ + "Nw8xTCQngHA15ilh" + ], + "type": "MOD", + "side": "SERVER", + "slug": { + "curseforge": "create-liquid-fuel", + "modrinth": "create-liquid-fuel" + }, + "name": { + "curseforge": "Create: Liquid Fuel", + "modrinth": "Create: Liquid Fuel" + }, + "id": { + "curseforge": "840734", + "modrinth": "sH9tXU9f" + }, + "files": [ + { + "type": "curseforge", + "file_name": "createliquidfuel-2.1.1-1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/5217/310/createliquidfuel-2.1.1-1.20.1.jar", + "id": "5217310", + "parent_id": "840734", + "hashes": { + "sha1": "d216cf52735f8e4d3594943139599f6b0b20b8cf", + "md5": "41d2472841c5dc5d43adc52b27b3123b" + }, + "required_dependencies": [], + "size": 20245, + "date_published": "2024-03-28T06:32:19.517Z" + }, + { + "type": "modrinth", + "file_name": "createliquidfuel-2.1.1-1.20.1.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/sH9tXU9f/versions/SZfHDdfk/createliquidfuel-2.1.1-1.20.1.jar", + "id": "SZfHDdfk", + "parent_id": "sH9tXU9f", + "hashes": { + "sha512": "5dec0dbd9a5c1e6b06de5c60f5d5477a595ad6ddb762f67ea3379cc195fbee68d3be87f2bccfdeb60f6edbb4b029d54e2c8b7c0d3f3967d8f42587c77683d8d7", + "sha1": "d216cf52735f8e4d3594943139599f6b0b20b8cf" + }, + "required_dependencies": [ + "LNytGWDc" + ], + "size": 20245, + "date_published": "2024-03-28T06:27:19.888846Z" + } + ] + }, { "pakku_id": "44GxMgEFkWpmSaA7", "type": "MOD", @@ -4010,7 +4188,7 @@ "files": [ { "type": "modrinth", - "file_name": "Steam_Rails-1.6.12-alpha+forge-mc1.20.1.jar", + "file_name": "Steam_Rails-1.6.13-alpha+forge-mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -4019,22 +4197,22 @@ "neoforge" ], "release_type": "alpha", - "url": "https://cdn.modrinth.com/data/ZzjhlDgM/versions/nWkRaqjI/Steam_Rails-1.6.12-alpha+forge-mc1.20.1.jar", - "id": "nWkRaqjI", + "url": "https://cdn.modrinth.com/data/ZzjhlDgM/versions/ezVPFGKZ/Steam_Rails-1.6.13-alpha+forge-mc1.20.1.jar", + "id": "ezVPFGKZ", "parent_id": "ZzjhlDgM", "hashes": { - "sha512": "3db572293c8c040977348192604051f283fc86eda42ded49154a5becb08a0ca24fee3dda51119793831a4651de2bc293e8862081cd0b05e8d87912c148f49c72", - "sha1": "7808134eba7bcb56353b4929ee08eb8c0db64feb" + "sha512": "99f18f3501fdb67add6d1fdc9016f09718aa6d3fe172559954840747f01e70834e56bb3c26de86846ec9dea3de565d1b86b675d3498c6696b0d0334ac7daf1c5", + "sha1": "52da57f8704a2e6b3f761066748192d6f069d5f9" }, "required_dependencies": [ "LNytGWDc" ], - "size": 10035863, - "date_published": "2025-08-08T01:48:20.201329Z" + "size": 10036200, + "date_published": "2025-09-04T15:49:17.633579Z" }, { "type": "curseforge", - "file_name": "Steam_Rails-1.6.12-alpha+forge-mc1.20.1.jar", + "file_name": "Steam_Rails-1.6.13-alpha+forge-mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -4043,18 +4221,18 @@ "forge" ], "release_type": "alpha", - "url": "https://edge.forgecdn.net/files/6861/688/Steam_Rails-1.6.12-alpha+forge-mc1.20.1.jar", - "id": "6861688", + "url": "https://edge.forgecdn.net/files/6963/175/Steam_Rails-1.6.13-alpha+forge-mc1.20.1.jar", + "id": "6963175", "parent_id": "688231", "hashes": { - "sha1": "7808134eba7bcb56353b4929ee08eb8c0db64feb", - "md5": "7dffe5962bd95ba9d05ff848e351afdf" + "sha1": "52da57f8704a2e6b3f761066748192d6f069d5f9", + "md5": "1124926daa9fb24401d35f8094eff2a7" }, "required_dependencies": [ "328085" ], - "size": 10035863, - "date_published": "2025-08-08T01:48:16.753Z" + "size": 10036200, + "date_published": "2025-09-04T15:49:13.513Z" } ] }, @@ -4303,7 +4481,7 @@ "files": [ { "type": "modrinth", - "file_name": "defaultoptions-forge-1.20.1-18.0.3.jar", + "file_name": "defaultoptions-forge-1.20.1-18.0.4.jar", "mc_versions": [ "1.20", "1.20.1" @@ -4312,22 +4490,22 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/WEg59z5b/versions/vNF6Yrv4/defaultoptions-forge-1.20.1-18.0.3.jar", - "id": "vNF6Yrv4", + "url": "https://cdn.modrinth.com/data/WEg59z5b/versions/t5i53ltA/defaultoptions-forge-1.20.1-18.0.4.jar", + "id": "t5i53ltA", "parent_id": "WEg59z5b", "hashes": { - "sha512": "d3c13262743fb06d481a4755da9daa78350cf1e3ffe88b7f8ff86ad6c5c7bd729483e5890e4f6e2969dacf08649765277598251d4d5dff20f68a5690f352c750", - "sha1": "bbc80fc1a7f0e17b64fca56fcf7d55562db9783d" + "sha512": "01e9bc32c967a9ccce0504d0b88245e8a3b27cea1e29ed4740a06064179387e28f36dbd2e95401eb38854984361e06b8d58cca3f0d4ba88d660b2d0013845bc9", + "sha1": "37ef64d3ae7fda292c882ee949a0280bf6c7f033" }, "required_dependencies": [ "MBAkmtvl" ], - "size": 94649, - "date_published": "2025-07-23T21:48:31.220228Z" + "size": 94684, + "date_published": "2025-09-07T12:29:20.644337Z" }, { "type": "curseforge", - "file_name": "defaultoptions-forge-1.20.1-18.0.3.jar", + "file_name": "defaultoptions-forge-1.20.1-18.0.4.jar", "mc_versions": [ "1.20.1", "1.20" @@ -4336,18 +4514,100 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6804/680/defaultoptions-forge-1.20.1-18.0.3.jar", - "id": "6804680", + "url": "https://edge.forgecdn.net/files/6972/483/defaultoptions-forge-1.20.1-18.0.4.jar", + "id": "6972483", "parent_id": "232131", "hashes": { - "sha1": "a7bffd6bd5cff19793cede8c1b8bb0450eb25059", - "md5": "10d4a6afe004f72a965d0263583576db" + "sha1": "37ef64d3ae7fda292c882ee949a0280bf6c7f033", + "md5": "2a453bba939907b55d4d7e0c31e6d8ad" }, "required_dependencies": [ "531761" ], - "size": 94649, - "date_published": "2025-07-23T21:49:30.653Z" + "size": 94684, + "date_published": "2025-09-07T12:29:22.480Z" + } + ] + }, + { + "pakku_id": "NTPct5Wu0LfCm96a", + "pakku_links": [ + "6k7DoFyO7bpHnhyk", + "NAvm5gacwCvqJee5", + "pB7ARGecP03UXpd6", + "znIzfNElWkwpdz2V" + ], + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "desert-behemoths-sandworms", + "modrinth": "desert-behemoths-sandworms!" + }, + "name": { + "curseforge": "Desert Behemoths: Sandworms!", + "modrinth": "Desert Behemoths: Sandworms!" + }, + "id": { + "curseforge": "1066153", + "modrinth": "b1GD2Ca2" + }, + "redistributable": false, + "files": [ + { + "type": "curseforge", + "file_name": "sandworm_mod-1.1.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/5600/383/sandworm_mod-1.1.1.jar", + "id": "5600383", + "parent_id": "1066153", + "hashes": { + "sha1": "c55788dcd8a1d24f4b41f20d40f5b670b163950a", + "md5": "d83733870396560256a5706db01375a5" + }, + "required_dependencies": [ + "979809", + "616457", + "388172" + ], + "size": 4515741, + "date_published": "2024-08-06T00:57:24.447Z" + }, + { + "type": "modrinth", + "file_name": "sandworm_mod-1.1.0.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/b1GD2Ca2/versions/44Ejqnzj/sandworm_mod-1.1.0.jar", + "id": "44Ejqnzj", + "parent_id": "b1GD2Ca2", + "hashes": { + "sha512": "d3e21410f3369bf5437cf35dd68eaa619b72d431d90be9106497a5f934e1ab9e3fb2bd5054022ab2f310e8e21e654a088a2040bb793b3e69a26d99644381e088", + "sha1": "69ac6ea39135c26a2625c0dce585f2594fd4ca52" + }, + "required_dependencies": [ + "bN3xUWdo", + "En8uHTOK", + "8BmcQJ2H" + ], + "size": 4515705, + "date_published": "2024-07-30T08:15:53.352176Z" } ] }, @@ -4723,6 +4983,69 @@ } ] }, + { + "pakku_id": "PDnn8hOodQ10vlXc", + "type": "MOD", + "side": "CLIENT", + "slug": { + "curseforge": "embeddium", + "modrinth": "embeddium" + }, + "name": { + "curseforge": "Embeddium", + "modrinth": "Embeddium" + }, + "id": { + "curseforge": "908741", + "modrinth": "sk9rgfiA" + }, + "files": [ + { + "type": "curseforge", + "file_name": "embeddium-0.3.31+mc1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/5681/725/embeddium-0.3.31+mc1.20.1.jar", + "id": "5681725", + "parent_id": "908741", + "hashes": { + "sha1": "bb2fa8f3e493af16af9160d049f96c614a1faf2f", + "md5": "1dfb2ee49ce9ad5d484ff3eea0d628b7" + }, + "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": "mEP7yMd938gKqjfz", "pakku_links": [ @@ -5014,7 +5337,7 @@ "files": [ { "type": "modrinth", - "file_name": "everycomp-1.20-2.9.1-forge.jar", + "file_name": "everycomp-1.20-2.9.2-forge.jar", "mc_versions": [ "1.20.1" ], @@ -5022,22 +5345,22 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/eiktJyw1/versions/ZmTNauR4/everycomp-1.20-2.9.1-forge.jar", - "id": "ZmTNauR4", + "url": "https://cdn.modrinth.com/data/eiktJyw1/versions/JNTDe4wV/everycomp-1.20-2.9.2-forge.jar", + "id": "JNTDe4wV", "parent_id": "eiktJyw1", "hashes": { - "sha512": "861479f930de09109a285ad3ddbfe54764510fa4228ba95d13e200d467b580c3a5e67d7b88ee453db7b4796f3f26a333934aae3610d0e8624a7fb5c357bfff5f", - "sha1": "88eabf9f0c614cc097b1b39b5a970b5e7835274b" + "sha512": "fbab72d7e1796382b474d8f0cdf37ce02de78ed54c0af207a14f01c342eb65fbce32cc49a67f54f573bd848ea8f6fca7ad1a98fa10ffef921400a3f7dc1a5fd5", + "sha1": "35d4eb2f23c4309038546d78ac5fb2d28232b0aa" }, "required_dependencies": [ "twkfQtEc" ], - "size": 2808536, - "date_published": "2025-08-24T04:23:13.159167Z" + "size": 2816203, + "date_published": "2025-08-27T06:58:32.441761Z" }, { "type": "curseforge", - "file_name": "everycomp-1.20-2.9.1-forge.jar", + "file_name": "everycomp-1.20-2.9.2-forge.jar", "mc_versions": [ "1.20.1" ], @@ -5045,18 +5368,18 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6921/386/everycomp-1.20-2.9.1-forge.jar", - "id": "6921386", + "url": "https://edge.forgecdn.net/files/6933/150/everycomp-1.20-2.9.2-forge.jar", + "id": "6933150", "parent_id": "628539", "hashes": { - "sha1": "88eabf9f0c614cc097b1b39b5a970b5e7835274b", - "md5": "3685dc96dc9eec27c20d73fb19240108" + "sha1": "35d4eb2f23c4309038546d78ac5fb2d28232b0aa", + "md5": "1ce775fb78a475a84546846662c6ce93" }, "required_dependencies": [ "499980" ], - "size": 2808536, - "date_published": "2025-08-24T04:22:59.213Z" + "size": 2816203, + "date_published": "2025-08-27T06:58:19.960Z" } ] }, @@ -5147,7 +5470,7 @@ "files": [ { "type": "curseforge", - "file_name": "ExtendedAE-1.20-1.4.4-forge.jar", + "file_name": "ExtendedAE-1.20-1.4.5-forge.jar", "mc_versions": [ "1.20.1" ], @@ -5156,20 +5479,20 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6870/350/ExtendedAE-1.20-1.4.4-forge.jar", - "id": "6870350", + "url": "https://edge.forgecdn.net/files/6975/234/ExtendedAE-1.20-1.4.5-forge.jar", + "id": "6975234", "parent_id": "892005", "hashes": { - "sha1": "3c10e9aa3f2a02021b61bd0ef9af51b9e27552d5", - "md5": "78ef780bd578ac44b63dae4df89f3774" + "sha1": "b513e33baff2597c7ab5f0da78e6a817e0e118da", + "md5": "9f22f10d59e9eb246e05f34a6d555b90" }, "required_dependencies": [ "957920", - "223794", - "1173950" + "1173950", + "223794" ], - "size": 1538479, - "date_published": "2025-08-10T08:11:07.093Z" + "size": 1580425, + "date_published": "2025-09-08T04:16:40.817Z" } ] }, @@ -5247,7 +5570,7 @@ "e7thBe1Z6fvyxUtU" ], "type": "MOD", - "side": "CLIENT", + "side": "BOTH", "slug": { "curseforge": "ftb-backups-2" }, @@ -5257,6 +5580,7 @@ "id": { "curseforge": "622737" }, + "export": false, "files": [ { "type": "curseforge", @@ -5304,6 +5628,7 @@ "id": { "curseforge": "314906" }, + "export": false, "files": [ { "type": "curseforge", @@ -5344,6 +5669,7 @@ "id": { "curseforge": "410811" }, + "export": false, "files": [ { "type": "curseforge", @@ -5386,6 +5712,7 @@ "id": { "curseforge": "943925" }, + "export": false, "files": [ { "type": "curseforge", @@ -5429,6 +5756,7 @@ "id": { "curseforge": "404465" }, + "export": false, "files": [ { "type": "curseforge", @@ -5472,6 +5800,7 @@ "id": { "curseforge": "289412" }, + "export": false, "files": [ { "type": "curseforge", @@ -5516,6 +5845,7 @@ "id": { "curseforge": "314905" }, + "export": false, "files": [ { "type": "curseforge", @@ -5559,6 +5889,7 @@ "id": { "curseforge": "404468" }, + "export": false, "files": [ { "type": "curseforge", @@ -5604,6 +5935,7 @@ "id": { "curseforge": "889915" }, + "export": false, "files": [ { "type": "curseforge", @@ -6532,69 +6864,6 @@ } ] }, - { - "pakku_id": "tQgKccUPjTVsdsDX", - "type": "MOD", - "side": "SERVER", - "slug": { - "curseforge": "get-it-together-drops", - "modrinth": "get-it-together-drops" - }, - "name": { - "curseforge": "Get It Together, Drops!", - "modrinth": "Get It Together, Drops!" - }, - "id": { - "curseforge": "411045", - "modrinth": "T0OUgf8P" - }, - "files": [ - { - "type": "curseforge", - "file_name": "getittogetherdrops-forge-1.20-1.3.jar", - "mc_versions": [ - "1.20.1", - "1.20" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/4578/649/getittogetherdrops-forge-1.20-1.3.jar", - "id": "4578649", - "parent_id": "411045", - "hashes": { - "sha1": "70a4d8acaedc4dfb066974726d21916b78edd7af", - "md5": "48b718676addc7770ac9a9bf63a84633" - }, - "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": "OX3oijTxjmeoXyM3", "type": "MOD", @@ -6845,45 +7114,46 @@ "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", + "file_name": "[ver 0.20] GT Revival 32x 1.19.2-1.20.1-1.21.zip", "mc_versions": [ - "1.20", - "1.20.1" + "1.19.2", + "1.20.1", + "1.21.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", + "url": "https://cdn.modrinth.com/data/fUawEtti/versions/oQJH7fHm/[ver 0.20] GT Revival 32x 1.19.2-1.20.1-1.21.zip", + "id": "oQJH7fHm", "parent_id": "fUawEtti", "hashes": { - "sha512": "0cede40c825cee8fd314abd9825b9e35f943aa5379fa6f81adc8643473c66cbef6a6ae846a546b8584514d857c21831d1bf81d6c6393fe7306dedd725c2570f1", - "sha1": "b0e072c301f713e7e1c2cc21a75646e7d64051f6" + "sha512": "d9834d62867186584f1a6b62d91f1426dd3ff646e5c85c2c562767db2b4616769640314d970e5550bcd3e5fc65be3eb733831503d607add010805c7d54949f32", + "sha1": "388145cb295a0778deb2af3920c3a53ecfb80804" }, "required_dependencies": [], - "size": 8116393, - "date_published": "2025-05-19T12:41:42.204377Z" + "size": 8289791, + "date_published": "2025-07-19T13:09:55.325382Z" + }, + { + "type": "curseforge", + "file_name": "[ver 0.20] GT Revival 32x 1.19.2-1.20.1-1.21.zip", + "mc_versions": [ + "1.20.1" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6787/476/[ver 0.20] GT Revival 32x 1.19.2-1.20.1-1.21.zip", + "id": "6787476", + "parent_id": "964322", + "hashes": { + "sha1": "388145cb295a0778deb2af3920c3a53ecfb80804", + "md5": "9c4fad9bba1ff5c4dd7c24d68c9310a9" + }, + "required_dependencies": [], + "size": 8289791, + "date_published": "2025-07-19T13:10:34.260Z" } ] }, @@ -6904,30 +7174,9 @@ "modrinth": "Ck4E7v7R" }, "files": [ - { - "type": "curseforge", - "file_name": "guideme-20.1.11.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6679/102/guideme-20.1.11.jar", - "id": "6679102", - "parent_id": "1173950", - "hashes": { - "sha1": "174f15f296fe4d1f74d618ca83b64fd9d9a215f7", - "md5": "d9b140aa941f4a1492dbdae503a510dd" - }, - "required_dependencies": [], - "size": 9412982, - "date_published": "2025-06-21T15:02:39.537Z" - }, { "type": "modrinth", - "file_name": "guideme-20.1.11.jar", + "file_name": "guideme-20.1.12.jar", "mc_versions": [ "1.20.1" ], @@ -6935,16 +7184,37 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/Ck4E7v7R/versions/mfDRKud3/guideme-20.1.11.jar", - "id": "mfDRKud3", + "url": "https://cdn.modrinth.com/data/Ck4E7v7R/versions/EaVlVvP1/guideme-20.1.12.jar", + "id": "EaVlVvP1", "parent_id": "Ck4E7v7R", "hashes": { - "sha512": "614c00ebaa8ce6430f3bcd91ad3256cd9443af9c7ca7dc9784a901ab110b71c7e31375e51836f3551445dd42d1494160b0c57b03170cd9f964bf10255c8307b5", - "sha1": "174f15f296fe4d1f74d618ca83b64fd9d9a215f7" + "sha512": "508acd73e48a12f8372e66f06bc2e029f1b02be68468c5ec2d22574fc39a3712428c2daa43d34cc2dc60276e728c421bd53295359be399197a809d218b678ab5", + "sha1": "64b858e6983a2a5cc149ea2f4d579dd6a44973c9" }, "required_dependencies": [], - "size": 9412982, - "date_published": "2025-06-21T15:02:42.041968Z" + "size": 9413011, + "date_published": "2025-08-29T18:01:57.910566Z" + }, + { + "type": "curseforge", + "file_name": "guideme-20.1.12.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6942/62/guideme-20.1.12.jar", + "id": "6942062", + "parent_id": "1173950", + "hashes": { + "sha1": "64b858e6983a2a5cc149ea2f4d579dd6a44973c9", + "md5": "704a411ef02b47d331a2705ed0df43db" + }, + "required_dependencies": [], + "size": 9413011, + "date_published": "2025-08-29T18:01:59.073Z" } ] }, @@ -7016,6 +7286,67 @@ } ] }, + { + "pakku_id": "tc7AIGQtKog7l0AS", + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "horses-can-swim", + "modrinth": "swimming-horses-forge" + }, + "name": { + "curseforge": "Horses can Swim", + "modrinth": "Horses Can Swim" + }, + "id": { + "curseforge": "937337", + "modrinth": "ZrqMJA7K" + }, + "files": [ + { + "type": "curseforge", + "file_name": "horsescanswim-1.0.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/4875/244/horsescanswim-1.0.1.jar", + "id": "4875244", + "parent_id": "937337", + "hashes": { + "sha1": "9fa3a8acef83a37918fc38ca4d05a3211bc95a02", + "md5": "982d2a4f26246321f318502cb7a6b20c" + }, + "required_dependencies": [], + "size": 4821, + "date_published": "2023-11-17T15:50:15.890Z" + }, + { + "type": "modrinth", + "file_name": "horsescanswim-1.0.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/ZrqMJA7K/versions/dBrAgsC4/horsescanswim-1.0.1.jar", + "id": "dBrAgsC4", + "parent_id": "ZrqMJA7K", + "hashes": { + "sha512": "a8d442d31a4a753f90d0ed50095382910d36822614d8fc6a26eaa2f9d66f6c4ea73f4b2e4977510d9277a3d0dbd03b41629c372a59305209daacbc1140657b5d", + "sha1": "9fa3a8acef83a37918fc38ca4d05a3211bc95a02" + }, + "required_dependencies": [], + "size": 4821, + "date_published": "2024-10-01T16:22:52.525878Z" + } + ] + }, { "pakku_id": "ZhW43OKdjEIc58t0", "type": "RESOURCE_PACK", @@ -7160,30 +7491,9 @@ "modrinth": "x3HZvrj6" }, "files": [ - { - "type": "curseforge", - "file_name": "immersive_aircraft-1.3.3+1.20.1-forge.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6742/170/immersive_aircraft-1.3.3+1.20.1-forge.jar", - "id": "6742170", - "parent_id": "666014", - "hashes": { - "sha1": "0749b5c005eafdcf5c8a19760c5c64b3cb021633", - "md5": "4460fa3fa7959a5960c5379578773291" - }, - "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", + "file_name": "immersive_aircraft-1.4.0+1.20.1-forge.jar", "mc_versions": [ "1.20.1" ], @@ -7191,16 +7501,37 @@ "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", + "url": "https://cdn.modrinth.com/data/x3HZvrj6/versions/jPZ0GRsN/immersive_aircraft-1.4.0+1.20.1-forge.jar", + "id": "jPZ0GRsN", "parent_id": "x3HZvrj6", "hashes": { - "sha512": "7b74442e161bb74538e0d8da34a81616daeea56a0da62db86113a78b3bf3c2b3a6b0e12f12454fd7c96092762f6b212ba57cb87eb1af2b242a4d5df4eca03055", - "sha1": "0749b5c005eafdcf5c8a19760c5c64b3cb021633" + "sha512": "c89ce2ec78ced38c71b0bb022db0a3218556b5479e148a3f751c40456a79fb18799a3f1233e3be03bc18754d5fe1db2dd16f2bd826396a4c777e4e1acaa9fe76", + "sha1": "64e6c792c5208005ee6b099e8fb7d2738873737d" }, "required_dependencies": [], - "size": 2391382, - "date_published": "2025-07-07T20:40:00.415348Z" + "size": 2428368, + "date_published": "2025-09-07T14:19:11.649750Z" + }, + { + "type": "curseforge", + "file_name": "immersive_aircraft-1.4.0+1.20.1-forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6972/825/immersive_aircraft-1.4.0+1.20.1-forge.jar", + "id": "6972825", + "parent_id": "666014", + "hashes": { + "sha1": "64e6c792c5208005ee6b099e8fb7d2738873737d", + "md5": "f49ff767f611a95f9bd29a0e9977d9d5" + }, + "required_dependencies": [], + "size": 2428368, + "date_published": "2025-09-07T14:19:09.407Z" } ] }, @@ -7221,30 +7552,9 @@ "modrinth": "vNZgQmjg" }, "files": [ - { - "type": "curseforge", - "file_name": "immersive_optimization-forge-1.20.1-0.0.4.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6490/666/immersive_optimization-forge-1.20.1-0.0.4.jar", - "id": "6490666", - "parent_id": "1163206", - "hashes": { - "sha1": "3de7b2a3b58741e0790f4ba94fbd941c3608a06f", - "md5": "a48b58613083015908f96296c3e81f4b" - }, - "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", + "file_name": "immersive_optimization-forge-1.20.1-0.1.0.jar", "mc_versions": [ "1.20.1" ], @@ -7252,16 +7562,37 @@ "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", + "url": "https://cdn.modrinth.com/data/vNZgQmjg/versions/IbAHAwYb/immersive_optimization-forge-1.20.1-0.1.0.jar", + "id": "IbAHAwYb", "parent_id": "vNZgQmjg", "hashes": { - "sha512": "bbfd4c79e77f277d2707a5807445e4fbc72ecad321728b77e27b84ef7c6a73cc513564066f1e16d301dd7c534d1dd54034da9b2bdf1569ff8ac87c8aa18fc82d", - "sha1": "3de7b2a3b58741e0790f4ba94fbd941c3608a06f" + "sha512": "38f833638b29c098005e18068fb5f3957462dea496176d446b400c37bf4fb19343dd250993cd458465bfe29c0b1f27afbb5bc3a7245b972fed82ea8e70a0c8c8", + "sha1": "58a2e199bf7992edb6ac765e7694be96cb53efde" }, "required_dependencies": [], - "size": 43276, - "date_published": "2025-05-03T11:05:28.966501Z" + "size": 51912, + "date_published": "2025-09-06T16:49:09.502037Z" + }, + { + "type": "curseforge", + "file_name": "immersive_optimization-forge-1.20.1-0.1.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6969/713/immersive_optimization-forge-1.20.1-0.1.0.jar", + "id": "6969713", + "parent_id": "1163206", + "hashes": { + "sha1": "58a2e199bf7992edb6ac765e7694be96cb53efde", + "md5": "815863208c9dc8fcb66507135ca0859b" + }, + "required_dependencies": [], + "size": 51912, + "date_published": "2025-09-06T16:49:08.220Z" } ] }, @@ -7342,46 +7673,46 @@ "modrinth": "ZyLGK5YD" }, "files": [ - { - "type": "curseforge", - "file_name": "Improved Create 32x ver 0.03 1.18.2-1.20.1.zip", - "mc_versions": [ - "1.20.1" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/5686/125/Improved Create 32x ver 0.03 1.18.2-1.20.1.zip", - "id": "5686125", - "parent_id": "973588", - "hashes": { - "sha1": "daf1a2e26e1bda2070ae38d678fc5832c5558a52", - "md5": "244a44ff39d14e2bd497ea5cb36eb3f9" - }, - "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", + "file_name": "Improved Create 32x ver 0.04 1.18.2-1.20.1-1.21.1.zip", "mc_versions": [ "1.18.2", - "1.19.2", - "1.20.1" + "1.20.1", + "1.21.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", + "url": "https://cdn.modrinth.com/data/ZyLGK5YD/versions/31P7fnA5/Improved Create 32x ver 0.04 1.18.2-1.20.1-1.21.1.zip", + "id": "31P7fnA5", "parent_id": "ZyLGK5YD", "hashes": { - "sha512": "2f4fbf03fa35eb8ce3fdeb2bdad70336081e7febae5f1bf1c4c40fe4b8f0966b3ea7d1748b161ef982a906aa65e54abe83c3dd6ac07542d1cf8baec1359a1911", - "sha1": "4638f46950c971caa8cb9710d509da19bf63fd58" + "sha512": "cf4b55ed2f1c3580937a2b8be299e1c1ca454f7a47671001b6a8e3086c02008e79bcaf3a59b61651b4c2d63fdb511a47969d51493bcbd7ee9faa923ab32f9523", + "sha1": "e88d82dc5aa9eaab0f865038bd6cb0d8c726db3b" }, "required_dependencies": [], - "size": 6958706, - "date_published": "2024-02-11T22:13:21.009179Z" + "size": 7541771, + "date_published": "2025-08-27T15:45:03.011726Z" + }, + { + "type": "curseforge", + "file_name": "Improved Create 32x ver 0.04 1.18.2-1.20.1-1.21.1.zip", + "mc_versions": [ + "1.20.1" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6934/603/Improved Create 32x ver 0.04 1.18.2-1.20.1-1.21.1.zip", + "id": "6934603", + "parent_id": "973588", + "hashes": { + "sha1": "e88d82dc5aa9eaab0f865038bd6cb0d8c726db3b", + "md5": "5eaec6c3219fafd59dbc825cb031c832" + }, + "required_dependencies": [], + "size": 7541771, + "date_published": "2025-08-27T15:44:21.017Z" } ] }, @@ -8340,6 +8671,68 @@ } ] }, + { + "pakku_id": "znIzfNElWkwpdz2V", + "type": "MOD", + "side": "BOTH", + "slug": { + "modrinth": "lodestonelib", + "curseforge": "lodestone" + }, + "name": { + "modrinth": "Lodestone", + "curseforge": "Lodestone" + }, + "id": { + "modrinth": "bN3xUWdo", + "curseforge": "616457" + }, + "files": [ + { + "type": "modrinth", + "file_name": "lodestone-1.20.1-1.6.4.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/bN3xUWdo/versions/dRIycWqx/lodestone-1.20.1-1.6.4.1.jar", + "id": "dRIycWqx", + "parent_id": "bN3xUWdo", + "hashes": { + "sha512": "fec5107deb73c06c4b1756349cb874e0933c4181fd20e8528e46a24e35ccb048898c8607830deea3242d7303784a9c3a03f3fadd40d13fb6dc27a34a77f5cc85", + "sha1": "e6346060ae70cbf103b231d8a1536bcd044c84a8" + }, + "required_dependencies": [], + "size": 670934, + "date_published": "2025-02-20T16:05:31.211605Z" + }, + { + "type": "curseforge", + "file_name": "lodestone-1.20.1-1.6.4.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6213/794/lodestone-1.20.1-1.6.4.1.jar", + "id": "6213794", + "parent_id": "616457", + "hashes": { + "sha1": "e6346060ae70cbf103b231d8a1536bcd044c84a8", + "md5": "2816fa972ca3a21e6e38783f979955be" + }, + "required_dependencies": [], + "size": 670934, + "date_published": "2025-02-20T15:59:37.757Z" + } + ] + }, { "pakku_id": "9RZJfprxqWyxsrEF", "type": "MOD", @@ -8422,7 +8815,7 @@ "files": [ { "type": "modrinth", - "file_name": "lootr-forge-1.20-0.7.35.92.jar", + "file_name": "lootr-forge-1.20-0.7.35.93.jar", "mc_versions": [ "1.20", "1.20.1" @@ -8431,20 +8824,20 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/EltpO5cN/versions/9viyYois/lootr-forge-1.20-0.7.35.92.jar", - "id": "9viyYois", + "url": "https://cdn.modrinth.com/data/EltpO5cN/versions/pvIQeqjt/lootr-forge-1.20-0.7.35.93.jar", + "id": "pvIQeqjt", "parent_id": "EltpO5cN", "hashes": { - "sha512": "903ae0ba7077c86719399c32b4dba5726ce78c19f5eed8bb21acdbe1350cd3572fa2f1278a6b04d352b45ea12284bc97c24e77eab97500a44c0835e92288a0a2", - "sha1": "6e0c4289f06552c89bfe63b6d43a0609fecd6935" + "sha512": "5080f9a48e4dfa9854de5f21584dba62e75bdb064bab3974c7a427072435740d04e63c548ff27eda0fc30d163c26595034833e6703edb8ca54a3994c06ae53fb", + "sha1": "a109f9d34f39af38a394a58fc506583eb078704d" }, "required_dependencies": [], - "size": 458609, - "date_published": "2025-08-22T02:15:11.750259Z" + "size": 460882, + "date_published": "2025-09-04T02:32:15.399196Z" }, { "type": "curseforge", - "file_name": "lootr-forge-1.20-0.7.35.92.jar", + "file_name": "lootr-forge-1.20-0.7.35.93.jar", "mc_versions": [ "1.20.1", "1.20" @@ -8453,16 +8846,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6913/496/lootr-forge-1.20-0.7.35.92.jar", - "id": "6913496", + "url": "https://edge.forgecdn.net/files/6961/345/lootr-forge-1.20-0.7.35.93.jar", + "id": "6961345", "parent_id": "361276", "hashes": { - "sha1": "6e0c4289f06552c89bfe63b6d43a0609fecd6935", - "md5": "46f8cc588def48fc8971cdaae64b40ac" + "sha1": "a109f9d34f39af38a394a58fc506583eb078704d", + "md5": "2d5374b809d9ec1d7700a194b2fd0dd5" }, "required_dependencies": [], - "size": 458609, - "date_published": "2025-08-22T02:12:46.677Z" + "size": 460882, + "date_published": "2025-09-04T02:28:45.837Z" } ] }, @@ -8943,7 +9336,7 @@ "files": [ { "type": "modrinth", - "file_name": "moonlight-1.20-2.16.5-forge.jar", + "file_name": "moonlight-1.20-2.16.8-forge.jar", "mc_versions": [ "1.20.1" ], @@ -8952,20 +9345,20 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/twkfQtEc/versions/uiOJ4NEz/moonlight-1.20-2.16.5-forge.jar", - "id": "uiOJ4NEz", + "url": "https://cdn.modrinth.com/data/twkfQtEc/versions/sWagczEr/moonlight-1.20-2.16.8-forge.jar", + "id": "sWagczEr", "parent_id": "twkfQtEc", "hashes": { - "sha512": "c160493b99be1fab942f7eb64c491985d51a72c16dbda18c345fd14cbf8cfb0bd899c1b7627714e507f079a68bf1917b4d4e407340c2ff3b44359e1996e6c2d7", - "sha1": "461b979a7c1f100a17af4558910f34f259bb56b2" + "sha512": "b4cbaddad5ca2b917086a59e2c6d6b7c03cba3d57bf792178c9c5d1dfa27dcd95141ca66a414ce9d68b0ae66c43707dbcd5031a2871200bb58e5899640ecf347", + "sha1": "3cde645d204a3cc5e1550b839e2954ee5b70d454" }, "required_dependencies": [], - "size": 1326648, - "date_published": "2025-08-19T05:34:44.417258Z" + "size": 1332010, + "date_published": "2025-08-28T00:18:44.173850Z" }, { "type": "curseforge", - "file_name": "moonlight-1.20-2.16.5-forge.jar", + "file_name": "moonlight-1.20-2.16.8-forge.jar", "mc_versions": [ "1.20.1" ], @@ -8974,16 +9367,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6902/841/moonlight-1.20-2.16.5-forge.jar", - "id": "6902841", + "url": "https://edge.forgecdn.net/files/6935/940/moonlight-1.20-2.16.8-forge.jar", + "id": "6935940", "parent_id": "499980", "hashes": { - "sha1": "461b979a7c1f100a17af4558910f34f259bb56b2", - "md5": "d080ad63ce08e5c69785ab1227bc0af5" + "sha1": "3cde645d204a3cc5e1550b839e2954ee5b70d454", + "md5": "20835c6dc3195e10f86ecfa2662e4b97" }, "required_dependencies": [], - "size": 1326648, - "date_published": "2025-08-19T05:34:28.713Z" + "size": 1332010, + "date_published": "2025-08-28T00:18:29.220Z" } ] }, @@ -9500,30 +9893,9 @@ }, "redistributable": false, "files": [ - { - "type": "curseforge", - "file_name": "notenoughanimations-forge-1.10.1-mc1.20.1.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6738/627/notenoughanimations-forge-1.10.1-mc1.20.1.jar", - "id": "6738627", - "parent_id": "433760", - "hashes": { - "sha1": "ed3c4929d6bb08deebe7397b878cfbcb08172d71", - "md5": "5cc3073b456e16eb9f67d61d865a8c3c" - }, - "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", + "file_name": "notenoughanimations-forge-1.10.2-mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -9531,16 +9903,37 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/MPCX6s5C/versions/dG98B4oD/notenoughanimations-forge-1.10.1-mc1.20.1.jar", - "id": "dG98B4oD", + "url": "https://cdn.modrinth.com/data/MPCX6s5C/versions/zc852ea9/notenoughanimations-forge-1.10.2-mc1.20.1.jar", + "id": "zc852ea9", "parent_id": "MPCX6s5C", "hashes": { - "sha512": "bee73667587c2a952507b6feb7f5d5288559583a5f2547388678c3b03aabf9862f41bf44943ce7d7cf17dba6edaa6b62c676a2173b387a73e1c66577c72aafa5", - "sha1": "ed3c4929d6bb08deebe7397b878cfbcb08172d71" + "sha512": "d85b3c70d950e1c705d6ac5771f4d289e30717178b806ac915025297e6e21b74ac58707b1bd022cdf51b8e3f6300ae0d663343b62a39c8a3948fd7b3209cf85d", + "sha1": "b31ffefa9579649de8acbac53ac0792830f71e60" }, "required_dependencies": [], - "size": 847497, - "date_published": "2025-07-06T19:38:29.627816Z" + "size": 845556, + "date_published": "2025-08-26T19:22:46.048806Z" + }, + { + "type": "curseforge", + "file_name": "notenoughanimations-forge-1.10.2-mc1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6931/592/notenoughanimations-forge-1.10.2-mc1.20.1.jar", + "id": "6931592", + "parent_id": "433760", + "hashes": { + "sha1": "b31ffefa9579649de8acbac53ac0792830f71e60", + "md5": "84d42c835d53d25fc1c6adb25a7f5202" + }, + "required_dependencies": [], + "size": 845556, + "date_published": "2025-08-26T19:22:44.437Z" } ] }, @@ -9762,7 +10155,7 @@ "files": [ { "type": "modrinth", - "file_name": "packetfixer-3.1.4-1.18-1.20.4-merged.jar", + "file_name": "packetfixer-3.3.0-1.18-1.20.4-merged.jar", "mc_versions": [ "1.18", "1.18.1", @@ -9785,20 +10178,20 @@ "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", + "url": "https://cdn.modrinth.com/data/c7m1mi73/versions/Jt7R7s5s/packetfixer-3.3.0-1.18-1.20.4-merged.jar", + "id": "Jt7R7s5s", "parent_id": "c7m1mi73", "hashes": { - "sha512": "b6a5b6f684c538ee907e99362be5d8c86b4b923bb2ef9789a1a7ed739f054dc73a7eca8ddf174f97f102f848d74105cd3b6011d8930a5ff001e71d9efad65dcf", - "sha1": "1cdf5d8b637922b12bc72c575ce1428f1f2cae2a" + "sha512": "0f86b9b03672e67e5eac23146bfc56a536f8985daecaec3bf089ee489240b5afec1571c733fc058c335fdd9e8ace94796c257e4c59a33be7cf1dcba32009c2a1", + "sha1": "e07b58008aeae90d61c5324c740cbbd66bbb34e3" }, "required_dependencies": [], - "size": 163268, - "date_published": "2025-07-17T12:43:32.154191Z" + "size": 190422, + "date_published": "2025-08-29T08:29:49.302535Z" }, { "type": "curseforge", - "file_name": "packetfixer-3.1.4-1.18-1.20.4-merged.jar", + "file_name": "packetfixer-3.3.0-1.18-1.20.4-merged.jar", "mc_versions": [ "1.20.2", "1.20.3", @@ -9813,16 +10206,16 @@ "quilt" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6778/805/packetfixer-3.1.4-1.18-1.20.4-merged.jar", - "id": "6778805", + "url": "https://edge.forgecdn.net/files/6940/439/packetfixer-3.3.0-1.18-1.20.4-merged.jar", + "id": "6940439", "parent_id": "689467", "hashes": { - "sha1": "1cdf5d8b637922b12bc72c575ce1428f1f2cae2a", - "md5": "667fc2a50867e1bf3dbc2b6e17ff2271" + "sha1": "e07b58008aeae90d61c5324c740cbbd66bbb34e3", + "md5": "75045a749fde88dc20972e34bb815f29" }, "required_dependencies": [], - "size": 163268, - "date_published": "2025-07-17T12:44:31.040Z" + "size": 190422, + "date_published": "2025-08-29T08:31:50.963Z" } ] }, @@ -10481,6 +10874,7 @@ "bf2svog06ajj5JHE" ], "type": "MOD", + "side": "CLIENT", "slug": { "curseforge": "probejs" }, @@ -10944,6 +11338,77 @@ } ] }, + { + "pakku_id": "zOlM6hm7KZ1BAq5R", + "pakku_links": [ + "64uacGcEw697jVGs" + ], + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "sacks-n-such", + "modrinth": "sacks-n-such" + }, + "name": { + "curseforge": "Sacks 'N Such", + "modrinth": "Sacks 'N Such" + }, + "id": { + "curseforge": "695822", + "modrinth": "PhnM3Lkv" + }, + "files": [ + { + "type": "modrinth", + "file_name": "Sacks 'N Such-1.20.1-1.2.4.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/PhnM3Lkv/versions/PA25BnBO/Sacks 'N Such-1.20.1-1.2.4.jar", + "id": "PA25BnBO", + "parent_id": "PhnM3Lkv", + "hashes": { + "sha512": "c6ca411476f100cee117889e6fa8945d5f6848669f53f87b8bcbcd0ed5697bc795ee6e22202464e1a2687b85adf15396b65899ab4b58d7a73cc196108105e7cc", + "sha1": "9819909ff38f14408e313998d225e986333d52b7" + }, + "required_dependencies": [ + "JaCEZUhg", + "UHJfcchT" + ], + "size": 1239847, + "date_published": "2025-09-05T08:32:48.466815Z" + }, + { + "type": "curseforge", + "file_name": "Sacks 'N Such-1.20.1-1.2.4.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6965/231/Sacks 'N Such-1.20.1-1.2.4.jar", + "id": "6965231", + "parent_id": "695822", + "hashes": { + "sha1": "9819909ff38f14408e313998d225e986333d52b7", + "md5": "80004a900325176c2ff9427198dedb42" + }, + "required_dependencies": [ + "302973" + ], + "size": 1239847, + "date_published": "2025-09-05T08:32:46.673Z" + } + ] + }, { "pakku_id": "87oulFfvlQlJm2Pt", "type": "MOD", @@ -11261,6 +11726,216 @@ } ] }, + { + "pakku_id": "pQiulj1ubTpJDbGB", + "pakku_links": [ + "PDnn8hOodQ10vlXc", + "mvg3RbUFDvBr0S4R" + ], + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "sodium-extras", + "curseforge": "magnesium-extras" + }, + "name": { + "modrinth": "Sodium Extras", + "curseforge": "Sodium/Embeddium Extras" + }, + "id": { + "modrinth": "vqqx0QiE", + "curseforge": "558905" + }, + "files": [ + { + "type": "modrinth", + "file_name": "sodiumextras-forge-1.0.7-1.20.1.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/vqqx0QiE/versions/VNFB2Vgv/sodiumextras-forge-1.0.7-1.20.1.jar", + "id": "VNFB2Vgv", + "parent_id": "vqqx0QiE", + "hashes": { + "sha512": "47f298943079eb6b8f5222cbb093fec0c29c86a6f68e8000545059d64ff5c4cbf76fa774565a0d4d89d1fb0a278b62292f7619fb818e4fdfd9f01a637e7fcbfb", + "sha1": "7603f44bc4750774fbbdc07a3153c391650fcf3d" + }, + "required_dependencies": [ + "sk9rgfiA", + "Es5v4eyq" + ], + "size": 438540, + "date_published": "2025-01-01T04:39:15.567585Z" + }, + { + "type": "curseforge", + "file_name": "sodiumextras-forge-1.0.7-1.20.1.jar", + "mc_versions": [ + "1.20.1", + "1.20" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6041/697/sodiumextras-forge-1.0.7-1.20.1.jar", + "id": "6041697", + "parent_id": "558905", + "hashes": { + "sha1": "7603f44bc4750774fbbdc07a3153c391650fcf3d", + "md5": "823adea3bcfd64dbdbaec46950cf4108" + }, + "required_dependencies": [ + "1103431", + "908741" + ], + "size": 438540, + "date_published": "2025-01-01T04:39:13.763Z" + } + ] + }, + { + "pakku_id": "DwWgXMg1kgevfWs4", + "pakku_links": [ + "mvg3RbUFDvBr0S4R" + ], + "type": "MOD", + "side": "CLIENT", + "slug": { + "curseforge": "dynamiclights-reforged", + "modrinth": "sodium-dynamic-lights" + }, + "name": { + "curseforge": "Sodium/Embeddium Dynamic Lights", + "modrinth": "Sodium Dynamic Lights" + }, + "id": { + "curseforge": "551736", + "modrinth": "PxQSWIcD" + }, + "files": [ + { + "type": "curseforge", + "file_name": "sodiumdynamiclights-forge-1.0.10-1.20.1.jar", + "mc_versions": [ + "1.20.1", + "1.20" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6044/481/sodiumdynamiclights-forge-1.0.10-1.20.1.jar", + "id": "6044481", + "parent_id": "551736", + "hashes": { + "sha1": "d27524e85bed0f0af83c03be46f9ca3eb02a1be9", + "md5": "687c18cefa558ca8101ef97914d9ba6b" + }, + "required_dependencies": [ + "1103431" + ], + "size": 511601, + "date_published": "2025-01-02T01:22:43.027Z" + }, + { + "type": "modrinth", + "file_name": "sodiumdynamiclights-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/PxQSWIcD/versions/I156ee3A/sodiumdynamiclights-forge-1.0.10-1.20.1.jar", + "id": "I156ee3A", + "parent_id": "PxQSWIcD", + "hashes": { + "sha512": "b8527199be5a8b4bc758a4f320586b5886e6ff657718f52d464386b1e3c695d7bfe644e2ef9487a869c93c0866818995ecd47b9e1a19054929242682e37f58b7", + "sha1": "d27524e85bed0f0af83c03be46f9ca3eb02a1be9" + }, + "required_dependencies": [ + "Es5v4eyq" + ], + "size": 511601, + "date_published": "2025-01-02T01:22:44.551718Z" + } + ] + }, + { + "pakku_id": "mvg3RbUFDvBr0S4R", + "type": "MOD", + "side": "CLIENT", + "slug": { + "curseforge": "sodium-options-api", + "modrinth": "sodium-options-api" + }, + "name": { + "curseforge": "Sodium/Embeddium Options API", + "modrinth": "Sodium Options API" + }, + "id": { + "curseforge": "1103431", + "modrinth": "Es5v4eyq" + }, + "files": [ + { + "type": "curseforge", + "file_name": "sodiumoptionsapi-forge-1.0.10-1.20.1.jar", + "mc_versions": [ + "1.20.1", + "1.20" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6100/812/sodiumoptionsapi-forge-1.0.10-1.20.1.jar", + "id": "6100812", + "parent_id": "1103431", + "hashes": { + "sha1": "7529fbf938787ed13a251cbf40936f8c29ec4b6c", + "md5": "75807590ae2648ecdeb855705868ce59" + }, + "required_dependencies": [ + "908741" + ], + "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": "mUY7a1f4DIhjgXtQ", "pakku_links": [ @@ -11394,6 +12069,43 @@ } ] }, + { + "pakku_id": "AZEF3WB6o1ORFoD1", + "type": "MOD", + "slug": { + "curseforge": "soulbinding" + }, + "name": { + "curseforge": "Soulbinding" + }, + "id": { + "curseforge": "925229" + }, + "redistributable": false, + "files": [ + { + "type": "curseforge", + "file_name": "SoulBinding1.20.1(Forge)vs1.0.2.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/4928/200/SoulBinding1.20.1(Forge)vs1.0.2.jar", + "id": "4928200", + "parent_id": "925229", + "hashes": { + "sha1": "b794e39c75a28753900dfe81d97137bc1d7b50d7", + "md5": "fa3f5d7f9a0e01037f39de4ca8fdec1f" + }, + "required_dependencies": [], + "size": 23878, + "date_published": "2023-12-05T04:59:29.643Z" + } + ] + }, { "pakku_id": "ztIkqvZk37z4FIED", "type": "MOD", @@ -11781,21 +12493,23 @@ ] }, { - "pakku_id": "4WwQ11qPky8VtFcw", + "pakku_id": "EmmEeCWccT896XlZ", "pakku_links": [ - "F6H99cZ4H6jZRpEK", - "fMkiGcRPRv1DdRC1", "64uacGcEw697jVGs" ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "tfc-better-blast-furnace" + "curseforge": "tfc-better-blast-furnace", + "modrinth": "tfc-better-blast-furnace" }, "name": { - "curseforge": "TFC Better Blast Furnace" + "curseforge": "TFC Better Blast Furnace", + "modrinth": "TFC Better Blast Furnace" }, "id": { - "curseforge": "1046432" + "curseforge": "1046432", + "modrinth": "tr715LZ4" }, "files": [ { @@ -11820,6 +12534,27 @@ ], "size": 21088, "date_published": "2024-06-23T02:44:03.777Z" + }, + { + "type": "modrinth", + "file_name": "TFCBetterBlastFurnace-1.20.1-1.0.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/tr715LZ4/versions/kXi8g4JA/TFCBetterBlastFurnace-1.20.1-1.0.0.jar", + "id": "kXi8g4JA", + "parent_id": "tr715LZ4", + "hashes": { + "sha512": "d4c9d5fab5bffd67c8a14acffd13e9defa6e6cfa4bdff44c1d8021dce660d814b2e7352f43361a8118349d24b753b74af7921c4d111d998495ffd1d5afa99bd8", + "sha1": "91dbfe3c3e7e7fc9ffb126d879c1507e8c2f8b82" + }, + "required_dependencies": [], + "size": 21088, + "date_published": "2025-08-17T17:27:17.212986Z" } ] }, @@ -11843,32 +12578,9 @@ "modrinth": "ZELi9Nbx" }, "files": [ - { - "type": "curseforge", - "file_name": "tfccanes-2.1.1.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6151/996/tfccanes-2.1.1.jar", - "id": "6151996", - "parent_id": "920202", - "hashes": { - "sha1": "cf123ce35609e87cc86c9440c45faade0af9a794", - "md5": "4f3444f71cf383bae0cfb82fdc81a4c2" - }, - "required_dependencies": [ - "302973" - ], - "size": 41732, - "date_published": "2025-02-02T23:12:33.890Z" - }, { "type": "modrinth", - "file_name": "tfccanes-2.1.0.jar", + "file_name": "tfccanes-2.1.2.jar", "mc_versions": [ "1.20.1" ], @@ -11876,18 +12588,39 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/ZELi9Nbx/versions/QohMlQrN/tfccanes-2.1.0.jar", - "id": "QohMlQrN", + "url": "https://cdn.modrinth.com/data/ZELi9Nbx/versions/VTGPKRxl/tfccanes-2.1.2.jar", + "id": "VTGPKRxl", "parent_id": "ZELi9Nbx", "hashes": { - "sha512": "cceec1399d5becbc8ae3c737fdef0b23629c111191e52e9fea1cacb7adbce295682ea756058083e7bec7df6cde56a683e26e527e69323dc98de0f9045dc4abff", - "sha1": "68fb4b838131beab8ac831ddb241bc96ca8aae90" + "sha512": "d4d8649b64452389e6ebdce4534f4f4c88d3bec038c38739817af28e525587d51b2916731b3bb5bc794787320ebdaaa2736aef52f87f2a755b12b2592fb82536", + "sha1": "0c362ed60edfe797f020cc253cade2c732551522" }, "required_dependencies": [ "JaCEZUhg" ], - "size": 41459, - "date_published": "2025-01-07T19:12:44.365040Z" + "size": 42647, + "date_published": "2025-08-26T19:45:32.726512Z" + }, + { + "type": "curseforge", + "file_name": "tfccanes-2.1.2.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6928/196/tfccanes-2.1.2.jar", + "id": "6928196", + "parent_id": "920202", + "hashes": { + "sha1": "0c362ed60edfe797f020cc253cade2c732551522", + "md5": "3cd70d77bf235b7b3312e3379aa965f3" + }, + "required_dependencies": [], + "size": 42647, + "date_published": "2025-08-25T20:55:34.207Z" } ] }, @@ -11958,29 +12691,6 @@ "modrinth": "2yZ8ZSeO" }, "files": [ - { - "type": "curseforge", - "file_name": "tfcgroomer-1.20.1-0.1.4.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6118/92/tfcgroomer-1.20.1-0.1.4.jar", - "id": "6118092", - "parent_id": "1003785", - "hashes": { - "sha1": "e1bb7e932f900cee6be0bf5faf3fc77111488865", - "md5": "e4f19ca0413c9716cb86a3b50ae27a36" - }, - "required_dependencies": [ - "302973" - ], - "size": 134178, - "date_published": "2025-01-23T23:02:18.440Z" - }, { "type": "modrinth", "file_name": "tfcgroomer-1.20.1-0.1.4.jar", @@ -12001,6 +12711,29 @@ "required_dependencies": [], "size": 134178, "date_published": "2025-07-27T17:29:15.479048Z" + }, + { + "type": "curseforge", + "file_name": "tfcgroomer-1.20.1-0.2.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6949/778/tfcgroomer-1.20.1-0.2.1.jar", + "id": "6949778", + "parent_id": "1003785", + "hashes": { + "sha1": "bb1ffe05adaa515f2fb473e339643140beada636", + "md5": "76f89e4453b9f08ad4006e253941f13b" + }, + "required_dependencies": [ + "302973" + ], + "size": 152681, + "date_published": "2025-08-31T20:19:12.327Z" } ] }, @@ -12762,33 +13495,9 @@ "modrinth": "yp9Ot3YC" }, "files": [ - { - "type": "curseforge", - "file_name": "tfcgenviewer-1.20.1-1.4.1.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "neoforge", - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/5994/665/tfcgenviewer-1.20.1-1.4.1.jar", - "id": "5994665", - "parent_id": "1062270", - "hashes": { - "sha1": "9ed2b9125f46c79043912d695f710b9bdb0f68a9", - "md5": "c70f5f54411d6879b318bc1420189694" - }, - "required_dependencies": [ - "302973" - ], - "size": 257671, - "date_published": "2024-12-15T22:53:39.760Z" - }, { "type": "modrinth", - "file_name": "tfcgenviewer-1.20.1-1.4.1.jar", + "file_name": "tfcgenviewer-1.20.1-1.5.0.jar", "mc_versions": [ "1.20.1" ], @@ -12797,18 +13506,42 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/yp9Ot3YC/versions/nLcjWGDP/tfcgenviewer-1.20.1-1.4.1.jar", - "id": "nLcjWGDP", + "url": "https://cdn.modrinth.com/data/yp9Ot3YC/versions/w66Isrp3/tfcgenviewer-1.20.1-1.5.0.jar", + "id": "w66Isrp3", "parent_id": "yp9Ot3YC", "hashes": { - "sha512": "f9c1bb568329833b369cf2c2b0a3bafb7a75787919b4a736d997e7a51793115f7e4f24002bf59ee51957d7fe483733727bee904b0f09d3ae403f94e6dc0faa06", - "sha1": "9ed2b9125f46c79043912d695f710b9bdb0f68a9" + "sha512": "c362c018d8286ebd5f6d4361eabf1f68e28cb43c276c0b6ac23f2603761ef23b871aa28788933445fb9d0832ae08c4996021253f4080f3696456242a41062010", + "sha1": "ae64e451854e2cebd7f4d940f6d3da9cafbe74a4" }, "required_dependencies": [ "JaCEZUhg" ], - "size": 257671, - "date_published": "2024-12-15T22:52:40.048230Z" + "size": 367104, + "date_published": "2025-08-25T19:49:29.897909Z" + }, + { + "type": "curseforge", + "file_name": "tfcgenviewer-1.20.1-1.5.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6927/950/tfcgenviewer-1.20.1-1.5.0.jar", + "id": "6927950", + "parent_id": "1062270", + "hashes": { + "sha1": "ae64e451854e2cebd7f4d940f6d3da9cafbe74a4", + "md5": "bcf6f0cf075ed0b9ce6b72331d16be49" + }, + "required_dependencies": [ + "302973" + ], + "size": 367104, + "date_published": "2025-08-25T19:48:26.213Z" } ] }, @@ -13014,7 +13747,7 @@ "files": [ { "type": "modrinth", - "file_name": "TerraFirmaGreg-Core-Modern-0.7.12.jar", + "file_name": "TerraFirmaGreg-Core-Modern-0.7.13.jar", "mc_versions": [ "1.20.1" ], @@ -13023,23 +13756,23 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/lNttW2Xl/versions/Dd2UXNbV/TerraFirmaGreg-Core-Modern-0.7.12.jar", - "id": "Dd2UXNbV", + "url": "https://cdn.modrinth.com/data/lNttW2Xl/versions/YdOk8Iq3/TerraFirmaGreg-Core-Modern-0.7.13.jar", + "id": "YdOk8Iq3", "parent_id": "lNttW2Xl", "hashes": { - "sha512": "225f221bfe05db8bf12db88423c1978f5c288ea6377f000827b9d8d49c86181dc2c50f31e7cb008d81a8ebff57f2b77d027a90eed9725df8586ee9a6d610164e", - "sha1": "6b2684bf4af912e4951ec5790725798c90b512ef" + "sha512": "b7c574c483ad516c98cf1b51dbf3b09c42cb5f8138b5806e021f6f4ca8d3f9521b95121019db7e297cf3b4220c9619456962f21da45b395f0539a69c35e3e20e", + "sha1": "037ed97a39edda4c353ed0a7fd7bb638d0452e41" }, "required_dependencies": [ - "JaCEZUhg", - "7tG215v7" + "7tG215v7", + "JaCEZUhg" ], - "size": 584411, - "date_published": "2025-08-24T07:00:10.368612Z" + "size": 628670, + "date_published": "2025-09-08T15:21:22.717738Z" }, { "type": "curseforge", - "file_name": "TerraFirmaGreg-Core-Modern-0.7.12.jar", + "file_name": "TerraFirmaGreg-Core-Modern-0.7.13.jar", "mc_versions": [ "1.20.1" ], @@ -13048,19 +13781,79 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6921/637/TerraFirmaGreg-Core-Modern-0.7.12.jar", - "id": "6921637", + "url": "https://edge.forgecdn.net/files/6976/596/TerraFirmaGreg-Core-Modern-0.7.13.jar", + "id": "6976596", "parent_id": "513402", "hashes": { - "sha1": "6b2684bf4af912e4951ec5790725798c90b512ef", - "md5": "364dc88bee9a429c47f1e59dffd1da2a" + "sha1": "037ed97a39edda4c353ed0a7fd7bb638d0452e41", + "md5": "24b2e00abe4a9973ed536d4652b67491" }, "required_dependencies": [ "302973", "890405" ], - "size": 584411, - "date_published": "2025-08-24T07:00:04.203Z" + "size": 628670, + "date_published": "2025-09-08T15:21:19.573Z" + } + ] + }, + { + "pakku_id": "xCpLjCguyfdGP47K", + "type": "SHADER", + "side": "CLIENT", + "slug": { + "curseforge": "terrafirmagreg-shaders", + "modrinth": "terrafirmagreg-shaders" + }, + "name": { + "curseforge": "TerraFirmaGreg-Shaders", + "modrinth": "TerraFirmaGreg-Shaders" + }, + "id": { + "curseforge": "954161", + "modrinth": "cFPyBbB1" + }, + "files": [ + { + "type": "curseforge", + "file_name": "TerraFirmaGreg-Shaders-Unbound-2.0.2.zip", + "mc_versions": [ + "1.20.1" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6948/251/TerraFirmaGreg-Shaders-Unbound-2.0.2.zip", + "id": "6948251", + "parent_id": "954161", + "hashes": { + "sha1": "c77aa3d7588e64b0a626ea6b2b7d70224600cad0", + "md5": "11bc299174123ba7844ee2057e7a214f" + }, + "required_dependencies": [], + "size": 615310, + "date_published": "2025-08-31T12:26:49.263Z" + }, + { + "type": "modrinth", + "file_name": "TerraFirmaGreg-Shaders-Unbound-2.0.2.zip", + "mc_versions": [ + "1.12.2", + "1.20.1" + ], + "loaders": [ + "iris", + "optifine" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/cFPyBbB1/versions/yKyfsBc1/TerraFirmaGreg-Shaders-Unbound-2.0.2.zip", + "id": "yKyfsBc1", + "parent_id": "cFPyBbB1", + "hashes": { + "sha512": "288154963ef8f1eb3e55c4db38e4d108da45c267087727821b2729d14f81cca2b3a84f715426bc2d28784b594fd942f113167945c9f6504149104775dcc17840", + "sha1": "c77aa3d7588e64b0a626ea6b2b7d70224600cad0" + }, + "required_dependencies": [], + "size": 615310, + "date_published": "2025-08-31T12:26:51.309920Z" } ] }, @@ -13563,46 +14356,6 @@ } ] }, - { - "pakku_id": "V5l5vox7aWdt6HSJ", - "type": "MOD", - "side": "CLIENT", - "slug": { - "curseforge": "xenon", - "modrinth": "xenon" - }, - "name": { - "curseforge": "Xenon", - "modrinth": "Xenon" - }, - "id": { - "curseforge": "564239", - "modrinth": "BsmAXLQn" - }, - "files": [ - { - "type": "curseforge", - "file_name": "xenon-0.3.31+mc1.20.1.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/5752/40/xenon-0.3.31+mc1.20.1.jar", - "id": "5752040", - "parent_id": "564239", - "hashes": { - "sha1": "93e7c3938f88dbd24591412033572f42f90d3cb4", - "md5": "41ca035046ec01bd29a879be036a4560" - }, - "required_dependencies": [], - "size": 2093415, - "date_published": "2024-09-24T12:55:08.173Z" - } - ] - }, { "pakku_id": "dHJr8CybJVqGuwXG", "type": "MOD", diff --git a/pakku.json b/pakku.json index 4225bd1c4..ced168130 100644 --- a/pakku.json +++ b/pakku.json @@ -12,6 +12,7 @@ "!kubejs/probe/**" ], "server_overrides": [ + "!kubejs/assets", "forge-auto-install.txt", "generate_auto_installation_file.bat", "minecraft_server.jar", @@ -19,8 +20,7 @@ "server_starter.conf", "server-icon.png", "start_server.bat", - "README.md", - "!kubejs/assets/**" + "README.md" ], "client_overrides": [ "resourcepacks" @@ -158,9 +158,6 @@ "first-person-model": { "side": "CLIENT" }, - "ftb-backups-2": { - "side": "BOTH" - }, "no-report-button": { "side": "CLIENT" }, @@ -243,7 +240,7 @@ "side": "BOTH" }, "pick-up-notifier": { - "side": "BOTH" + "side": "CLIENT" }, "inventory-tweaks-refoxed": { "side": "BOTH" @@ -254,7 +251,36 @@ "detected-setblock-be-gone": { "side": "BOTH" }, + "ftb-backups-2": { + "side": "BOTH", + "export": false + }, + "ftb-chunks-forge": { + "export": false + }, + "ftb-essentials": { + "export": false + }, + "ftb-filter-system": { + "export": false + }, + "ftb-library-forge": { + "export": false + }, + "ftb-quests-forge": { + "export": false + }, + "ftb-ranks-forge": { + "export": false + }, + "ftb-teams-forge": { + "export": false + }, + "ftb-xmod-compat": { + "export": false + }, "probejs": { + "side": "CLIENT", "export": false } }